@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;
   }
}
   


.button{
   display: inline-block;
   color: #fff;
   font-weight: bold;
   background-color: #333;
   text-align: center;
   padding: 1% 2%;
   text-decoration: none;
   border-radius: 5px;
   box-shadow: 3px 3px 0 #bbb;
   transition: box-shadow .29s;
}
.button:hover{
    color:#c0c0c0;
    box-shadow: 0 0 0 #bbb;
}


/* 
contents
 */
#contact{
   width: 100%;
   background-color:#e7e6e6;
}

.contact_title{
   text-align: center;
   padding-top: 13%;
}

.form{
   padding: 8% 0;
}

/* 
.select.input.radio.textarea
 */
 .select{
   border-radius: 5px;
   padding: 10px;
   border: 1px solid #ccc;
   min-width: 500px;
   cursor: pointer;
 }

input{
   min-width: 120px;
   border: 0.1px solid #ccc;
   border-radius: 1%;
   padding: 1% 1.5%; 
}

.input{
   min-width: 500px;
}

.radio{
   margin: 0 10px;
}

.radio input.input_2{
   cursor: pointer;
   min-width: 30px;
   padding-left: 3%;
}

.textarea{
   border-radius: 5px;
   padding: 10px;
   border: 1px solid #ccc;
   min-width: 500px;
   min-height: 100px;
}

@media screen and (max-width:768px) {
   .contact_title{
      padding-top: 33%;
   }
    .select,
    .input,
    .textarea{
        width: 100%;
        min-width: auto;
    }
    
}

/* 
form 
*/

.form_table{
   margin: 0 auto;
}

.form_table th{
   padding: 10px;
   text-align: left;
}

.form_table td{
   padding: 10px;
}

.form_button{
   min-width: 50px;
   text-align: center;
   white-space: nowrap;
   margin: 5% 0;
}

.error_msg{
   font-size: 14px;
   color: red;
}

.button_2{
   font-weight: lighter;
   color: #fff;
   background-color: #333;
   cursor: pointer;
   margin-left: 3%;
   padding: 0.5% 1.5%;
}

.button_2:hover{
   color: #333;
   background-color: #fff;
}


@media screen and (max-width:768px) {
   .form_table,
   .form_table tr,
   .form_table th,
   .form_table td,
   .form_table tbody{
      display: block;
      margin: 0 1%;
    }

   .form_button{
      margin: 0;
      padding: 5% 0;
      min-width: auto;
    }
}








/*
フッター 
*/
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;
   }
 }
 
  
 