@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
   
    font-size: 15px;
    background-color: #fffffc;
}


h1,h2{
   font-family: Georgia, 'Times New Roman', Times, serif;
}

/* 
ヘッダー
*/
.header{
    display: flex;
    position: fixed;
    background-color: #0f2350;
    width: 100%;
    height: 120px;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    top: 0;
    left: 0;
 }

 #header_shop{
    width: 38.5%;
    padding-left: 7%;
}

#header_shop a{
   font-size: 21px;
   font-family: Georgia,"Times New Roman", Times, serif;
   color: whitesmoke;
   text-decoration: none;
   font-weight: bold;
   transition: border-color .25s;  
}

#header_shop a:hover{
   color:rgb(230, 143, 68);
}

.header_nav{
    width: 23%;
    font-family: Georgia,"Times New Roman", Times, serif;   
 }
 
 .header_navlist{
    text-align: center;
 }
 
 .header_navitem{
    font-size: 17px;
    display: flex;
    white-space: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
 }
 
 .header_navitem a{
    font-family: Georgia,"Times New Roman", Times, serif;
    display: block;
    color: whitesmoke;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
 }
 
 .header_navitem a:hover{
    color: aliceblue;
    border-bottom: 2px solid slategrey;
 }

 .header_nav li{
    list-style: none;   
 }
 
 .header_navlist a{
    color: whitesmoke;
 }
 
 #header_logo{
    width: 38.5%;
    text-align: right;
    margin-right: 7%;
 }
 
 #header_logo img{
    width: 13%;
 }
 
 /* 
ハンバーガーメニュー_PC非表示
*/
#toggle_box{
    position: fixed;
    display: block;
    z-index: 3;
    right: 13px;
    top:13px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    text-align: center;
 }
 
 .nav_2{
    display: none;
 }

 /* ↓モバイル専用_ハンバーガーメニュー↓ */
@media only screen and (max-width: 768px) {

   /* 
   ハンバーガーボタン
   */
     #toggle_box{
         position: relative;
         z-index: 3;
         right: 0;
         top: 0;
         width: 45px;
         height: 45px;
         cursor: pointer;
         /* -align: center; */
     }
     
     #toggle_box span{
         position: absolute;
         width: 30px;
         height: 2px;
         left: 6px;
         background: #696969;
         -webkit-transition: 0.4s ease-in-out;
         -moz-transition : 0.4s ease-in-out;
         transition: 0.4s ease-in-out;
     }
     
     #toggle_box span:nth-child(1){
         top:10px;
     }
     #toggle_box span:nth-child(2){
         top:20px;
     }
     #toggle_box span:nth-child(3){
         top:30px;
     }
     
     /* 
     ハンバーガーナビが開いている時のボタン
      */
     #toggle_box.active span:nth-child(1){
       top: 16px;
       left: 6px;
       background:#c0c0c0;
       -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
       transform: rotate(-45deg);
   }
   
   #toggle_box.active span:nth-child(2),
   #toggle_box.active span:nth-child(3){
       top:16px;
       background:#c0c0c0;
       -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
       transform: rotate(45deg);
   }
   
   .nav_2{
       display: block;
   }
   
   /* 
   ハンバーガーメニュー 部分
   */
   #toggle_menu .nav_2{
       position: fixed;
       z-index: 2;
       top: -490px;
       left:0;
       background-color: #0f2350;
       width: 100%;
       height: 490px;
       opacity: 0.88;
       padding-top: 21%;
   } 
   
   #toggle_menu .nav_2 li{
       list-style: none;
       width: 29%;
       white-space: nowrap;
       transition: .4s all;
       margin: 0 auto;
       padding-top: 8%;
   }
   
   #toggle_menu .nav_2 li:last-child{
       padding-bottom: 0;
   }
   #toggle_menu .nav_2 li:hover{
       background:#000;
   }
   
   #toggle_menu .nav_2 li a{
       color: #eee9e6;
       font-size: 1.3rem;
       text-decoration: none;
       margin: 0;
       padding-top: 1%; 
   }

   #toggle_menu .nav_2 li a:hover{
      background-color: #000;
  }

  
   /* このIDをjQueryで付与・削除する */
   #toggle_menu.nav_2.activ{
       opacity: 100;
   }
   
   .header{
      width: 100%;
      height: 80px;
   }

   .header_navlist{
      display: none;
   }

   #header_logo{
      display: none;
   }
}
   

 /* 
トップスライドショー
 */
 .topview{
   width: 100%;
   height: auto;
   position: relative;
}

