@charset "UTF-8";
/*
Theme Name: daiichibussan
Theme URI: https://officepartner.synology.me/daiichibussan
Author: the WordPress team
*/

/*--------------*/
/*-----共通-----*/
/*--------------*/
/*---タグ---*/
html,body{
   margin:0;
   font-size:1.1rem;
   color:rgb(51,51,51);
   font-family: 'Noto Sans JP', sans-serif;
}
ul{padding:0;margin:0;list-style:none;}
p{padding:0;margin:0;}
a{text-decoration: none;color:rgb(60,60,60);}
h1,h2,h3,h4,h5{padding:0;margin:0;}
h1{padding-bottom:3%;}
h2{padding-bottom:3%;}
img{width:100%;height:auto;vertical-align: bottom;}
section{padding: 0;padding-bottom: 3%;}

/*---クラス---*/
.width44-percent{width: 44%;margin:0 auto;}
.width60-percent{width: 60%;margin:0 auto;}
.width70-percent{width: 70%;margin:0 auto;}
.width80-percent{width: 80%;margin:0 auto;}
.width90-percent{width: 90%;margin:0 auto;}

.heading1{
    text-align:center;
    font-size:1.5rem;
    padding-top: 3%;
}
.heading1 .en-labels{
    font-size: 0.9rem;
    color: rgb(0,149,238);
}

.heading2{
    padding-top: 5%;
    text-align: center;
}

.heading2 .decoration{
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.3rem;
}

.heading2 .en-labels{
    font-size: 0.9rem;
}

.submenu{
    width: 80%;
    margin: 0 auto;
    display:flex;
    justify-content: center;
    margin-bottom: 3%;
    text-align: center;
    border-radius: 5px;
}
.submenu li{
    background-color: rgb(243,243,243);
    padding: 1% 0;
    border-right: 2px solid rgb(237,237,237);
    
}
.submenu li:nth-of-type(1){
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.submenu li:nth-last-of-type(1){
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.submenu li:hover{
    opacity: 0.8;
    cursor: pointer;
}
.submenu li.checked{
    background-color: rgb(0,160,233);
    color: rgb(255,255,255);
}

.submenu6 li{
    padding: 1% 1%;
}

br.under896-block{
    display: none;
}
br.under1024-block{
    display: none;
}

/*----------------------*/
/*------header.php------*/
/*----------------------*/
header{
    overflow: hidden;
    /* padding-bottom: 10px; */
    box-shadow: 0px 5px 5px 0px rgba(200,200,200,0.5);
}

.header-wrapper{
    box-shadow: 0px 5px 5px 0px rgba(200,200,200,0.5);
}

/*========= 上部固定させるためのCSS ===============*/
/* #header{
    box-shadow: 0px 5px 5px 0px rgba(200,200,200,0.5);
} */

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
    position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
    width: 100%;
    background-color: rgb(255,255,255);
    box-shadow: 0px 5px 5px 0px rgba(200,200,200,0.5);
}

.header-top{
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 70px;/*高さ指定*/
    display: flex;
    justify-content: space-between;
    /* padding: 2% 0; */
}

/* 左側logo */
.header-top .header-left{
    display: flex;
    align-items: center;
}
.header-top .header-left img{
    width: 30px;
}

/* 右側メニュー */
.header-top nav{
    display: flex;
    align-items: center;
}
.header-top nav ul{
    display: flex;
}

.header-top nav ul li{
    width: 150px;
    text-align: center;
}

.header-top nav ul li a{
    display: block;
    padding: 5px 0;
    font-weight: bold;
}

.header-top nav ul li a:hover{
    border-bottom: 1.5px solid rgb(230,230,230);
    opacity: 0.6;
}

.header-top nav ul li .contact-menu{
    color: rgb(255,255,255);
    background-color: rgb(0,160,233);
    border-radius: 20px;
}


/*---------------------*/
/*---front-page.php---*/
/*---------------------*/
/* ファーストビュー */
#first-view{
    height: 100vh;
    padding: 0;
}

#first-view ul{
    display:flex;
    height: 100vh;
}

#first-view ul li{
    width: 50%;
}

#first-view ul li:nth-of-type(1){
    position: relative;
}

#first-view ul li:nth-of-type(2){
}

#first-view ul li img{
    vertical-align: bottom;
}

#first-view ul li h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 50px;
    white-space: nowrap;
}

#first-view ul li h1 span{
    color: rgb(230,0,18);
}

/* お知らせ */
#news{
    background-color: rgb(243,243,243);
    padding: 0;
    /* padding: 3% 0; */
}
#news .news-layer{
    display: flex;
}
#news .news-layer .news-title{
    width: 20%;
    background-color: rgb(220,220,220);
    position: relative;
    padding: 3% 0;
}

#news .news-layer .news-contents{
    width: 80%;
    padding: 3% 0;
}

#news .news-layer .news-title h2{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

#news .news-layer .news-contents ul{
    display: flex;
}

#news .news-layer .news-contents ul li{
    padding: 1% 0;
}

