@charset "UTF-8";

/*全体にかかわる部分*/

html{
    font-size: 16px;
}

body{
    margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    line-height: 1.5;
    color: #333;
}

li a{
    display: block;
}

a{
    color: #9e3e28;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
    
}


li{
    list-style: none;
}

*{
    box-sizing: border-box;
}

h1,h2,h3,h4,h5{
    font-weight: normal;
}

/*幅の設定*/
.info,
.header-inner,
.wrap,
.footer-inner{
    max-width: 966px;
    margin: 0 auto;
}

@media screen and (max-width:768px){
.info,
.header-inner,
.wrap,
.footer-inner{
    width: 100%;
}
    
body{
    font-size: 0.8rem;
}
}
/*メイン部分の背景色を黄色に設定*/
.wrap{
  background: #ffcd1f;  
}

/*margin,paddingを入れてみる*/
.wrap{
    padding: 40px 40px 0;
}

.sidebar-inner{
    padding-right: 40px;
}

@media screen and (max-width:768px){
    .sidebar-inner{
    padding-right: 0;
    }

    .wrap{
    padding: 40px 4px 0px;
}

}

/*navとmainの並び*/
.wrap{
    display: flex;
    flex-wrap: wrap;
}

aside{
    flex: 0 0 30%;;
}

main{
    flex: 0 0 70%;;
}

main.all{
    flex: 0 0 100%;;
}

@media screen and (max-width:768px){
aside{
    flex: 0 0 100%;
}

main{
    flex: 0 0 100%;
    }

.sidebar-category,
.sidebar-popular,
.info{
    display: none;
     }
}

/*formの見た目を変えてる部分*/
select,
input[type="text"],
input[type="password"],
input[type="search"]{
    width: 100%;
    padding: 0 10px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    margin-bottom: 5px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: #cecac8;
}

textarea{
    outline: none;
    font-size: 16px;
    padding: 10px;
}

select:focus,
textarea:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="search"]:focus,
select:active,
textarea:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="tel"]:active,
input[type="email"]:active,
input[type="text"]:active,
input[type="search"]:active{
    background: #fff;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}

/*submitボタンを変える部分*/
input[type="submit"]{
    display: block;
    margin: 10px auto;
    padding: 10px;
    border: none;
    background: #555;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.5s;
    color: #fff;
}

input[type="submit"]:hover{
    background: #aaa;
}

/*buttonボタンを変える部分*/
input[type="button"]{
    display: block;
    margin: 10px auto;
    padding: 10px;
    border: none;
    background: #555;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.5s;
    color: #fff;
}

input[type="button"]:hover{
    background: #aaa;
}

/*旗とコンテナの調整*/
.container{
    background: #fff;
    padding: 40px 30px 20px;
    position: relative;
    margin-bottom: 40px;
}

.orange{
    position: absolute;
    top: -20px;
    left: -8px;
    display: inline-block;
    line-height: 47px;
    height: 47px;
    padding-left: 20px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.4);
    background: #e94718;
}

.orange::after{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../img/orange.png);
    width: 52px;
    height: 47px;
}


.orange::before{
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: url(../img/orange-s.png) no-repeat;
    background-size: cover;
    bottom: -8px;
    left: 0px;
}

.blue{
    position: absolute;
    top: -20px;
    left: -8px;
    display: inline-block;
    line-height: 47px;
    height: 47px;
    padding-left: 20px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.4);
    background: #174980;
}

.blue::after{
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../img/blue.png);
    width: 52px;
    height: 47px;
}

.blue::before{
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: url(../img/blue-s.png) no-repeat;
    background-size: cover;
    bottom: -8px;
    left: 0px;
}

@media screen and (max-width:768px){
    .orange,
    .blue{
        top:-20px;
        left: -4px;
    }

.orange::before,
.blue::before{
    width: 4px;
    height: 4px;
    bottom: -4px;
    left: 0px;
}
}
/*itemboxの基本*/
.item a{
    font-size: 0.8rem;
}

.item ul{
    display: flex;
    flex-wrap: wrap;
}

.item li{
    display: block;
    flex: 0 0 31%;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 10px;
    border: 3px solid #9e3e28;
    border-radius: 6px;
    width: 100%;
    padding-bottom: 0;
}