.slide{
   position:relative;
   width: 100%;
   height: 520px;
}

.slide img{
   width:90%;
   max-width: 100%;
   max-height: 520px;
   position:absolute;
   margin: 11% 5%;
   top:0;
   opacity: 0;
   transition: 5s;
   object-fit: cover;
  
}

.slide img.show{
   opacity:1;
}

@media screen and (max-width:768px) {
   #js_slide.slide{
       width: 100%;
       height: 185px;
       margin: 0;
       padding: 0;
   } 
   #js_slide img{
      width: 100%;
      margin: 23% 0 0 0;
   }
}

/* 
アイテムpendant
*/
.section{
   background-color:#fffffc;
}

.popup{
   margin: 0 5%;
}

.section_artpen img{
   width: 80%;
   margin: 11% 10% 0 10%;
}

.popup_line2{
   margin-top: 3%;
}

.popup_head,.popup_head2{
   margin: 3% 0;
   padding-left: 5%;
}

#item_pen{
   white-space: wrap;  
   width: 100%;
   margin: 3% 0 6% 0;
}

.popup ul{
   display: flex;
   flex-wrap: wrap;  
   width: 100%;
   padding: 0; 
   list-style: none;
   cursor: pointer;
}

.popup li{
   width: 20%;
   padding: 1%; 
}

.popup li img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 13%;
}

/*
 オンラインショップ画像
  */
.shop_mark{
   width: 100%;
}

.shop_mark img{
   width: 33.333%;
   margin-left: 33.333%;
   transition: transform 0.3s ease-out;
}

.shop_mark img:hover {
   transform: rotate(-10deg);
 }

/* 
アイテムring
*/
#item_rin{
   white-space: wrap;  
   width: 100%;
   margin: 3% 0 6% 0;

}

.under_line{
   margin-top: 3%;
}

/* オーダーコメント */
.order_comment {
  display: flex;
}

.order_comment h2{
   font-size: 1.5rem;
   padding: 3% 0 3% 15%;
}

.order_comment p{
   padding: 3.3% 0 3% 3%;
}

@media screen and (max-width:768px) {
   .popup{
      margin: 0 3%;
   }
   .popup li{
      width: 50%;
      padding: 1.5%; 
  }
   .popup li img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3%;
  } 

  /*
 オンラインショップ画像
  */
   .shop_mark{
      width: 100%;
      
   }
   .shop_mark img{
      width: 100%;
      margin: 0;
   }

   /* オーダーコメント */
   .order_comment {
      display: block;
   }
   
   .order_comment h2{
      font-size: 1.2rem;
      margin: 0;
      padding: 5% 0 3% 6%;
   }
   
   .order_comment p{
      font-size: 0.95rem;
      padding: 0 4.5%;
      }

   }
/*
フッター 
*/
footer{
    width: 100%;
    height: 290px;
    background-color: #0f2350;
 }
 
 .footer_continer{
    display: flex;
 }
 
 .footer_logo{
    width: 30%;
 }
 
 .footer_logo img{
    width: 21%;
    margin: 11% 15%;
 }
 
 .footer_nav{
    display: flex;
    width: 30%;
    margin: 5% 0;
 }
 
 .footer_nav ul{
    list-style: none;
 }
  
 .footer_nav ul li a{
    color: whitesmoke;
    text-decoration:none;
 }
 
 .footer_shop{
    width: 40%;
    padding-left: 24%;
 }
 
 .footer_shop a{
    color: whitesmoke;
    text-decoration:none;
 }
 
 /* 
  フッターコピーライト
 */
 
 .footer_copy{
    color: whitesmoke;
    font-size: 13px;
 }
 
 .footer_copy p{
    text-align: right;
    margin-bottom: 3%;
    padding-right: 5%;
 }

 @media screen and (max-width:768px){
   .footer{
      width: 100%;
      height: 190px;
   }
   .footer_continer{
      width: 100%;
   }
   .footer_logo{
      width: 20%;
   }
   .footer_logo img{
      width: 100%;
      margin: 24% 0 0 24%;
      padding: 0%;
   }
   .footer_nav{
      width: 70%;
      margin: 11% 0 0 16%;
      padding: 0;
   }
   .footer_item{
      font-size: 0.9rem;
      margin: 0 0 0 3%;
   }
   .footer_shop{
      font-size: 0.9rem;
      padding-left: 11%;
   }
   .footer_copy{
      font-size: 0.8rem;
   }
   .footer_copy p{
      text-align: center;
      padding: 8% 0 1% 0;
   }
 }
 
  
 