#news .news-layer .news-contents ul li:nth-of-type(1){
    width: 13%;
    margin-left: 3%;
}
#news .news-layer .news-contents ul li:nth-of-type(2){
    width: 17%;
}
#news .news-layer .news-contents ul li:nth-of-type(3){
    width: 70%;
}

/* お知らせカテゴリーの色 */
#news .news-layer .news-contents ul li.category div{
    width: 95%;
    margin: 0 auto;
    color: rgb(0,160,233);
    background-color: rgb(255,255,255);
    text-align: center;
}


/* ごあいさつ */
.greeting-text{
    width: 60%;
    margin: 0 auto;
}
.greeting-name-text{
    width: 60%;
    margin: 3% auto 0;
    text-align: right;
}
.paragraph-2,.paragraph-3,.paragraph-4{
    margin-bottom: 2%;
}

/* 取扱商品 */
#products-handled{
    background-color: rgb(220,233,247);
    padding-bottom: 0;
}
#products-handled ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#products-handled ul:nth-of-type(1){
    margin-bottom: 3%;
}

#products-handled ul li{
    width: 30%;
    margin-bottom: 3%;
}

#products-handled ul li a:hover{
    opacity: 0.6;
}

#products-handled ul li a img{
    border-radius: 50%;
}

#products-handled ul li div{
    margin-top: 2%;
    text-align: center;
    font-weight: bold;
}
#products-handled ul li span{
    color: rgb(0,160,233);
    font-weight: bold;
}

#products-handled img{
    vertical-align: bottom;
}

#products-handled .width70-percent{
    margin-bottom: 3%;
}

/* オンラインストア */
#onlinestore-introduction img:hover{
    opacity: 0.8;
}

/* 商品一覧 */
#product .wrapper{
    max-width: 896px;
    width: 95%;
    margin: 0 auto;
}

#product .sort-btns{
    display: flex;
    justify-content: center;
    /* padding: 1% 2%; */
    white-space: nowrap;
    max-width: 300px;
    width: 80%;
    margin: 0 auto 3%;  
    background-color: rgb(220,233,247);  
    box-shadow:0 8px 10px 1px rgba(0,0,0,0.05),0 3px 14px 2px rgba(0,0,0,0.05),0 5px 5px -3px rgba(0,0,0,0.05);
    border-radius: 5px;
}

#product .sort-btns li{
    padding: 1% 2%;
    width: 50%;
    text-align: center;
    font-weight: normal;
    box-sizing: content-box;
    color: rgb(60,60,60);
}

#product .sort-btns li:hover{
    /* background-color: rgb(255, 125, 125);
    color: rgb(255,255,255);
    font-weight: bold; */
    cursor: pointer;
}

#product .sort-btns li.checked{
    background-color: rgb(255, 125, 125);
    color: rgb(255,255,255);
    font-weight: bold;
}

#product .sort-btns li:nth-of-type(1){
    border-right: 2px solid rgb(240,240,240);
}

#product .product-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#product .product-list li{
    width: 30%;
    margin-bottom: 2%;
    background-color: rgb(255,255,255);
    border: 1px solid rgb(191, 179, 138);
    padding: 1.5% 2% 3%;
    box-sizing: border-box;
    box-shadow:0 8px 10px 1px rgba(0,0,0,0.05),0 3px 14px 2px rgba(0,0,0,0.05),0 5px 5px -3px rgba(0,0,0,0.05);
    text-align: center;
}
#product .product-list li a{display: block;}
#product .product-list li a:hover{
    opacity: 0.7;
}

#product .product-list li div.product-img{
    height: 20vw;
    position: relative;
}

#product .product-list li .product-img img{
    /* max-height: 200px; */
    display: block;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#product .product-list li div:not(.product-img){
    padding-top: 5%;
    border-top: 2px dashed rgb(230,230,230);
    text-align: left;
}

/* 送料が別途の旨を記載 */
#product .product-caution a{
    text-decoration: underline;
}

#product .product-caution a:hover{
    font-weight: bold;
}

/*-----------------------*/
/*-page-company_info.php-*/
/*-----------------------*/
#page-company-info section:not(.heading){
    padding-bottom: 5%;
}
.heading{
    padding: 0;
}
#page-company-info .list1{
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid rgb(112,112,112);
    padding: 1% 0;
}


#page-company-info .list1 li:nth-of-type(1){
    width: 25%;
    text-align: center;
    font-weight: bold;
}
#page-company-info .list1 li:nth-of-type(2){
    width: 75%;
}


/*---------------------*/
/*----page-about.php---*/
/*---------------------*/
#page-about .view-switch{
    /* display:none; */
}

/* -年間魚種リスト- */
#page-about #fish-list-layer ul{
    display: flex;
    padding: 1% 0;
    border-bottom: 1px solid rgb(219,219,219);
}
#page-about #fish-list-layer ul.separation{
    border-bottom:2px solid rgb(147,147,147);
}
#page-about #fish-list-layer ul.list-heading{
    color: rgb(0,160,233);
}
#page-about #fish-list-layer ul li{
    text-align: center;
}
#page-about #fish-list-layer ul li:nth-of-type(1){
    width: 10%;
}
#page-about #fish-list-layer ul li:nth-of-type(2),
#page-about #fish-list-layer ul li:nth-of-type(3),
#page-about #fish-list-layer ul li:nth-of-type(4){
    width: 30%;
}