.item li a{
    height: 100%;
}

.item-container{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.item li a:hover{
    background: #ffd;
    border-color: transparent;
}

.item-container img{
    width: 100%;
    filter: grayscale(0.4);
    transition: all 0.3s;
}

.price,
.member-price{
    font-size: 1rem;
    text-align: right;
}

.member-price{
    color: #f00;
}

.marketing{
    text-align: right;
}

a:hover .item-container img{
    filter: grayscale(0);
}

.item-img{
    flex: 0 0 100%;
    width: 100%;
}

.item-text{
    flex: 0 0 100%;
    padding-left: 10px;
}

.all.item li{
    flex: 0 0 23%;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 10px;
}

.item-text h3{
    margin-bottom: 20px;
}


@media screen and (max-width:768px){
    .item li{
    display: block;
    flex: 0 0 48%;
}


    
all.item li{
    padding: 20px;
    background: #222;
}

    .all.item .item-text{
        position: inherit;
        background: transparent;
        color: #333;
        line-height: 1.5;      
    }

.all.item li{
    flex: 0 0 46%;
    margin: 10px 2%;
}
}


/*header*/
header{
    padding-top:40px;
    background-color: #ffcd1f;
    background-image: url(../img/roof.png);
    background-position: left top;
    background-repeat: repeat-x;
}

/*logo*/
.logo{
    padding : 80px 0 20px;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo img{
    width: 100%;
}

/*グローバルナビ*/
nav,
.footer-nav{
    line-height: 60px;
    background: #fff;
}

.icon{
    height: 30px;
    display: inline-block;
}

.icon img{
    height: 100%;
}

nav a,
.footer-nav a{
    color: #9e3e28;
}

.nav-inner{
    margin: 0 auto;
    padding: 0 40px;
}

.nav-inner ul{
    display: flex;
    justify-content: space-between;
}

nav li{
    display: block;
    text-align: center;
}

nav span,
.footer-nav span{
    margin-left: 0.5rem;
}

@media screen and (max-width:768px){
    nav span,
    .footer-nav span{
        display: none;
        margin-left: 0;
    }
}

/*footer*/
footer{
    background: #ffcd1f;
    padding-top: 130px;
    padding-bottom: 30px;
    text-align: center;
}

.info{
    background: #ffcd1f;
    padding: 0 40px 40px;
}

.info-inner{
    background: #fff;
}

.info p,
.info li{
    font-size: 0.9em;
} 

/*sidebar*/
.sidebar-category li{
    margin-bottom: 10px;
}

.sidebar-category li a{
    line-height: 24px;
}

.paw{
    display: inline-block;
    height: 24px;
    margin-right: 16px;
}

.paw img{
    height: 100%;
}

.login,
.search{
    position: relative;
}

.login input[type="submit"],
.search input[type="submit"]{
    position: absolute;
}

.login input[type="submit"]{
    background-color: transparent;
    background-image: url(../img/login-icon.png);
    background-size: cover;
    width: 38px;
    height: 38px;
    bottom: 15px;
    right: 30px;
}

.search input[type="submit"]{
    background-color: transparent;
    background-image: url(../img/search-icon.png);
    background-size: contain;
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 26px;  
}

@media screen and (max-width:768px){
    .login input[type="submit"]{
        width: 24px;
        height: 24px;
        bottom: -3px;
        right: 8px;
    }
    
    .search input[type="submit"]{
        width: 24px;
        height: 24px;
        bottom: -5px;
        right: 5px;
    }
}


/*縮んだ時及び1カラムのページでのlogin,searchの並び*/
.column .sidebar{
    flex: 0 0 100%;
}

.column .sidebar-inner{
        display: flex;
        justify-content: space-around;
    }

.column .sidebar-category{
    display: none;
}


@media screen and (max-width:768px){
    .sidebar-inner{
        display: flex;
        justify-content: space-around;
    }
    
    .login{
        padding: 40px 5px 0;
        flex: 0 0 45%;
    } 
    
    .login input[type="text"],
    .login input[type="password"]{
        max-width: 350px;
        font-size: 0.9em;
        line-height: 30px;
        height: 30px;
    }
    
    .search{
        flex: 0 0 45%;
        padding: 40px 5px 0;
    }
    .search input[type="search"],
    .search select{
        max-width: 350px;
        font-size: 0.9em;
        line-height: 30px;
        height: 30px;
    }
}

/*main top 新着情報*/
.new li a{
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/*サイドバーから外れた　indexに入る*/
.popular{
    flex: 0 0 auto;
    background: #fff;
    width: 100%;
}

/*商品ページ関連*/
/*商品説明とかの並び*/
.detail-container{
    display: flex;
}

.detail-img{
    flex: 0 0 45%;
}

.detail-img img{
    width: 100%;
}

.detail-text{
    flex: 0 0 50%;
    margin-left: 5%;
    border: 4px solid #9e3e28;
    border-radius: 6px;
    padding: 10px;
}

.detail-text h1{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.detail-no{
    font-size: 0.9rem;
    margin-bottom: 10px;
}



.detail-price,
.detail-member-price,
.detail-form{
    text-align: right;
}

.detail-price{
    margin-top: 20px;
    font-size: 1.5rem;
}

.detail-member-price{
    color: #f00;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.detail-form input[type="number"]{
    width:  4rem;
    border-radius: 6px;
    border: #333 2px solid;
    background: #fff;
    line-height: 40px;
    padding: 2px;
}

.detail-form input[type="submit"]{
    display: inline-block;
    text-align: right;
    border: #fc4503 2px solid;
    color: #fc4503;
    background: #fff url(../img/shopping-cart.png) no-repeat 5px 3px;
    background-size: 34px 34px;
    border-radius: 6px;
    padding-left: 42px;
}

.item-yes{
    display: inline-block;
    padding: 0 10px;
    line-height: 40px;
    color: #fff;
    background: #fc4503;
    border-radius: 6px;
    font-size: 0.8rem;
}



/*会社概要のスタイル*/
.line {
    padding-bottom: 0.1em;
    background-color: #fff;
    background-image: linear-gradient(to right, #fff 1.1px, transparent 1px), linear-gradient(to bottom, #888 1.1px, transparent 1px);
    background-size: 2px 2.2em;
    line-height: 2.2;
}

.plofile-top{
    display: flex;
    flex-wrap: wrap;
}

.plofile-img{
    flex: 0 0 30%;
    max-width: 200px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.plofile-text{
    flex: 0 0 70%;
}

.plofile-img img{
    max-width: 100%;
}

.plofile-detail th{
    font-weight: normal;
    background: #e6e6e6;
    border-right: #999 solid 2px;
    vertical-align: top;
    width: 12em;
}

.plofile-detail table{
    border-collapse: collapse;
    margin-top: 70px;
}

.plofile-detail tr{
    border-top: #999 solid 2px;
    line-height: 60px;
}

.plofile-detail tr:last-child{
    border-bottom: #999 solid 2px;
}

.plofile-detail td{
    padding-left: 20px;
}
.plofile-none{
        display: none;
    }

.map img{
    width: 100%;
}

@media screen and (max-width:768px){

    .plofile-text{
    flex: 0 0 100%;
}

    .plofile-img{
    flex: 0 0 100%;
    margin-bottom: 20px;
    padding-right: 20px;
    text-align: center;
}
    .plofile-detail tr{
    border-top: #999 solid 2px;
    line-height: 1.5rem;
    font-size: 0.7rem;
}
    .plofile-detail td{
    padding-left: 10px;
}
    .plofile-none{
        display: inline;
    }
    
}

/*QandA*/
.qanda h2{
    color: #a6a6a6;
    margin: 40px 0;
    padding-left: 50px;
    position: relative;
}

.qanda h2::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/grey-arrow.png) no-repeat transparent;
    background-size: 40px 40px;
    position: absolute;
    top: -10px;
    left: 0;
}

.qanda dd,
.qanda dt{
    margin: 20px 0;
    padding-left: 50px;
    position: relative;
}

.qa{
    margin: 40px 0;
}

.qanda dt::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/q.png) no-repeat transparent;
    background-size: 40px 40px;
    position: absolute;
    top: -10px;
    left: 0;
}

.qanda dd::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/a.png) no-repeat transparent;
    background-size: 40px 40px;
    position: absolute;
    top: -10px;
    left: 0;
}


