@charset "utf-8";

html{
    font-size: 14px;
}

body{
    background: rgba(255, 255, 208,0.5);
    background-size: 30px;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #333;
}

a{
    text-decoration: none;
    color: #333;
}
img{
    width: 100%;
}
input,button,select{
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    /*transition: all  0.2s ease;*/
}
input[type="submit"],input[type="button"]{
    -webkit-appearance: none;
    border-radius: 0;
}
ul li,ol li{
    list-style: none;
}

/*========== 基本構造 ==========*/
.wrap{
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
}
nav{
    flex: 1 1 30%;
}
.nav-inner{
    margin-right: 15px;
    margin-left: 20px
}
main{
    flex: 1 1 70%;
    line-height: 1.6;
}
.main-inner{
    margin-left: 15px;
    margin-right: 20px
}
@media(max-width: 768px){
    .wrap{
        flex-flow: column;
        margin: 0 10px;
    }
    nav{
        flex: 0 0 100%;
        order: 2;
    }
    main{
        flex: 0 0 100%;
        order: 1;
    }
    .header-nav{
        display: block;
    }
    .nav-bar{
        display: none;
    }
    .nav-inner{
        padding: 0;
        margin: 0 10px;
    }
    .main-inner{
        margin: 0 10px;
        padding: 0;
        margin-bottom: 40px;
    }
}

/*========== 共通項目 ==========*/
/* 進む、戻る、TOPボタン */
.btn-inner{
    text-align: center;
    margin-top: 20px;
}
.next-btn{
    padding: 10px;
    width: 120px;
    font-size: 15px;
    background: #F82038;
    color: #fff;
    border: 1px solid #F82038;
    margin-left: 5px;
}
.back-btn{
    padding: 10px;
    width: 120px;
    font-size: 15px;
    background: #aaa;
    color: #fff;
    border: 1px solid #aaa;
    margin-right: 5px;
}
.next-btn:hover{
    background: #fff;
    color: #F82038;
    border: 1px solid #F82038;
}
.back-btn:hover{
    background: #fff;
    color: #aaa;
    border: 1px solid #aaa;
}
.next-btn a,.back-btn a{
    color: #fff;
}
.next-btn:hover a{
    color: #F82038;
}
.back-btn:hover a{
    color: #aaa;
}
.top-btn{
    display: inline-block;
    background: #F82038;
    color: #fff;
    border: 1px solid #F82038;
    padding: 10px 20px;
}
.top-btn:hover{
    color: #F82038;
    background: #fff; 
}