/* -営業コンセプト- */
#sales-concept-layer .concept{
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
}

#sales-concept-layer .concept li{
    width: 48%;
}

#sales-concept-layer .concept li h3{
    margin-bottom: 5%;
}

#sales-concept-layer .concept img{
    border-radius: 40px;
}

#sales-concept-layer .concept img.step-icon{
    width: 100px;
    display: block;
    margin: 5% auto 10%;
}


#sales-concept-layer .appeal{
    margin-top: 3%;
    text-align: center;
    background-color: rgb(243,243,243);
    padding: 2% 3%;
    box-sizing: border-box;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* -凍結加工の流れ- */
#freeze-fish-layer h3{
    color: rgb(0,160,233);
    text-align: center;
    font-weight: normal;
    font-size: 1.1rem;
    margin-top: 2%;
}
#freeze-fish-layer ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#freeze-fish-layer ul li{
    width: 30%;
    padding-top: 2%;
}


#freeze-fish-layer ul li:nth-of-type(2){
    margin-top: 3%;
}
#freeze-fish-layer ul li:nth-of-type(3){
    margin-top: 6%;
}
#freeze-fish-layer ul li{
    position: relative;
}
#freeze-fish-layer ul li .step-icon{
    width: 45%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#freeze-fish-layer ul li .img-layer{
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgb(230,230,230);
}
#freeze-fish-layer ul li .img-layer img{
    vertical-align: bottom;
}

/* -カツオのタタキ- */
/* .katsuotataki-contents{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3%;
}

.katsuotataki-contents li{
    width: 48%;
}

.katsuotataki-contents li:nth-of-type(1){
    line-height: 2rem;
} */

/* -地産養殖魚- */
.popup-title{
    font-size: 1.2rem;
    margin-top: 5%;
    border-top: 2px solid rgb(200,200,200);
}
.lb-nav{
    /* padding: 2% 1%;
    border: 1px solid rgb(200,200,200); */
}
.popup-tag{
    display: flex;
    margin-top: 3%;
}
.popup-tag li{
    font-size: 1rem;
    width: 90px;
    border: 3px solid rgb(200,200,200);
    text-align: center;
}
.popup-tag li:not(.popup-tag li:nth-of-type(1)){
    margin-left: 3%;
}
.popup-text{
    font-size: 1rem;
    line-height: 1.5rem!important;
}
.lb-data .lb-caption{
    line-height: 2rem!important;
    color: rgb(51,51,51);
}

.lightboxOverlay{
    background-color: rgb(255,255,255)!important;
    opacity: 0.96!important;
}

.lb-data .lb-caption{
    font-weight: normal!important;
}

#page-about .catalog{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#page-about .catalog .catalog-products{
    width: 32%;
    padding: 1%;
    border: 1px solid rgb(191, 179, 138);
    border-radius: 10px;
    margin-bottom: 3%;
    box-sizing: border-box;
}

#page-about .catalog .catalog-title{
    font-weight: bold;
}

/* 産直タグ */
#page-about .catalog .popup-tag .direct-tag{
    border: 4px solid rgb(79, 129, 189);
    border-radius: 5px;
}
/* チルドタグ */
#page-about .catalog .popup-tag .chilled-tag{
    border: 4px solid rgb(79, 129, 189);
    border-radius: 5px;
}
/* 地産凍結 */
#page-about .catalog .popup-tag .local-freezin-tag{
    border: 4px solid rgb(112, 48, 160);
    border-radius: 5px;
}
/* 超低 */
#page-about .catalog .popup-tag .ultra-low-temp{
    border: 4px solid rgb(0, 32, 96);
    border-radius: 5px;
}
/* 国産凍結 */
#page-about .catalog .popup-tag .domestic-freeze-tag{
    border: 4px solid rgb(0, 176, 80);
    border-radius: 5px;
}

/* 凍結品 */
#page-about .catalog .popup-tag .frozen-product-tag{
    border: 4px solid rgb(46, 117, 182);
    border-radius: 5px;
}

#page-about .catalog .catalog-text{
    font-size: 0.9rem;
}



/* #page-about .catalog .catalog-products2{
    width: 30%;
} */


/* -地産天然魚介類- */


/* -地産鮮魚加工品- */



/*------------------*/
/*--page-works.php--*/
/*------------------*/
#page-works .view-switch:not(.view-switch:nth-of-type(1)){
    display: none;
}

#page-works ul{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
#page-works ul li{
    width: 48%;
}




/* お取引の流れ */
#transaction-step-layer ul{
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}


#transaction-step-layer ul li{
    box-sizing: border-box;
}

#transaction-step-layer ul li.transaction-contnts{width: 58%;}
#transaction-step-layer ul li.transaction-img{width: 38%;text-align: center;}