.kojin{
    font-size: 0.8rem;
}

.kojin ul li{
    list-style: square;
}

/*regist見た目*/
.regist-wrap input,
.regist-wrap select{
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    width: 100%;
    outline: none;
    text-align: left;
}

.regist-wrap{
    border-top: dotted 5px #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.regist-wrap .zen{
    margin: 15px 0;
    flex: 0 0 100%;
    background: #ccc;
    padding: 20px;
    border-radius: 6px;
}

.regist-wrap .han{
    margin: 15px 0;
    flex: 0 0 48%;
    margin-right: 4%;
    background: #ccc;
    padding: 20px;
    border-radius: 6px;
}

.regist-wrap .han:nth-child(2n){
    margin-right: 0;
}

.regist-wrap .han span,
.regist-wrap .zen span{
    font-size: 0.7rem;
}

.regist-wrap input[type="submit"]{
    background: url(../img/regist.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

input[type="submit"].regist{
    background: url(../img/regist.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

input[type="submit"].change{
    background: url(../img/change.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

.regist-wrap input[type="radio"]{
    display: inline-block;
    width: auto;
}

.zen.rem{
    margin-bottom: 50px;
}

@media screen and (max-width:500px){
    .regist-wrap .han{
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
}

/*カート周辺のデザイン*/
/*テーブルを角丸にするためのcss*/
.cart-table table {
  border: 1px solid #b8b5b5;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
}
/*ここまで ただし、IE11でもフォローされていないらしい*/

input[type="submit"].dl,
.dl{
    margin: auto;
    display: block;
    font-size: 1rem;
    padding: 0;
    width: 3rem;
    text-align: center;
    background: #fff;
    border: #888 solid 1px;
    border-radius: 0;
    line-height: 1.8rem;
    color: #333;
}

.cart-table td,
.cart-table th{
    border-left: #fff solid 1px;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

.cart-table td{
    padding: 10px;
}

.cart-table td:first-child,
.cart-table th:first-child{
    border-left: none;
}


.cart-table th{
    background: #b8b5b5;
    color: #fff;
}

.h50{
    height: 50px;
}

.cart-table input[type="number"]{
    width: 50px;
    background: #fff;
    border-radius: 0px;
    border: #b8b5b5 1px solid;
    height: 30px;
}

.cart-name{
    width: 320px;
}

.cart-price{
    width: 150px;
}

.cart-item-img{
    width: 80px;
}

.cart-item-img img{
    width: 100%;
}

.w80{
    width: 80px;
}

.tax{
    font-size: 0.8rem;
}

.sum{
    width: 240px;
}

.sum th{
    width: 100px;
}

.tax2{
    font-size: 0.6rem;
    color: #999;
}

.cart-table.s{
    margin-top: 30px;
}


.cart-top .plofile-img{
    height: 100px;
    float: left;
}

.cart-top .plofile-img img{
    height: 100%;
}

.cart-top p{
    line-height: 80px;
}

@media screen and (max-width:768px){
    .cart-top p{
    line-height: 40px;
    }
}

.cart-top{
    margin-bottom: 50px;
}

input[type="submit"].cart-submit{
    background: url(../img/order.png) no-repeat;
    background-size: cover;
    width: 153px;
    height: 65px;
}

input[type="button"].back-to-shop{
    background: url(../img/back-to-shop.png) no-repeat;
    background-size: cover;
    width: 153px;
    height: 65px;
}


.button-wrap{
    display: flex;
    justify-content: center;
}

.cart-info{
    font-size: 0.8rem;
    color: #888;
}

/*cart 配送先の入力ページ以降*/
.move-container{
    display: flex;
    justify-content: center;
}

.move{
    flex: 0 0 150px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 80px;
}
.circle{
    line-height: 95px;
    width: 95px;
    border-radius: 50%;
    background: #a6a6a6;
    font-size: 26px;
    color: #fff;
    text-align: center;
    margin: 20px auto;
    position: relative;
}

.circle::after{
    position: absolute;
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 40px;
    top: 0;
    right: -35px;
    color: #a6a6a6;
}

.circle.stay::after{
    color: #fc4503;
}

.circle.last::after{
    display: none;
}

.circle.stay{
    background: #fc4503;
}

.zen.radio{
    background: #fff;
}

.radio1{
    color: #fc4503;
    border: #fc4503 2px solid;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 30px;
}

.radio2{
    color: #0c4d8f;
    border: #0c4d8f 2px solid;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 0px;
}

.zen dl{
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    border: 1px solid #a6a6a6
}

.zen dl dt{
    float: left;
}

.zen dl dd{
    padding-left: 5em;
    margin-bottom: 20px;
}

.zen dl dd::before{
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #b3b3b3;
    margin-right: 1em;
}

.zen dl dd:last-child{
    margin-bottom: 0;
}

.regist-wrap input[type="submit"].cart3,
.regist-wrap input[type="submit"].cart2{
    background: url(../img/forward.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

.cart3,
.cart4{
    border-top: dotted 5px #ccc;
    padding-top: 20px;
}

.cart3 h2{
    font-size: 1.2rem;
    color: #fc4503;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart3 h2 span{
    display: inline-block;
    color: #fff;
    background: #fc4503;
    border-radius: 50%;
    width: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.cart3 ul{
    margin: 10px 0 20px;
}

.cart3 li{
    list-style: disc inside;
}

.cart3 .radio1{
    color: #fc4503;
    border: #fc4503 2px solid;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 18px;
    margin-bottom: 30px;
}

.card-img{
    display: flex;
    margin: 20px 0;
}

.card-img div{
    margin-right: 10px;
}

.cart3 input[type="number"]{
    width: 115px;
    background: #fff;
    border-radius: 4px;
    border: #b3b3b3 1px solid;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.cart3 input[type="number"].sec,
.cart3 select,
.cart3 input[type="text"]{
    width: 250px;
    background: #fff;
    border-radius: 4px;
    border: #b3b3b3 1px solid;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.cart3 input[type="number"].sec{
    margin-bottom: 50px;
}

.cart3 h3{
    font-size: 1.1rem;
    font-weight: bold;
}

.cart4 .table{
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    border: 1px solid #a6a6a6;
    margin-bottom: 80px;
}

.regist-wrap input[type="submit"].cart4{
    background: url(../img/cart4.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

.cart4 .zen{
    margin-bottom: 50px;
}

.regist-h2,
.cart4 h2{
    display: inline-block;
    background: #0c4d8f;
    color: #fff;
    line-height: 40px;
    padding: 0 1em;
    margin-left: 20px;
    margin-top: 40px;
    border-radius: 6px 6px 0 0;
}

.regist-h2{
    margin-top: 0;
}

.cart4 .name{
    margin: 20px 0;
}

.cart5{
    margin: 70px;
}



.cart5 .img-container{
    width: 120px;
    margin-left: 50px;
}

.cart5 .img-container img{
    width: 100%;
}

.balloon {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding: 40px;
  min-width: 120px;
  max-width: 100%;
  background: #FFF;
  border: solid 3px #9e3e28;
  box-sizing: border-box;
  border-radius: 30px;
}

.balloon::before{
  content: "";
  position: absolute;
  bottom: -24px;
  left: 120px;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon::after{
  content: "";
  position: absolute;
  bottom: -30px;
  left: 120px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #9e3e28;
  z-index: 1;
}

.cart5 h2{
    font-size: 1.2rem;
    color: #fc4503;
    font-weight: bold;
    margin-bottom: 20px;
}


@media screen and (max-width:768px){
.move{
    flex: 0 0 100px;
}

.circle{
    line-height: 70px;
    width: 70px;
}

.circle::after{
    top: 0;
    right: -25px;
}
    
.cart5{
    margin: 10px;
}
    
.balloon {
  padding: 20px;
}
}


.zen.rem dl dd{
    padding-left: 8em;
}

.kaiin{
    margin: 20px 50px 10px;
    border: 1px #a6a6a6 solid;
    padding: 20px;
    font-size: 0.9rem;
    height: 300px;
    overflow: auto;
}

.kaiincheck{
    margin-left: 50px;
    margin-right: 1em;
}

.kaiinh2{
    text-align: center;
    margin-top: 30px;
}

/*inquiry*/
.inquiry{
    font-size: 0.8rem;
}

.inquiry p{
    line-height: 1.6rem;
}


.inquiry h3{
    font-size: 1rem;
    font-weight: bold;
    margin: 20px 0;
}

.inquiry ul{
    margin-bottom: 20px;
}

.inquiry li{
    list-style: disc inside;
}

.inquiry li a{
    display: inline;
}

.inquiry-text{
    padding-left: 100px;
}

.inquiry textarea{
    border-radius: 10px;
    width: 100%;
}

input[type="submit"].inq-submit{
    background: url(../img/inq.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

input[type="submit"].inq2{
    background: url(../img/inq2.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

input[type="button"].inq2back{
    background: url(../img/inq2back.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
}

.line-height p{
    line-height: 30px;
    padding: 20px 0;
}

/*category*/
.main-inner{
    position: relative;
}

.cate1{
    position: absolute;
    height: 100px;
    width: 100px;
    background: url(../img/umaibou.png) no-repeat;
    background-size: auto 100px;
    background-position: top left;
    top: -60px;
    right: 0;
}

.cate2{
    position: absolute;
    height: 100px;
    width: 100px;
    background: url(../img/panda.png) no-repeat;
    background-size: auto 100px;
    background-position: top left;
    top: -60px;
    right: 0;
}

.cate3{
    position: absolute;
    height: 100px;
    width: 100px;
    background: url(../img/cabetaro.png) no-repeat;
    background-size: auto 100px;
    background-position: top left;
    top: -60px;
    right: 0;
}

.cate4{
    position: absolute;
    height: 100px;
    width: 100px;
    background: url(../img/felix.png) no-repeat;
    background-size: auto 100px;
    background-position: top left;
    top: -60px;
    right: 0;
}

.cate5{
    position: absolute;
    height: 100px;
    width: 100px;
    background: url(../img/yochan.png) no-repeat;
    background-size: auto 100px;
    background-position: top left;
    top: -60px;
    right: 0;
}

/*404page*/
.backhome{
    display: block;
    background: url(../img/back-to-home.png) no-repeat transparent;
    background-size: cover;
    width: 153px;
    height: 65px;
    border: none;
    margin: 40px auto 100px;
}

.c404{
    padding-top: 100px;
}

.c404 p{
    line-height: 40px;
}

.c404 div{
    margin: auto;
    text-align: center;
}

.img404{
    padding-top: 100px;
    width: 140px;
}

.img404 img{
    width: 100%;
}

/*rireki*/
.rireki{
    border-top: dotted 5px #ccc;
    margin:20px 0; 
    padding: 50px 0;
}

.rirekiid{
    font-size: 0.8rem;
}

/*login*/

.loginpage{
    margin: auto;
    width: 230px;
}

.loginpage h2{
    margin: 0;
    padding: 0;
}

.loginpage .balloon{
    display: block;
    width: 100%;
    padding: 20px;
}

h2.aoji{
    color: #0c4d8f;
}

/*cart3の手直し分*/
.a,.b,.c{
    display: none;
}

/*member*/
.member{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.member-t{
    flex: 0 0 20%;
    position: relative;
}

.member-han{
    flex: 0 0 40%;
    margin-bottom: 10px;
}

.member-zen{
    flex: 0 0 80%;
    margin-bottom: 10px;
}

.member input,
.member select{
    width: 165px;
    margin: 0;
    background: #fff;
    padding: 5px;
    border: 1px #888 solid;
    border-radius: 4px;
    text-align: left;
    line-height: 28px;
}

.member .member-zen input{
    width: 380px;
}

@media screen and (max-width: 500px){
    .member-t,
    .member-han,
    .member-zen{
    flex: 0 0 100%;
}
    .member .member-zen input{
    width: 70%;
}
    
}

.member input[type="submit"]{
    width: 3rem;
    background: #888;
    padding: 0 0.5rem;
    margin: 10px;
    display: inline-block;
}

.member-t p::before{
    position: absolute;
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    top: 0;
    right: 10px;
    color: #888;
}

@media screen and (max-width: 500px){
    .member-t p::after{
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-left: 1rem;
    color: #888;
}
    .member-t p::before{
    content: "";
}   
}

/*sharebutton*/
.share{
    width: 40px;
    display: inline-block;
    
}

.share img{
    width: 100%;
}