@media(max-width: 500px){
    .btn-inner{
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        margin-bottom: 30px;
    }
    .next-btn{
        flex: 0 0 auto;
        order: 1;
        margin-left: 0;
        margin-bottom: 20px;
        width: 160px;
    }
    .back-btn{
        flex: 0 0 auto;
        order: 2;
        margin-right: 0;
        width: 160px;
    }
}
/*input[type="text"]周り*/
input,select,textarea{
    border: 1px solid #ccc;
    line-height: 1.6;
    flex: 1 1 80%;
}
input:hover,select:hover,textarea:hover{
    box-shadow: 0px 0px 3px #C7D527;
}
input[type="text"]{
    cursor: text;
    word-break: break-all;
}
/*検索ボタン*/
.search form{
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.search-btn{
    background: #F82038;
    border: 2px solid #F82038;
    color: #fff;
    flex: 0 1 10%;
    margin-left: 10px;
    padding: 5px 10px;
}
.search-btn:hover{
    background: #fff;
    color: #F82038;
}
.search-btn:active{
    border-color: #a70013;
    background: #de0019;
    color: #fff;
}
/*フォームの構造*/
.login-form input[type="text"],select{
    border: 1px solid #ccc; 
    padding: 5px;
    cursor: auto;
}
.login-form dt{
    float: left;
    clear: left;
    width: 180px;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.login-form dd{
    padding-left: 200px;
    border-bottom: 1px dotted #C7D527;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 8px;
}
.login-form dd span{
    color: #f00;
}
.note{
    margin-top: 6px;
    color: #f00;
    font-size: 0.8rem;
}
.ng{
    color: #f00;
    margin-top: 5px;
}

@media(max-width: 768px){
    .login-form dt{
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 0;
    }
    .login-form dd{
        padding-left: 0;
        margin-left: 0;
    }
    .login-form{
        margin-left: 20px;
        margin-right: 20px;
    }
    .login-form dt{
        width: 100%;
    }
    .login-form dd{
        padding-left: 10px;
        width: 100%;
    }
}
/* フォームの長さ */
.form-large{
    width: 80%;
}
.form-medium{
    width: 40%;
}
.form-small{
    width: 25%;
}
@media(max-width: 768px){
    .form-large{
        width: 95%;
    }
    .form-medium{
        width: 60%;
    }
    .form-small{
        width: 40%;
}
}

/*========== ヘッダー ==========*/
header{
    border-bottom: 5px solid #F82038;
    background: #fff;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
}
@media (max-width: 500px){
    header{
        padding-left: 5px;
        padding-right: 5px;
    }
    .header-inner{
        display: block;
        justify-content: none;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
        padding: 20px 0 0 0;
    }
}

/* ロゴ */
.header-logo{
    flex: 1 1 50%;
    margin-right: 10px;
}
.header-logo img{
    width: 270px;
}
@media (max-width: 500px){
    .header-logo{
        text-align: center;
    }
    .header-logo img{
        width: 220px;
    }
}

/*=====ヘッダーナビ共通====*/
.header-nav{
    display: flex;
    flex: 0 1 auto;
    padding: 20px 0;
    align-items:center;
    margin-left: auto;
}
@media (max-width: 500px){
    .header-nav{
        margin-bottom: 0px;
        justify-content: space-between;
    }
}

/*=====ヘッダー検索=====*/
.header-search{
    display: none;
    margin: 10px 20px;
}
@media (max-width: 500px){
    .header-search{
        display: block;
    }
}
    
/* ログアウト状態 */
.header-logout ul li{
    display: inline-block;
    background: #F82038;
    border: 1px solid #F82038;
    margin: 4px;
}
.header-logout ul li a{
    display: block;
    color: #fff;
    padding: 8px 12px;
    text-align: center;
}
.header-logout ul li:hover a{
    color: #F82038;
    background: #fff;
}
.header-logout ul li:active{
    box-shadow: 0px 0px 2px 0px #F82038 inset;
}
@media (max-width: 500px){
    header{
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ログイン状態 */
.header-login ul li{
    display: inline-block;
}
.header-login ul li a{
    display: block;
    padding: 5px 15px;
    position: relative;
}
.header-login ul li a::after{
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: rgb(250,34,58);
    transform: scale(0,1);
    transform-origin: center;
    transition: transform .3s;
}
.header-login ul li a:hover::after{
    transform: scale(1,1)
}

.cart i{
    margin-right: 10px;
}
.fa-shopping-cart{
    color: #000;
    font-size: 20px;
    padding: 4px;
    margin-right: 5px;
}
.fa-user{
    color: #000;
    font-size: 20px;
    padding: 4px;
    margin-right: 8px;
    margin-left: 3px;
}
.fa-shopping-cart{
    position: relative;
}

/*カート内選択数の表示*/
.count{
    position: absolute;
    background: #F82038;
    top: -10px;
    right: -10px;
    text-align: center;
}
.count span{
    position: absolute;
    background: #F82038;
    font-size: 0.9rem;
    color: #fff;
    width: 20px;
    line-height: 20px;
    border-radius: 50% 50%;
    top: 3px;
    right: 5px;
}
@media (max-width: 500px){
    .text{
        display: none;
    }
    .cart,.user{
        margin-right: 5px;
    }
    .fa-shopping-cart,.fa-user{
        font-size: 24px;
        margin: 0 auto;
    }
    .count{
        top: -14px;
        right: -14px
    }
    .count span{
        font-size: 1.1rem;
        width: 22px;
        line-height: 22px;
    }
}

/*=====ナビボタン=====*/
.menu-trigger{
    display: none;
    background: #eee;
    border: 2px solid #ccc;
    width: 40px;
    height: 40px;
}

.bar{
    height: 2px;
    width: 25px;
    background: #333;
    margin: 0 auto;
}
.bar1{
    margin-bottom: 8px;
}
.bar3{
    margin-top: 8px;
}

button:active{
    border: 2px solid #888;
    background: #bbb;
}
@media (max-width: 500px){
    .menu-trigger{
        display: block;
    }
}

/*=====スマホナビ=====*/
.smf-nav{
    display: none;
    padding: 0px;
    overflow: hidden;
    width: 100%;
}
.smf-nav h2{
    font-size: 18px;
    border-bottom: 1px solid #fff;
    padding: 10px 20px 5px 20px;;
    background: #C7D527;
    color: #fff;
}
.smf-nav ul li{
    font-size: 16px;
    border-bottom: 1px dotted #fff;
    background: #C7D527;
}
.smf-nav ul li:last-child{
    border-bottom: 1px solid #C7D527;
}
.smf-nav ul li a{
    position: relative;
    padding: 10px 0;
    display: block;
    color: #fff;
    padding-left: 50px;
}
.smf-nav ul li:hover{
    background: #fff;
}
.smf-nav ul li:hover a{
    color: #C7D527;
}
.smf-nav ul .food a::before{
        content: "";
        display: inline-block;
        position: absolute;
        background: url(../image/sakana-w.png)no-repeat;
        background-size: 30px;
        height: 30px;
        width: 30px;
        top: 7px;
        left: 10px;
    }
.smf-nav ul .food a:hover::before{
    background: url(../image/sakana.png)no-repeat;
    background-size: 30px;
}
.smf-nav ul .craft a::before{
        content: "";
        display: inline-block;
        position: absolute;
        background: url(../image/owan-w.png)no-repeat;
        background-size: 22px;
        height: 22px;
        width: 22px;
        top: 6px;
        left: 14px;
    }
.smf-nav ul .craft a:hover::before{
    background: url(../image/owan.png)no-repeat;
    background-size: 22px;
}
.smf-nav ul .osake a::before{
        content: "";
        display: inline-block;
        position: absolute;
        background: url(../image/osake-w.png)no-repeat;
        background-size: 20px;
        height: 25px;
        width: 25px;
        top: 7px;
        left: 18px;
    }
.smf-nav ul .osake a:hover::before{
    background: url(../image/osake.png)no-repeat;
    background-size: 20px;
}
.smf-nav ul .okome a::before{
        content: "";
        display: inline-block;
        position: absolute;
        background:url(../image/inaho-w.png)no-repeat;
        background-size: 24px;
        height: 25px;
        width: 25px;
        top: 5px;
        left: 14px;
    }
.smf-nav ul .okome a:hover::before{
    background: url(../image/inaho.png)no-repeat;
    background-size: 24px;
}
.smf-nav ul li a:hover::after{
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #C7D527; 
    font-size: 20px;
    position: absolute;
    right: 20px;
}

/*========== キャッチ ==========*/
.catch-photo{
    width: 100%;
}
@media(max-width: 500px){
    .catch-photo{
        height: 250px;
    }
    .header-catch img{
        height: 250px;
        width: auto;
    }
}
/*========== フッター ==========*/
footer{
    padding-top: 64px;
    background: url(../image/line-color.png);
    background-repeat: repeat-x;
    background-size: auto 65px;
       }          
       
.footer-item {
    color: #fff;
    padding: 10px 0;
    list-style: none;
    text-align: center;
}
.footer-item li {
    text-align: center;
    display: inline-block;
}
.footer-item li a{
    color: #fff;
    padding: 3px 10px;
}
.footer-item li a:hover{
    text-decoration: underline;
}
.copyright {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    background: #fa223a;
    color: #fff;
}
.footer-line{
    display: flex;
}
.footer-line img{
    width: 50%;
    height: 50%;
    display: block;
    flex: 50%;
}
.footer-inner{
    max-width: 1000px;
    margin: auto;
    padding: 30px 0;
} 
.footer-wrap{
    background:#fa223a; 
 }
@media(max-width: 500px){
    .footer-item li{
        display: block;
        margin: 4px 0;
        padding-bottom: 18px;
    }
}

/*========== ナビ ==========*/
/*構造*/
.sagasu,.calendar,.social,.bloglink{
    margin-bottom: 20px;
}
.nav-search{
    margin-bottom: 15px;
}

/*===== nav見出し =====*/
/*nav h2 上下線*/
nav h2{
    font-size: 20px;
    font-weight: normal;
    color: #7f880c;
    border-top: 2px solid #C7D527;
    border-bottom: 2px solid #C7D527;
    padding-top: 8px;
    padding-bottom: 4px;
    margin-bottom: 10px;
}
nav h2::before{
    content: "";
    margin-right: 5px;
}
@media(max-width: 500px){
    nav h2{
        font-size: 18px;
    }
}

/*nav h3*/
nav h3{
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    color: #7f880c;
    /*border-bottom: 2px dashed #C7D527;*/
    padding-left: 5px;
    padding-right: 5px;
    margin: 10px 15px;
    position: relative;
}
nav h3 .before{
    position: absolute;
    background: #C7D527;
    padding: 8px;
    border-radius: 50%;
    top: -1px;
    left: -15px;
}
nav h3 .after{
    position: absolute;
    background: #C7D527;
    padding: 8px;
    border-radius: 50%;
    top: -1px;
    right: -15px;
}

/*===== 商品を探す =====*/
/*キーワード検索*/
@media (max-width: 768px){
    .nav-search h3{
    }
    .sidenav-search{
        margin: 0 20px;
    }
}
/* カテゴリー検索 */
.nav-category ul li{
    font-size: 18px;
    padding-left: 0px;
    border-bottom: 2px dotted #C7D527; 
}
.nav-category ul li:first-child{
    border-top: 1px solid #C7D527;
}
.nav-category ul li:last-child{
    border-bottom: 1px solid #C7D527;
}
.nav-category ul li a{
    display: block;
    padding: 20px 0 20px 60px;
    position: relative;
}
.nav-category ul .food a::before{
    content: "";
    display: inline-block;
    position: absolute;
    background: url(../image/sakana.png)no-repeat;
    background-size: 40px;
    height: 50px;
    width: 50px;
    top: 14px;
    left: 5px;
}
.nav-category ul .craft a::before{
    content: "";
    display: inline-block;
    position: absolute;
    background: url(../image/owan.png)no-repeat;
    background-size: 34px;
    height: 50px;
    width: 50px;
    top: 10px;
    left: 5px;
}
.nav-category ul .osake a::before{
    content: "";
    display: inline-block;
    position: absolute;
    background: url(../image/osake.png)no-repeat;
    background-size: 34px;
    height: 50px;
    width: 50px;
    top: 10px;
    left: 5px;
}
.nav-category ul .okome a::before{
    content: "";
    display: inline-block;
    position: absolute;
    background: url(../image/inaho.png)no-repeat;
    background-size: 34px;
    height: 50px;
    width: 50px;
    top: 10px;
    left: 5px;    
}
.nav-category ul li a:hover{
    background: #C7D527;
    color: #fff;
}
.nav-category ul .food a:hover::before{
    background: url(../image/sakana-w.png)no-repeat;
    background-size: 40px;
}
.nav-category ul .craft a:hover::before{
    background: url(../image/owan-w.png)no-repeat;
    background-size: 34px;
}
.nav-category ul .osake a:hover::before{
    background: url(../image/osake-w.png)no-repeat;
    background-size: 34px;
}
.nav-category ul .okome a:hover::before{
    background: url(../image/inaho-w.png)no-repeat;
    background-size: 34px;
}
.nav-category ul li a:hover::after{
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #fff; 
    font-size: 20px;
    position: absolute;
    right: 10px;
}

@media (max-width: 768px){
    .nav-category ul{
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media (max-width: 500px){
    .nav-category ul{
        margin-left: 10px;
        margin-right: 10px;
    }
    .nav-category ul li{
        font-size: 16px;
    }
}

/*=====カレンダー=====*/
.calendar{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/*カレンダーデザイン*/
.calendar-dz{
    border: 1px solid #C7D527;
    border-radius: 6px;
    padding: 5px;
}
.calendar-dz1{
    margin-bottom: 10px;
}
.calendar-dz2{
    margin-bottom: 0;
}
caption{
    font-size: 1.2rem;
    color: #7f880c;
    padding: 4px 0;
}
th,td{
    text-align: center;
    font-size: 0.8rem;
    border: 1px #fff solid;
    padding: 6px 4px;
    background: #fefefe;
}
.red{
    background: #f66;
    color: #fff;
}
.blue{
    background: #66f;
    color: #fff;
}
.gray{
    background: #C7D527;
}
.holiday{
    background: #a9a9a9;
    color: #fff;
}
.calender-meaning{
    font-size: 13px;
    margin: 5px 10px 0;
}
.calender-meaning span{
    color: #a9a9a9;
}

@media(max-width: 768px){
    .calendar-inner{
        display: flex;
        justify-content: space-between;
    }
    .calendar-dz{
        flex-grow: 1;
        display: inline-block;
    }
    .calendar-dz1,.calendar-dz2{
        margin-bottom: 0;
        margin-left: 10px;
        margin-right: 10px;
    }
    .calender-meaning{
        margin-top: 10px;
    }
}
@media(max-width: 500px){
    .calendar-inner{
        display: block;
    }
    .calendar-dz{
        display: block;
    }
    .calendar-dz1{
        margin-bottom: 10px;
    }
}

/*=====フォローボタン=====*/
.social ul li{
    text-align: center;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
}
.social ul li:last-child{
    margin-bottom: 0;
}
.social ul li a{
    display: block;
    color: #fff;
    padding: 10px 0;
}
.social ul li .fab{
    font-size: 18px;
    margin-right: 5px;
}
.social ul .tw{
    background: #55acee;
    border: 2px solid #55acee;
}
.social ul .fb{
    background: #3b5998;
    border: 2px solid #3b5998;
}
.social ul .line{
    background: #00b900;
    border: 2px solid #00b900;
}
.social ul li:hover{
    background: #fff;
}
.social ul .tw:hover a{
    color: #55acee;
}
.social ul .fb:hover a{
    color: #3b5998;
}
.social ul .line:hover a{
    color: #00b900;
}

@media(max-width: 768px){
    .social ul{
        display: flex-box;
        text-align: center;
        margin-bottom: 0;
    }
    .social ul li{
        display: inline-block;
        flex-grow: 1;
        padding: 0 10px;
    }
}
@media(max-width: 500px){
    .social ul li span{
        display: none;
    }
    .social ul li .fab{
        margin-right: 0;
        font-size: 26px;
    }
}

/*=====ブログ=====*/
.blog{
    position: relative;
}
.blog i{
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    transform:rotate(-30deg);
    font-size: 35px;
    color: #F82038;
    text-shadow: 0px 4px 1px #fff;
}
.blog:hover img{
    opacity: 0.8;
}
.blog:hover i{
    display: block;
}
@media(max-width: 768px){
    .blog{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .blog i{
        font-size: 60px;
    }
}

/*========== メイン ==========*/
/*構造*/
.osusume-conte,.ranking-conte,.ichiran-conte,.news-conte,.infomation-conte{
    margin-bottom: 30px;
}

/*===== main見出し =====*/
main h2{
    font-size: 25px;
    font-weight: normal;
    color: #fff;
    background: #7f880c;
    padding: 5px 0px 0px 0px;
    border-top: 2px solid #7f880c;
    border-bottom: 2px solid #C7D527;
    border-radius: 15px 15px 0 0;
    box-shadow: 1px 2px 0px #C7D527;
    margin-bottom: 15px;
}
main h2::before{
    content: "";
    margin-right: 20px;
}

main h3{
    font-size: 22px;
    font-weight: normal;
    color: #7f880c;
    border-bottom: 2px solid #C7D527;
    margin-bottom: 20px;
}

@media(max-width: 500px){
    main h2{
        font-size: 22px;
    }
    main h3{
        font-size: 18px;
    }
}

/*===== main共通 =====*/
/*商品名、金額など*/
.price{
    color: #F82038;
    font-size: 1.2rem;
    text-align: right;
    font-weight: bold;
}
.price span{
    font-size: 0.8rem;
    font-weight: normal;
}
.name{
    font-size: 1.1rem;
    margin-bottom: 6px;
}
/*各商品の共通項目*/
.product{
    background: #fff;
}
.product:hover,.osusume-sub:hover,.ranking-inner:hover{
    background: rgba(250,34,58,0.1);
}
.product-photo{
    height: 200px;
}
.product-info{
    padding: 5px 10px 0;
}
.product-photo img{
    height: 100%;
    object-fit: contain;
}

@media(max-width: 500px){
    .price{
        font-size: 1rem;
    }
    .price span{
        font-size: 0.7rem;
    }
    .name{
        font-size: 0.9rem;
    }
}

/*===== おすすめ商品 =====*/
/*配置*/
.osusume{
    display: flex;
    justify-content: space-between;
}
.osusume-inner{
    flex: 0 1 55%;
    position: relative;
}
.osusume-subinner{
    flex: 0 1 43%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.osusume-sub{
    flex: 0 1 46%;
    padding: 4px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
}
.osusume-sub:nth-child(3),.osusume-sub:nth-child(4){
    margin-bottom: 0;
}
/*おすすめmain画像テキスト関係*/
.osusume-mainphoto{
    height: 100%;
}
.osusume-mainphoto img{
    height: 90%;
    object-fit: cover;
}
.osusume-info{
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgba(127, 136, 12,0.5);
}
.osusume-name{
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 2px #000;
    margin-left: 5px;
    padding-top: 10px;
}
.osusume-price{
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 2px #fff;
    margin-right: 5px;
}
.osusume-price span{
    font-size: 14px;
}

.osusume-inner:hover{
    background: rgba(250,34,58,0.1);
}
.osusume-inner:hover .osusume-info{
    background: rgba(250,34,58,0.2);
}
@media(max-width: 950px){
    /*構造*/
    .osusume{
        display: block;
    }
    .osusume-inner{
        margin-bottom: 10px
    }
    .osusume-mainphoto{
        height: 300px;
    }
    .osusume-subphoto img{
        height: 120px;
        object-fit: contain;
    }
}

/*===== ランキング =====*/
/*ランキング構造*/
.ranking{
    display: flex;
    justify-content: space-between;
}
.ranking-inner{
    position: relative;
    flex: 0 1 32%;
    background: rgb(127, 136, 12,0.3);
    border-top: 2px solid rgb(127, 136, 12,0.8);
    padding: 20px 4px;
    margin-right: 5px;
}
.ranking-inner a{
    background: #fff;
}
.ranking-inner:last-child{
    margin-right: 0;
}
.ranking-inner a .product-photo,.ranking-inner a .product-info{
    background: #fff;
}

/*ランキング王冠*/
.rank-image{
    position: absolute;
    background: #ccc;
    border-top: 4px solid #aaa;
    padding: 8px 3px 0 3px;
    top: -3px;
    left: 8px;
}
.rank-image img{
    width: 55px;
    margin-bottom: 5px;
}
.rank1{
    background: #ffeb80;
    border-color: #ffcf62;
}
.rank2{
    background: #cce2e5;
    border-color: #7b9ab9;
}
.rank3{
    background: #dd9d6e;
    border-color: #c97575;
}

@media(max-width: 500px){
    /*構造*/
    .ranking{
        display: block;
    }
    .ranking-inner{
        margin-bottom: 10px;
    }
    .ranking-inner:last-child{
        margin-bottom: 0;
    }
    .ranking-inner a{
        display: flex;
        align-items: center;
    }
    .ranking-inner .product-photo{
        flex: 0 1 60%;
        height: 150px;
    }
    .ranking-inner .product-info{
        flex: 0 1 40%;
    }
}

/*===== 名産品 =====*/
/*名産品一覧構造*/
.ichiran-content{
    display: flex;
    margin-bottom: 10px;
}
.ichiran-inner{
    flex: 1 1 30%;
    margin-right: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px dotted #ddd;
    border-right: 1px dotted #ddd;
    padding: 4px;
}
.ichiran-inner:first-child{
    border-left: none;
}
.ichiran-inner:last-child{
    border-right: none;
    margin-right: 0;
}
.ichiran-inner .product-photo{
    height: 180px;
}
/*名産品一覧ボタン*/
.btn-content{
    text-align: right;
    padding-bottom: 10px;
}
.ichiran-btn{
    background: #C7D527;
    border: 2px solid #C7D527;
    display: inline-block;
}
.ichiran-btn a{
    display: block;
    color: #fff;
    padding: 16px 50px;
}
.ichiran-btn:hover{
    background: #fff;
}
.ichiran-btn:hover a{
    color: #C7D527;
}
@media(max-width: 500px){
    /*名産品一覧構造*/
    .ichiran-content{
        display: block;
    }
    .ichiran-inner{
        margin-right: 0;
        margin-bottom: 5px;
        border-top: 1px dotted #ddd;
        border-bottom: 1px dotted #ddd;
        border-left: none;
        border-right: none;
    }
    .ichiran-inner:first-child{
        border-top: 1px solid #ddd;
    }
    .ichiran-inner:last-child{
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
    }
    .ichiran-inner a{
        display: flex;
        align-items: center;
    }
    .ichiran-inner .product-photo{
        flex: 1 1 60%;
        height: 100px;
    }
    .ichiran-inner .product-info{
        flex: 0 1 40%;
    }
    
    /*名産品一覧ボタン*/
    .btn-content{
        text-align: center;
        margin-bottom: 15px;
    }
    .ichiran-btn{
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }
    .ichiran-btn a{
        padding: 10px 0;
    }
}

/*===== お知らせ =====*/
/*新着記事*/
.news a{
    display: block;
    padding: 10px 0;
}
.news a:hover{
    background: rgba(250,34,58,0.1);
}
.news span{
    margin-right: 2em;
}
.news ul li a::before{
    content: "";
    margin-left: 10px;
}
.news ul li{
    border-bottom: 1px dotted #ddd;
}
.news ul li:last-child{
    border-bottom: none;
}

/*twitter埋め込み*/
.infomation{
    margin-top: 30px;
    margin-bottom: 50px;
}
.tw-btn-content{
    text-align: center;
    margin-top: 16px;
}
.tw-btn{
    background: #1DA1F2;
    color: #fff;
    padding: 14px 20px;
    border-radius: 5px;
    display: inline-block;
}

/*========== 一覧ページ ==========*/
/* カテゴリーメイン画像 */
.ichiran-catch{
    position: relative;
    height: 200px;
    background: url(../image/photo_03_sake.jpg)no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/*カテゴリー商品(おすすめ以外の共通項目参照)*/
.ichiran-item{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.item{
    flex: 0 1 28%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.price-no{
    color: #fff;
    background: #aaa;
    text-align: center;
    padding: 5px 0;
}

@media(max-width: 500px){
    .item{
        flex: 0 1  45%;
    }
}

/*========== 詳細ページ ==========*/
/* パンくずリスト */
.bread{
    margin-bottom: 10px;
}
.bread li{
    display: inline-block;
    margin: 4px 6px;
    color: #888;
}
.bread li a{
    color: #888;
}
.bread li::after{
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-left: 12px;
}
.bread li:last-child{
    color: #333;
}
.bread li:last-child::after{
    content: none;
}

/* 商品詳細 */
/*詳細h3*/
.syosai-inner h3{
    font-size: 20px;
    color: #fff;
    font-weight: normal;;
    border-bottom: 2px solid #C7D527;
    margin-bottom: 20px;
    margin-top: 30px;
}
.syosai-inner h3 span{
    background: #7f880c;
    padding: 10px 20px 0px;
    border-bottom: 2px solid #C7D527;
    border-radius: 10px 10px 0 0;
}

/*詳細構造*/
.item-container{
    display: flex;
    margin: 20px 0 30px 0;
}
.item-image{
    flex: 0 0 43%;
    margin-right: 2%;
    background: rgb(250,250,250);
}
.item-detail{
    flex: 0 0 55%;
}
.detail-name-smf{
    display: none;
}
/*商品名*/
.detail-name,.detail-name-smf{
    font-size: 24px;
    border-bottom: 2px solid #C7D527;
    border-left: 8px solid #C7D527;
    padding-left: 10px;
    margin-bottom: 10px;
}
.detail-number{
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
}

/*シェアボタン、価格構造*/
.shara-price{
    width: 100%;
    margin-left: auto;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.detail-share{
    margin-bottom: 40px;
    text-align: right;
}
/*シェアボタン*/
.detail-share ul{
    margin: 0px auto;
    
}
.detail-share ul li{
    display: inline-block;
}
.detail-share ul li a{
    padding: 0px 4px;
    text-align: center;
    color: #fff;
}
.detail-share ul li i::after{
    content: "";
    margin-right: 5px;
}
.share-tw a{
    background: #55acee;
    border: 1px solid #55acee;
    border-radius: 5px;
}
.share-tw a:hover{
    background: #fff;
    color: #55acee;
}
.share-fa a{
    background: #3b5998;
    border: 1px solid #3b5998;
    border-radius: 5px;
}
.share-fa a:hover{
    background: #fff;
    color: #3b5998;
}
.share-li a{
    background: #00b900;
    border: 1px solid #00b900;
    border-radius: 5px;
}
.share-li a:hover{
    background: #fff;
    color: #00b900;
}

/*価格*/
.detail-price{
    width: 100%;
    display: inline-block;
    text-align: right;
    font-size: 24px;
    font-weight: bold;
}
.detail-price span{
    font-weight: normal;
    font-size: 16px;
}

/*個数、カートボタン構造*/
.kazu-cartbtn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*個数*/
.detail-kazu{
    width: 18%;
    margin-right: 2%;
}
.detail-kazu select{
    background: #fff;
    padding-top: 16px;
    padding-bottom: 16px;
}
/*カートボタン*/
.cart-btn{
    width: 80%;
    background: #f82038;
    color: #fff;
    border: 2px solid #f82038;
    font-size: 16px;
    padding: 16px 0;
    
}
.cart-btn:hover{
    background: #fff;
    color: #f82038;
}
.cart-btn:active{
    border-color: #a70013;
}
/*在庫切れ、ログインしてください*/
.nothing,.login-m{
    display: inline-block;
    width: 80%;
    font-size: 1.1rem;
    padding: 18px 0px;
    text-align: center;
    background: #ccc;
    border: 2px solid #ccc;
}
.login-m a{
    padding: 18px 0px;
}
.login-m:hover{
    background: #fff;
    color: #888;
}
.login-m:active{
    border-color: #aaa;
}
/*メッセージ*/
.detail-messe{
    font-size: 0.9rem;
    margin-top: 20px;
    color: #666;
}
.detail-messe a{
    color: #F82038;
}
.detail-messe a:hover{
    text-decoration: underline;
}

@media(max-width: 500px){
    /*詳細構造*/
    .item-container{
        display: block;
        margin: 20px 0 30px 0;
    }
    .item-image{
        margin-right: 0;
    }
    .item-image img{
        max-height: 300px;
        object-fit: contain;
    }
    .syosai-inner h3{
        font-size: 18px;
    }
    /*商品名*/
    .detail-name{
        display: none;
    }
    .detail-name-smf{
        display: block;
        font-size: 20px;
    }
    .shara-price{
        margin-left: 0;
    }
    /*シェアボタン、価格*/
    .detail-share{
        margin-top: 10px;
        margin-bottom: 20px;
        text-align: left;
    }
    .detail-price{
        text-align: left;
    }
}

/* 商品説明 */
.item-ingredients{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.item-ingredients table th,.item-ingredients table td{
    padding: 10px 8px;
}
/*関連商品*/
.kanren-inner{
    display: flex;
    justify-content: space-between;
}  

.kanren-product{
    flex: 0 1 30%;
}

/*========== ログイン,新規会員登録 ==========*/

/*ログインページ*/
.newmember-move{
    margin-bottom: 10px;
}
.newmember-move a{
    color: #F82038;
}
.newmember-move:hover{
    text-decoration: underline;
}

/*新規会員登録完了*/
.complete{
    border-bottom: 1px solid #aaa;
    padding: 20px 0 30px;
}
.new-member{
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

/*=====infoページ=====*/
.info-title{
    border-bottom: 2px solid #C7D527;
    border-left: 8px solid #C7D527;
    padding-left: 10px;
    color: #333;
    margin-bottom: 5px;
    margin-top: 20px;
}
.info-inner{
   text-align: right;
}
.info-time{
    display: inline-block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1;
    position: relative;
}
.info-time::before{
    position: absolute;
    content: "\f017";
    font-family: "Font Awesome 5 Free";
    left: -20px;
}
.info-content{
    padding: 10px 0px;
    margin: 10px 0;
}
/*========== カートページ ==========*/
/* カート画面 */
.cart-item{
    border-bottom: 1px solid #aaa;
    padding: 20px 10px;
    display: flex;
}
.cart-item-image{
    flex: 0 1 32%;
    margin-right: 2%;
    text-align: center;
}
.cart-item-image img{
    max-height: 100px;
    object-fit: contain;
}
.cart-item-text{
    flex: 1 1 68%;
    margin-left: 2%;
    line-height: 1;
}
.cart-i-name{
    font-size: 1.3rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}
.cart-i-id{
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 10px;
}
.cart-i-price{
    margin-bottom: 20px;
    font-weight: bold;
}
.cart-tax{
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 8px;
}

.cart-ibtn-inner{
    padding: 5px 0;
    display: flex;
}
.cart-updel{
    display: flex;
    flex: 0 1 40%;
}
input[type="number"]{
    border: 1px solid #aaa;
}
.cart-i-kazu{
    width: 50px;
    padding: 5px;
    flex: 0 1 20%;
    margin-right: 40%;
}
.cart-i-btn{
    display: inline-block;
    margin-bottom: 0px;
}
.cart-update{
    background: #F82038;
    color: #fff;
    border: 2px solid #F82038;
    padding: 4px 0px;
    margin-left: 15px;
    margin-right: 15px;
    flex: 0 1 50%;
}
.cart-delete{
    background: #ccc;
    border: 2px solid #ccc;
    text-align: center;
    flex: 0 1 50%;
}
.cart-delete a{
    display: block;
    padding: 8px 0px;
}
.cart-update:hover{
    background: #fff;
    color: #F82038;
}
.cart-delete:hover{
    background: #fff;
    color: #ccc;
}

.cart-item-total{
    font-size: 1.2rem;
    margin: 20px 0;
    padding: 20px 0;
    text-align: center;
    background: rgba(199, 213, 39,0.2);
}
.cart-price-total{
    display: block;
    font-size: 1.5rem;
    background: #fff;
    margin: 0 20px;
    padding: 15px 0;
}
.cart-price-total span{
    margin-left: 15px;
    font-weight: bold;
}

@media(max-width: 500px){
    .cart-ibtn-inner{
        display: block;
    }
    .cart-updel{
        margin-top: 10px;
        align-items: stretch;
    }
    .cart-update{
        margin-left: 0;
        margin-right: 20px;
        padding: 0;
        flex: 0 1 50%;
        width: 50px;
    }
    .cart-delete{
        flex: 0 1 50%;
        width: 50px;
        padding: 0;
    }
}
/*カートのフロー画像*/
.cartflow{
    width: 95%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    
}
/*各情報の確認*/
.check-cart{
    margin-bottom: 40px;
}
.check-cart-inner{
    margin-bottom: 20px;
}
.check-cart p{
    font-size: 20px;
    color: #7f880c;
    margin-bottom: 10px;
    padding-left: 8px;
    margin-left: 10px;
    position: relative;
}
.check-cart p::before{
    position: absolute;
    content: "";
    padding: 14px 4px;
    background:  #C7D527;
    top: -6px;
    left: -5px;
}
/*クレジット情報*/
.credit-cart input[type="text"]{
    border: 1px solid #ccc;  
    padding: 5px;
    margin-left: 20px;
    cursor: auto;
}
.credit-cart dt{
    float: left;
    clear: left;
    width: 100px;
    font-weight: bold;
    padding-right: 0px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.credit-cart dd{
    margin-left: 20px;
    border-bottom: 1px dotted #C7D527;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 8px;
}
/*=====最終確認=====*/
.check-cart-inner{
    margin-top: 20px;
    margin-bottom: 30px;
}

.item-list th{
    border-bottom: 1px solid #ccc;
    line-height: 1;
}
.item-list th,.item-list td{
    font-size: 1rem;
}

/*購入情報確認*/
.cart-p-info{
    border-top: 1px solid #ccc;
    line-height: 1.1;
    padding: 10px 0;
    text-align: right;
    margin-right: 15px;
    
}

.cart-p-info dl{
    width: 100%;
}
.cart-p-info dt{
    font-weight: normal;
    float: left;
    width: 75%;
    padding: 4px 0;
    text-align: right;
}
.cart-p-info dd{
    width: 100%;
    padding: 4px 0;
    text-align: right;
}
.check-cart-inner .cart-item-total{
    margin: 0;
}

.cart-ng{
    color: #f00;
}

/*配送情報確認*/
.cart-c-info dt{
    float: left;
    clear: left;
    width: 180px;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.cart-c-info dd{
    padding-left: 200px;
    border-bottom: 1px dotted #C7D527;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 8px;
}
/*thanksページ*/
.thanks-inner{
    text-align: center;
}
.namahage-cart img{
    width: 180px;
}
.thanks-name{
    font-size: 24px;
    color: #F82038;
    font-weight: bold;;
    border-bottom: 2px solid #F82038;
    margin-bottom: 20px;
    padding: 20px 24px 6px 24px;
    line-height: 1.2;
}

.thanks-messe{
    margin: 40px 0;
    font-size: 18px;
}
.thanks-messe p span{
    font-size: 1.2rem;
    font-weight: bold;
}
.mail-cart{
    margin-top: 50px;
    padding: 20px 0 ;
    border-top: 2px dotted #C7D527;
}
.mail-cart img{
    width: 100px;
}
.mail-messe{
    margin: 0 0 40px 0;
}

.last-check p{
    border-left: 5px solid #C7D527;
    padding-left: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.last-check table th, .last-check table td{
    border: 1px solid #ccc;
}

/*========== 会社概要 ==========*/
/*基本構造*/
h4{
     font-size: 20px;
     padding-top: 10px;
     padding-bottom: 10px;
     color: #7f880c;
}
.company-inner{
    padding-top: 30px; 
    padding-bottom: 20px;
}
p{
  line-height: 20px;
}  
blockquote{
   padding: 20px;
   border-radius: 10px;
   background: #eee;
   margin-bottom: 20px;
} 
article p{
	margin-bottom: 1em;
}
/*画像周り*/
.company-photo-right {
	width: 320px;
	float: right;
	padding: 0 0 10px 10px;
}    
.company-photo-left {
	width: 320px;
	float: left;
	padding: 0 10px 10px 0;
}
.huukei{
  padding-top: 10px;
  padding-right: 300px;
  display: block;
} 
.omoi{
  padding-top: 10px;
  padding-left: 300px;
  display: block;
}
.company-photo{
    width: 320px;
    float: right;
    padding: 0 0 10px 10px;
}
 @media screen and (max-width:500px){
    .company-photo{
        float:none;
    }
    .company-photo img{
        width: 100%;
    }
}
/*会社情報*/
dt{
    float: left;
    width: 120px;
    font-weight: bold;
}
dd{
    padding-left: 130px;
    margin-bottom: 0.5rem;
}
/*アイコン*/
h3 i{
    padding-right: 10px;
    color: #7f880c;
}

/*========== プライバシーポリシー ==========*/
.p-inner{
    line-height: 1.8;
}

.p-mail{
    font-weight: bold;
    color: #fa223a;
}

.p-mail:hover{
    text-decoration: underline;
}

/*========== ご利用ガイド ==========*/
.g-li{
    font-weight: bold;
}

.g-box{
    line-height: 1.8;
}

.g-card{
    width: 270px;
    height: 40px;
}

.g-h4{
    color: #C7D527;
}
/*========== お問い合わせ ==========*/
.must{
    color: #f00;
    }
.contact input[type="text"],select{
    border: 1px solid #ccc;  
    padding: 5px;
    cursor: auto;
}
.contact dt{
    float: left;
    clear: left;
    width: 180px;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.contact dd{
    padding-left: 200px;
    border-bottom: 1px dotted #C7D527;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 8px;
    word-break: break-all;
}
.contact dd span{
    color: #f00;
}


/*========== アカウントページ ==========*/
/*アカウントmain*/
.account-inner h2{
    font-size: 20px;
}
/*アカウントnav*/
.account-menu{
    border-bottom: 2px solid #C7D527;
}
.account-menu h3{
    margin-bottom: 0px;
}

.account-list li{
    border-bottom: 1px dotted #C7D527;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    font-size: 1.1rem;
}
.account-list li:hover{
    border-bottom: 1px solid #fff;
    background: #F82038;
    font-weight: bold;
    color: #fff;
}

/*購入履歴*/
.fa-file-alt{
    font-size: 22px;
}

/*購入履歴詳細*/
.rireki-sum{
    margin-top: 15px;
    text-align: right;
    font-size: 1.3rem;
}
.rireki-sum span{
    margin-left: 20px;
    font-weight: bold;
    font-size: 1.4rem;
}
.ryousyu-inner{
    border-top: 1px dotted #ccc;
    text-align: center;
    padding-top: 20px;
}
.ryousyu{
    background: #eee;
    border: 2px solid #ccc;
    display: inline-block;
}
.ryousyu a{
    padding: 10px 10px;
}
.ryousyu:hover{
    background: #fff;
}
/*ジョークメッセージ*/
.jooku{
    font-size: 0.4rem;
    color: #aaa;
    margin-top: 100px;
    text-align: right;
}
.jooku p{
    line-height: 1;
}