#transaction-step-layer ul li.transaction-contnts{
    background-color: rgb(220,232,247);
    border-radius: 10px;
    padding: 3% 2%;
    position: relative;
    z-index: 1;
}
#transaction-step-layer ul li.margin-setting{
    margin-bottom: 5%;
}
#transaction-step-layer ul li h3{
    font-size: 1.5vw;
    margin-bottom: 1%;
}
#transaction-step-layer ul li div{
    font-size: 1.2vw;
}

#transaction-step-layer .transaction-img img{
    border-radius: 50%;
    width: 20vw;
}

#transaction-step-layer .vertical-line{
    position: absolute;
    
}

#transaction-step-layer .step-icon{
    position: absolute;
    width: 5vw;
    z-index: 2;
}
#transaction-step-layer .step-icon1{
    top: 4.8%;
    right: 49.8%;
}
#transaction-step-layer .step-icon2{
    top: 29.0%;
    left: 0;

}
#transaction-step-layer .step-icon3{
    top: 53.7%;
    right: 49.8%;

}
#transaction-step-layer .step-icon4{
    top: 77.4%;
    left: 0;
}



/* 縦線 */
#transaction-step-layer .vertical-line{
    position: absolute;
    width: 0.4vw;
    z-index: 0;
}
#transaction-step-layer .vertical-line1{
    top: 15%;
    right: 50%;
}
#transaction-step-layer .vertical-line2{
    top: 40%;
    right: 50%;
}
#transaction-step-layer .vertical-line3{
    top: 65%;
    right: 50%;
}

/* 仕入れを希望される業者様へ */
#to-the-trader-layer ul{
    align-items:center;
}



/* こんな悩みありませんか？ */
#worries-layer ul{
    align-items:center;
}
#worries-layer ul.list-design1{
    margin-bottom: 7%;
}
#worries-layer ul li .worries{
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 7%;
    line-height: 2rem;
}


#worries-layer ul li .classify{
    color: rgb(0,160,233);
}

/*------------------*/
/*-page-contact.php-*/
/*------------------*/
.contact-h2{
    border-top: 1.5px solid rgb(243,243,243);
    border-bottom: 1.5px solid rgb(243,243,243);
    color: rgb(0,149,238);
    padding: 0.5% 0;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2%;
}
/* お問い合わせ */
.contact-notes .notes-detail{
    text-align: center;
    font-size: 1rem;
}
/* 個人情報の取り扱いについて */
.contact-notes .privacy{
    margin-top: 3%;
    background-color: rgb(243,243,243);
    padding: 3% 5%;
    box-sizing: border-box;
    border-radius: 15px;
    font-size: 1rem;
}
.contact-notes .privacy h2{
    font-size: 1.1rem;
    text-align: center;
}

/* -電話でのお問い合わせ- */
.contact-tel-detail{
    text-align: center;
}

.contact-tel-detail .tel-num{
    font-size: 2.3rem;
    font-weight: bold;
}

.contact-tel-detail .business-hours{
    background-color: rgb(243,243,243);
    border-radius: 5px;
    font-size: 1rem;
    padding: 1% 0;
}

/* -メールでのお問い合わせ- */
.contact-form-layer input,
.contact-form-layer textarea{
    padding: 1%;
    border-radius: 5px;
    border: 1px solid rgb(190,190,190);
    width: 100%;
    font-size: 1.1rem;
}
.contact-form-layer input[name="postal_code"]{
    width: 100px;
    margin-bottom: 1%;
}

.contact-form-layer .contact-items{
    display: flex;
    padding: 2% 0;
    border-bottom: 1px solid rgb(243,243,243);
}
.contact-form-layer .contact-items .item-name{
    width: 35%;
}
.contact-form-layer .contact-items .required{
    width: 10%;
}
.contact-form-layer .contact-items .required span{
    background-color: rgb(230,0,20);
    color: rgb(255,255,255);
    border-radius: 5px;
    padding: 0 5%;
}
.contact-form-layer .contact-items .item-value{
    width: 55%;
}

/* ご住所(郵便番号) */
.contact-form-layer .contact-items.postal-code,
.contact-form-layer .contact-items.email{
    padding-bottom: 0;
    border-bottom: none;
}

/* ご住所（住所） */
.contact-form-layer .contact-items.address,
.contact-form-layer .contact-items.email-confirm{
    padding-top: 1%;
}

.contact-form-layer .contact-items.contents{
    border-bottom: none;
}

/* 送信ボタン */
.submit-btn input[type="submit"]{
    width: 100%;
    padding: 1% 0;
    font-size: 1.1rem;
    border-radius: 10px;
    background-color: rgb(0,160,234);
    color: rgb(255,255,255);
}

/*----------------*/
/*---footer.php---*/
/*----------------*/
#footer{
   text-align: center;
   background-color: rgb(0,80,130);
   color: rgb(255,255,255);
   padding: 3% 0;
   font-size: 1rem;
}

/* 会社情報 */
#footer a{
    color: rgb(255,255,255);
}

#footer ul{
    display: flex;
}


#footer ul li:nth-of-type(1){
    width: 24%;
    text-align: left;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
#footer ul li:nth-of-type(2){
    width: 38%;
    text-align: left;
}
#footer ul li:nth-of-type(3){
    width: 38%;
    display: flex;
    justify-content: space-around;
}

#footer ul li:nth-of-type(1) img{
    width: 40px;
    vertical-align: sub;
}
#footer .privacy-btn a{text-decoration: underline;}
#footer .contact-btn{white-space: nowrap;}
#footer .contact-btn a{
    border: 1px solid rgb(255,255,255);
    border-radius: 20px;
    padding: 5px 10px;
    white-space: nowrap;
}

/* copyright */
#footer .copyright{
    text-align: left;
    margin-top: 3%;
}


@media screen and (max-width: 1280px){
    /*---------------*/
    /*-page-work.php-*/
    /*---------------*/
    #page-works .width60-percent{
        width: 80%;
    }

    /* お取引きの流れ */
    #transaction-step-layer ul li h3{
        font-size: 2vw;
    }
    #transaction-step-layer ul li div{
        font-size: 1.5vw;
    }


    #transaction-step-layer .step-icon{
        position: absolute;
        width: 5vw;
        z-index: 2;
    }
    #transaction-step-layer .step-icon1{
        top: 3.5%;
        right: 51.8%;
    }
    #transaction-step-layer .step-icon2{
        top: 27.1%;
    
    }
    #transaction-step-layer .step-icon3{
        top: 52.0%;
        right: 51.8%;
    }
    #transaction-step-layer .step-icon4{
        top: 75.5%;
    }
    
    
    /*---------------*/
    /*-page-contact.php-*/
    /*---------------*/
    #page-contact .width60-percent{
        width: 85%;
    }
    
    

    /*----------------*/
    /*-front-page.php-*/
    /*----------------*/
    #footer{
        font-size: 1.4vw;
    }
    #footer ul li:nth-of-type(1){
        font-size: 1.75vw;
    }
    #footer ul li:nth-of-type(1) img{
        width: 3vw;
    }

    /*----------------*/
    /*-page-about.php-*/
    /*----------------*/
    #sales-concept-layer .width70-percent{
        width:85%;
    }
    #sales-concept-layer .width80-percent{
        width:90%;
    }
}

@media screen and (max-width: 1024px){
    /*1024pxまでの処理*/

    /*----------------*/
    /* -----共通----- */
    /*----------------*/
    .submenu.submenu3{
        width: 95%;
    }
    .submenu.submenu6{
        width: 95%;
    }
    br.under1024-block{
        display: block;
    }

    /*----------------*/
    /*-front-page.php-*/
    /*----------------*/
    /* -お知らせ- */
    #news .news-layer .news-contents ul{
        flex-wrap: wrap;
    }
    #news .news-layer .news-contents ul li.category{
        width: 100px;
        padding-bottom: 0;
    }
    #news .news-layer .news-contents ul li.news-date{
        width: 200px;
        margin-left: 3%;
        padding-bottom: 0;
    }
    #news .news-layer .news-contents ul li.news-detail{
        width: 100%;
        margin-left: 3%;
        padding-top: 0;
    }

    

    
    /* -取扱商品- */
    #products-handled .width70-percent{
        width: 85%;
    }



    /*----------------*/
    /*-page-about.php-*/
    /*----------------*/
    #sales-concept-layer .width70-percent{
        width:90%;
    }
    #sales-concept-layer .width80-percent{
        width:95%;
    }


    /*----------------*/
    /*---footer.php---*/
    /*----------------*/
    #footer{
        font-size: 1.7vw;
    }
    
    #footer .width80-percent{
        width: 95%;
    }

    #footer ul li:nth-of-type(1){
        font-size: 2vw;
    }
}



@media screen and (max-width: 896px){
    /* 896pxまでの処理 */
    /*----------------*/
    /*------共通------*/
    /*----------------*/
    br.under896-block{
        display: block;
    }
    .submenu.submenu3{
        font-size: 3vw;
    }

    .submenu.submenu6{
        flex-wrap: wrap;
        width: 100%;
    }
    .submenu.submenu6 li{
        width: 30%;
        box-sizing: border-box;
    }
    .submenu.submenu6 li{
        /* margin-bottom: 3%; */

        padding: 3% 1%;
        border-bottom: 2px solid rgb(237,237,237);
    }
    .submenu.submenu6 li:nth-of-type(1){
        border-bottom-left-radius: 0px;
    }
    .submenu.submenu6 li:nth-of-type(3){
        border-top-right-radius: 10px;
    }
    .submenu.submenu6 li:nth-of-type(4){
        border-bottom-left-radius: 10px;
    }
    .submenu.submenu6 li:nth-last-of-type(1){
        border-top-right-radius: 0px;
    }



    

    /*----------------*/
    /*---header.php---*/
    /*----------------*/
    .header-top .header-left{
        justify-content: center;
        font-size: 1.5rem;
    }
    .header-top .header-left img{
        width: 40px;
    }

    .header-top nav ul li:nth-last-of-type(1){
        margin-top: 3%;
    }
    .header-top nav ul li .contact-menu{
        width: 50%;
        margin: 0 auto;
        border-radius: 30px;
        padding: 2% 0;
    }


    /* ハンバーガーメニュー */
    .header-top div h1 span{
        font-size: 1.2rem;
    }

    .header-top div{
        width: 100%;
    }

    .header-top .menu ul li a span{
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: none;
        transform: none;
        width: 100%;
        line-height: 1.5rem;
    }

    /*トグルボタンが押されたときに付与するクラス*/
    nav.menu.active{
        transform: translateX(0%);
    }

    /*ナビメニューのスタイルを指定*/
    nav.menu{
        position: fixed; /*表示位置を固定*/
        z-index: 1000; /*重ね順を変更*/
        top: 0; /*表示位置を指定*/
        left: 0; /*表示位置を指定*/
        background: #fff;/*背景を白にする*/
        color: #000; /*文字色を黒にする*/
        text-align: center; /*テキストを中央揃え*/
        width: 100%; /*全幅表示*/
        transform: translateX(100%); /*ナビを上に隠す*/
        transition: all 0.6s; /*アニメーションの時間を指定*/
        height: 100vh!important;
        /* width: auto!important; */
    }

    nav.menu ul{
        background: rgb(245,245,245); /*背景をグレーにする*/
        width: 100%;
        height: 100vh;
        margin: 0 auto;
        padding: 0;
        display: block;
        flex-direction: column;
        position: static!important;
        left: auto!important;
        top: auto!important;
        -webkit-transform: none!important;
        transform: none!important;
        justify-content: flex-start!important;
        padding-top: 60px!important;
        overflow: scroll;
    }

    nav.menu ul li{
        font-size: 1.1rem;
        list-style-type: none;
        padding: 0;
        width: 100%!important;
        border-bottom: 1px dotted rgb(200,200,200);
    }

    nav.menu ul li:last-child{
        padding-bottom: 0;
        border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
    }

    nav.menu ul li a{
        display: block; /*クリックできる領域を広げる*/
        /* color: rgb(255,255,255); */
        color: rgb(60,60,60);
        padding: 1em 0;
        width: 100%;
    }

    .header-top .menu ul li a:hover{
        background-color: rgba(255,255,255,0.2);
    }

    nav.menu ul li a span{
        position: static!important;
    }

    /*トグルボタンのスタイルを指定*/
    .Toggle {
        display: block;
        position: fixed;    /* bodyに対しての絶対位置指定 */
        right: 13px;
        top: 12px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        z-index: 1001;
    }

    .Toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 3px #000;
        -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
        -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
        transition: .35s ease-in-out;			/*変化の速度を指定*/
        left: 6px;
    }

    .Toggle span:nth-child(1) {
        top: 12px;
    }

    .Toggle span:nth-child(2) {
        top: 23px;
    }

    .Toggle span:nth-child(3) {
        top: 34px;
    }

    /* 最初のspanをマイナス45度に */
    .Toggle.active span:nth-child(1) {
        top: 18px;
        left: 6px;
        /* border-bottom: solid 3px rgb(255,255,255); */
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* 2番目と3番目のspanを45度に */
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
        top: 18px;
        /* border-bottom: solid 3px rgb(255,255,255); */
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /*---------------------*/
    /*----front-page.ph#page-about .catalog .catalog-productsp---*/
    /*---------------------*/    
    /* -トップ- */
    #first-view ul li h1{
        font-size: 5vw;
    }
    #first-view,#first-view ul{
        height: 60vw;
    }

    /* お知らせ */
    #news .news-layer{
        flex-direction: column;
    }
    #news .news-layer .news-contents{
        width: 100%;
    }
    #news .news-layer .news-title{
        width: 50%;
        margin: 3% auto 0;
        position: relative;
        padding: 0;
    }
    #news .news-layer .news-title h2{
        position: static;
        transform: none;
        -webkit-transform: none;
        padding: 0;
    }
   
    /* -ごあいさつ- */
    .greeting-text,.greeting-name-text{
        width: 85%;
    }

    /* 取扱商品 */
    #products-handled{
        /* font-size: 3vw; */
    }
    #products-handled .width70-percent{
        width: 90%;
    }
    

    /* -オンラインストア- */
    /* 商品紹介 */
    #product .product-list li{
        width: 48%;
    }
    #product .product-list li div.product-img{
        height: 40vw;   
    }


    #product.width70-percent{
        width: 80%;
    }
    


    /*---------------------*/
    /*----page-works.php---*/
    /*---------------------*/
    /* 年間魚種リスト */
    #fish-list-layer .width70-percent{
        width: 90%;
    }


    /* お取引の流れ */
    #transaction-step-layer ul li h3{
        font-size: 2.5vw;
    }

    #transaction-step-layer ul li div{
        font-size: 2vw;
    }

    #transaction-step-layer .step-icon{
        width: 7vw;
    }
    #transaction-step-layer .step-icon1{
        top: 0.9%;
        right: 49.2%;
    }
    #transaction-step-layer .step-icon2{
        top: 23.2%;
    
    }
    #transaction-step-layer .step-icon3{
        top: 46.8%;
        right: 49.2%;
    }
    #transaction-step-layer .step-icon4{
        top: 69.5%;
    }


    #transaction-step-layer ul li.margin-setting{
        margin-bottom: 7%;
    }

    

    
    /* -仕入れを希望される業者様へ- */
    #to-the-trader-layer ul{
        flex-direction: column;
    }
    #to-the-trader-layer ul li{width: 100%;}
    #to-the-trader-layer ul li:nth-of-type(1){
        order: 2;
    }
    #to-the-trader-layer ul li:nth-of-type(2){
        order: 1;
        display: flex;
        justify-content: space-between;
    }
    #to-the-trader-layer ul li:nth-of-type(2) div{
        width: 48%;
    }

    /* -こんな悩みありませんか？- */
    #worries-layer ul{
        flex-direction: column;
    }
    #worries-layer ul li{
        width: 100%;
    }
    #worries-layer ul li .worries{
        margin: 2% 0;
    }
    #worries-layer ul.list-design1 li:nth-of-type(1){
        order: 2;
    }
    #worries-layer ul.list-design1 li:nth-of-type(2){
        order: 1;
        display: flex;
        justify-content: space-between;
    }
    #worries-layer ul.list-design1 li:nth-of-type(2) img{
        width: 48%;
    }

    #worries-layer ul.list-design2 li:nth-of-type(1){
        display: flex;
        justify-content: space-between;
    }
    #worries-layer ul.list-design2 li:nth-of-type(1) img{
        width: 48%;
    }

    /*---------------------*/
    /*----page-about.php---*/
    /*---------------------*/
    /* 営業コンセプト */
    #sales-concept-layer .width70-percent{
        width: 75%;
    }
    #sales-concept-layer .concept{
        flex-direction: column;
    }
    #sales-concept-layer .concept li{
        width: 100%;
    }

    #sales-concept-layer .concept:nth-of-type(2) li:nth-of-type(1){order: 2;}
    #sales-concept-layer .concept:nth-of-type(2) li:nth-of-type(2){order: 1;}
    #sales-concept-layer .concept:nth-of-type(4) li:nth-of-type(1){order: 2;}
    #sales-concept-layer .concept:nth-of-type(4) li:nth-of-type(2){order: 1;}


    /* 冷凍加工の流れ */
    #freeze-fish-layer .width80-percent{
        width: 80%;
    }

    #freeze-fish-layer ul{
        justify-content: space-between;
    }

    #freeze-fish-layer ul li{
        width: 45%;
        box-sizing: border-box;
    }

    #freeze-fish-layer ul li:nth-of-type(3){
        margin-top: 1%;
    }

    #freeze-fish-layer ul li:nth-of-type(4){
        margin-top:4%;
    }

    #freeze-fish-layer ul li:nth-of-type(5){
        margin: 1%;
    }
    #freeze-fish-layer ul li:nth-of-type(6){
        margin: 4%;
    }
    #freeze-fish-layer ul li:nth-of-type(7){
        margin: 1%;
    }
    #freeze-fish-layer ul li:nth-of-type(8){
        margin: 4%;
    }

    /*-----------------------*/
    /*-page-company_info.php-*/
    /*-----------------------*/
    #page-company-info section{
        padding-bottom: 10%;
    }
    #page-company-info .width80-percent{
        width: 95%;
    }
    #page-company-info .list1{
        flex-direction: column;
        padding: 2% 0;
    }

    #page-company-info .list1 li:nth-of-type(1),
    #page-company-info .list1 li:nth-of-type(2){
        width: 95%;
        margin: 0 auto;
        text-align: left;
    }
    #page-company-info .list1 li:nth-of-type(1){
        margin-bottom: 1%;
    }

    /*----------------------*/
    /*---page-contact.php---*/
    /*----------------------*/
    #page-contact .width60-percent{
        width: 85%;
    }

    .contact-notes .notes-detail{
        text-align: left;
    }


    /*----------------*/
    /*---footer.php---*/
    /*----------------*/
    #footer{
        font-size: 2.7vw;
    }
    #footer ul{
        flex-wrap: wrap;
    }
    #footer ul li:nth-of-type(1){
        font-size: 3.2vw;
        justify-content: center;
        width: 40%;
    }
    #footer ul li:nth-of-type(2){
        width: 60%;
        text-align: center;
    }
    #footer ul li:nth-of-type(3){
        width: 100%;
        margin: 3% auto 0;
    }

    #footer ul li:nth-of-type(1) img{
        width: 4vw;
    }

    #footer .copyright{
        text-align: center;
    }
}


@media screen and (max-width: 768px){
    /*----------------------*/
    /*---page-contact.php---*/
    /*----------------------*/
    #page-contact .width60-percent{
        width: 95%;
    }


    /*----------------------*/
    /*----page-works.php----*/
    /*----------------------*/
    #transaction-step-layer .width60-percent{
        width: 95%;
    }
    #transaction-step-layer ul li h3{font-size: 3.5vw;}
    #transaction-step-layer ul li div{font-size: 3vw;}
    #transaction-step-layer ul li.margin-setting{
        margin-bottom: 0;
    }
    #transaction-step-layer ul li.transaction-contnts{
        margin-bottom: 7%;
    }
    #transaction-step-layer ul li.transaction-img{
        margin-bottom: 7%;
    }
    #transaction-step-layer .vertical-line{
        width: 1vw;
    }

    #transaction-step-layer .vertical-line1{
        top: 10%;
    }
    #transaction-step-layer .vertical-line2{
        top: 35%;
    }
    #transaction-step-layer .vertical-line3{
        top: 50%;
    }


    #transaction-step-layer .transaction-img img{
        width: 30vw;
    }

    #transaction-step-layer .step-icon{
        width: 10vw;
    }
    #transaction-step-layer .step-icon1{
        top: 1.5%;
        right: 47.6%;
    }
    #transaction-step-layer .step-icon2{
        top: 25.7%;
    }
    #transaction-step-layer .step-icon3{
        top: 47%;
        right: 47.6%;
    }
    #transaction-step-layer .step-icon4{
        top: 69.5%;
    }

}

@media screen and (max-width: 480px){
    /*--------------------*/
    /*--------共通--------*/
    /*--------------------*/
    html,body{
        font-size:3.33333vw;
    }

    /*----------------*/
    /*---header.php---*/
    /*----------------*/
    .header-top .header-left img{
        width: 7vw;
    }

    /*---------------------*/
    /*----page-works.php---*/
    /*---------------------*/
    #page-works .width60-percent{
        width: 90%;
    }


    /* お取引の流れ */
    #transaction-step-layer ul li h3{font-size: 4.3vw;}
    #transaction-step-layer ul li div{font-size: 3.8vw;}
    #transaction-step-layer ul li.margin-setting{
        margin-bottom: 0;
    }
    #transaction-step-layer ul li.transaction-contnts{
        margin-bottom: 7%;
    }
    #transaction-step-layer ul li.transaction-img{
        margin-bottom: 7%;
    }
    #transaction-step-layer .vertical-line{
        width: 1vw;
    }

    #transaction-step-layer .vertical-line2{
        top: 30%;
    }


    #transaction-step-layer .transaction-img img{
        width: 30vw;
    }

    #transaction-step-layer .step-icon{
        width: 10vw;
    }
    #transaction-step-layer .step-icon1{
        top: -1%;
        right: 46.6%;
    }
    #transaction-step-layer .step-icon2{
        top: 20.9%;
    }
    #transaction-step-layer .step-icon3{
        top: 37.5%;
        right: 46.6%;
    }
    #transaction-step-layer .step-icon4{
        top: 61.1%;
    }

    /*---------------------*/
    /*----front-page.php---*/
    /*---------------------*/
    /* -トップ- */
    #first-view ul li h1{
        font-size: 6vw;
    }

    /* -お知らせ- */
    #news .width80-percent{
        width: 95%;
    }
    #news .news-layer .news-contents ul li.category{
        width: 20%;
        margin: 0;
    }
    #news .news-layer .news-contents ul li.news-date{
        width: 30%;
        margin: 0;
    }
    #news .news-layer .news-contents ul li.news-detail{
        margin: 0;
    }
    

    /* 取扱商品 */
    #products-handled ul li{
        width: 48%;
    }
    #products-handled ul li:nth-of-type(1),
    #products-handled ul li:nth-of-type(2),
    #products-handled ul li:nth-of-type(3),
    #products-handled ul li:nth-of-type(4){
        margin-bottom: 3%;
    }

    /* -オンラインストア- */
    #onlinestore-introduction .width70-percent{
        width: 95%;
    }
    #onlinestore-introduction .width80-percent{
        width: 95%;
    }

    /*---------------------*/
    /*----page-about.php---*/
    /*---------------------*/
    /* 魚種リスト */
    #fish-list-layer .width70-percent{
        width: 95%;
    }
    /* カツオのタタキ */
    /* #katsuo-tataki-layer .katsuotataki-contents{
        flex-wrap: wrap;
    }
    #katsuo-tataki-layer .width70-percent{
        width: 90%;
    }
    #katsuo-tataki-layer .width80-percent{
        width: 95%;
    } */
    

    .contact-form-layer .contact-items .required span{
        padding: 5% 10%;
    }


    /*---------------------*/
    /*----page-about.php----*/
    /*---------------------*/
    #page-about .width70-percent{
        width: 95%;
    }
    #page-about .catalog .catalog-products{
        width: 48%;
    }

    /* 営業商品コンセプト */
    #sales-concept-layer .concept img.step-icon{
        width: 15vw;
        margin: 5% auto 3%;
    }

    /* 冷凍加工の流れ */
    #freeze-fish-layer .width80-percent{
        width: 95%;
    }
    
    
    /* #page-about .catalog .catalog-products2{
        width: 48%;
    } */

    /*----------------*/
    /*---footer.php---*/
    /*----------------*/
    #footer{
        font-size: 3.5vw;
    }
    #footer ul{
        flex-direction: column;
        align-items: center;
    }

    #footer ul li:nth-of-type(1){
        width: 100%;
        font-size: 5vw;
    }
    #footer ul li:nth-of-type(2){
        width: 100%;
        margin-top: 3%;
    }
    #footer ul li:nth-of-type(3){

    }

    #footer ul li:nth-of-type(1) img{
        width: 6vw;
    }

    #footer .copyright{
        font-size: 3.2vw;
    }
}