
.container{
width: 1200px;
margin: 0 auto;
}


.header{
padding:20px 0px 10px; 
width: 100%;
margin: 0 auto;
}



.topbar{
width: 100%;
height: 100px;
position: fixed;
top: 0;
left: 0;
z-index: 2;
background-color: rgba(255,255,255, 255);
}

.topbar-left{
position:  fixed;
top: 5px;
left: 4%;
z-index: 2;
}

.topbar-left img{
width: 90px;
height: 90px;
}
.topbar-left h1{
font-size: 28px;
font-weight:bolder;
padding-left:0px ;
color: #83050b;
}

/*logo  */
.lo{
  text-decoration: none;
  font-size: 28px;
  font-weight:bolder;
  padding-left:0px ;
  color: #83050b;
  }


.topbar-left ul{
display: flex;
justify-content: space-between;
list-style-type: none;
align-items: center; 
}


@media screen and (max-width: 960px) {
  .topbar-right{
    display: none;
  }
  .topbar-left img{
    padding-top: 5px;
    width: 50px;
    height: 50px;
    }

    .topbar{
      height: 70px;
      }
      .topbar-left h1{
        font-size: 24px;
        padding-left: 10px;
        }

        .lo{
          font-size: 24px;
          padding-left: 10px;
          }

}



.T1{
color: #83050b;
padding-right: 20px;
font-size: 20px;
font-weight:bolder;
}
.T2{
color: #595959;
padding-right: 20px;
font-size: 18px;
padding-top: 10px;
}

.topbar-right{
position:  fixed;
top: 20px;
right: 4%;
z-index: 2;

}

.topbar-right ul{
display: flex;
justify-content: space-between;
list-style-type: none;
align-items: center; 
}

.topbar-right ul a{
display: block;
color: #fff;
background-color:#83050b;
padding: 20px 20px;
font-size: 16px;
font-weight:bolder;
border-radius: 5px;
text-decoration: none;
}





.nav{
border-top:5px solid #83050b;
padding-bottom: 15px;
margin-top: 70px;
}

.nav-1200{
width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;

}

.nav-3{
display: flex;
margin-left: 4%;
list-style-type: none;
align-items: center; 
}
.nav-3 li{
width: 120px;
height: 60px;
margin-right: 15px;
text-align: center;
background-color: #83050b;
border-radius:0 0 120px 120px;
}

.nav-3 a{
display: block;
color: #fff;
font-size: 16px;
font-weight:bolder;
text-decoration: none;
margin-top: 12px;
}
.nav-3 a div{
font-size: 6px;
margin-top: 6px;
font-size: 8px;
}


.nav-right{
margin-right:4%;
margin-top: 20px;
}
.main-nav{

list-style-type: none;
display: flex;
}
.main-nav li{
margin-right:40px;
}

/*nav-right 無視*/

.nav-right a{
display: block;
color: #83050b;
font-size: 16px;
font-weight:bolder;
padding-bottom: 10px;
text-decoration: none;
position: relative;
display: inline-block;
}


.nav-right a::after{
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #83050b;
bottom: -1px;
transform: scale(0, 1);
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;  /*変形の時間*/
}

.nav-right a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*nav-right 無視*/


.gnavi__sp-style{
  display: none;
  }
  
@media screen and (max-width: 960px) {
   
    .nav{
      display: none;
    }
  
    .topbar-right ul{
      display: none;
    }
    .gnavi__sp-style{
      display:block;
    }
   
    .gnavi__sp-style a {
      text-decoration: none;
      color: #111;
  }
  
  .NavMenu{
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background-color: rgba(5, 5, 5, 0.93);
    text-align: center;
    width: 100%;
    height: 100%;
    display: none;
    }
    
    .NavMenu ul{
      width: 100%;
      margin: 0 auto;
      padding: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      }
      
    .NavMenu ul li{
      font-size: 24px;
      list-style-type: none;
      width: 100%;
      padding-bottom: 0px;
      }
      
    .NavMenu ul li:last-child{
      padding-bottom: 0;
      }
    .NavMenu ul li a{
      display: block;
      color: #fff;
      padding: 30px 0;
      font-weight: bold;
      font-size: 1em;
      text-decoration: none;
      }
      .NavMenu ul li a:hover{
        background :#83050b;
      }
      
      .Toggle {
        position: fixed;
        right:10px;
        top: 10px;
        width: 48px;
        height: 45px;
        cursor: pointer;
        z-index: 13;
        display: block;
        background-color: #83050b
        }
        
        .Toggle span {
        display: block;
        position: absolute;
        width: 35px;
        border-bottom: solid 3px #fff;
        -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: 9px;
        }
        
        .Toggle span:nth-child(2) {
        top: 20px;
        }
        
        .Toggle span:nth-child(3) {
        top: 31px;
        }
        
        .Toggle.active span:nth-child(1) {
        top: 20px;
        left: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-bottom: solid 3px #fff;
        }
        .Toggle.active span:nth-child(2),
        .Toggle.active span:nth-child(3) {
        top: 20px;
        left:8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        border-bottom: solid 3px #fff;
        }
      
 }
  




.main-pho{
width:1200px;
margin: 0 auto;
}
.main-pho img{
  width:100%;
  height: auto;
  }
  

@media screen and (max-width: 960px) {
  .container{
    width: 100%;
    }
    .main-pho{
      width:100%;
    }
    .main-pho img{
      width: 100%;
      height: auto;
      margin-top: 50px;
    }

} /*   手机css*/





.access{
  margin: 50px auto;
  padding: 20px 0;
  background-color:#83050b;
}

.mappho{
  width: 900px;
  height: auto;
}
.access h2{
  text-align: center;
  color: #83050b;
  font-size: 40px;
  margin: 0px;
  padding-top: 20px;
}
.officeicon img{
  width: 150px;
  height: 150px;
  margin: 30px auto 10px; 
}

.officeicon  span{
 display: block;
 font-size: 18px;
}
.office-change {
  line-height: 30px;
  font-size: 16px;
  margin: 20px auto;
  font-weight: normal;
}
.office-change2 {
  display: none;
}
.officeinfo{
  background-color: #fff;
  width: 70%;
  margin: 30px auto;
  border-radius: 10px;
  color: #83050b;
  padding: 20px;
}
.access{
  width: 100%;
  color: #fff;
  text-align: center;
  list-style-type: none;
  margin: 20px auto;
}

.access p span{
  font-size: 22px;
  font-weight: bolder;
 }

.access p{
  padding-top: 30px;
  line-height: 30px;
  font-size: 16px;
 }


@media screen and (max-width: 960px) {
  .access h2{
    font-size: 20px;
    padding-bottom: 10px;
  }
 
  .access h2 span{
    font-size: 16px;
    line-height: 20px;
    margin: 10px;
    padding-bottom: 10px;
  }

  .access{
    text-align: center;
    width: 100%;
    padding: 30px 0px;
    margin: 20px auto;
  }

   .mappho{
    width: 90%;
  }
   .access p span{
    font-size: 20px;
    line-height: 60px;
   }
   .access p{
    font-size: 16px;
    line-height: 26px;
   }
   .officeicon img{
    width: 100px;
    height: 100px;
    margin: 20px auto; 
    margin-left: 30px;
  }
  
  .officeicon  span{
   display: block;
   font-size: 16px;
  }
  .office-change {
    display: none;
  }
  .office-change2 {
    display: block;
    line-height: 30px;
    font-size: 16px;
    margin: 20px auto;
    font-weight: normal;
  }
  
  .officeinfo{
    background-color: #fff;
    width: 80%;
    margin: 30px auto;
    border-radius: 10px;
    color: #83050b;
    padding: 20px;
    font-size: 16px;
  }
} /*sp*/

.info h2{
  color: #111;
  text-align: center;
  font-size: 40px;
  margin: 0px auto;
  padding-top: 20px;
}
.info span{
  display: block;
  font-size: 26px;
  margin: 20px;
  font-weight: normal;
}
.callme{
  padding-top: 20px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: #111;
  background:url(/imgs/10001.jpg)no-repeat;
  background-size:100% 100%;
}

.callme-left{
   width: 30%;
   text-align: right;
   padding-right:10%;
 }

.callme-right{
 width: 60%;
 text-align:left;
}

.callme-right h2{
  width: 400px;
  padding: 20px;
  background-color: #fff;
  color: #111;
  font-size: 24px;
  text-align: center;
  margin-top: 20px;
 }

.omakase{
  color: #fff;
  padding: 20px 0 20px 0;
  font-size: 20px;
}

.tell a{
  text-decoration: none;
  color: #fff;
  font-size: 56px;
}
.tell img{
 width: 48px;
 height: auto;
 margin-right: 10px;
}

.time{
  color: #fff;
  padding: 10px;
  font-size: 20px;
}

.callme-right ul{
  margin: 20px 0 20px 0;
  display: flex;
  list-style-type: none;
  width: 90%;
}

.callme-right ul li{
  width: 90%;
  margin-right: 10px;
}

.callme-right ul li img{
  width: 100%;
}

@media screen and (max-width: 960px) {
  .callme{
    width: 90%;
    display: block;
    background-size:cover;
  }

  

 .callme-left img{
  margin-left: 100%;  
}
  .callme-right h2{
    width: 80%;
    font-size: 16px;
    margin: 0px auto;
   }

.omakase{
  font-size: 12px;
  line-height: 26px;
  padding: 20px;
}

 .tell a{
  font-size: 20px;
 }
 .time{
  font-size: 20px;
 }
 .callme-right{
  width: 100%;
  text-align: center;
 }
.callme-right ul{
  margin: 0 auto;
  padding-bottom: 20px;
}

.info h2{
  font-size: 20px;
  line-height: 20px;
}
.info span{
  font-size: 18px;
}
} /*sp*/



.whisky h2{
 font-size: 40px;
 text-align: center;
 margin: 50px auto;
 color:#83050b;
}

.whisky-price h2{
  color:#83050b;
  font-size: 26px;
  padding:10px 0 10px 10px;
  border-left:5px solid  #83050b;
  margin: 10px auto;
}

.whisky h3{
  display: none;
}

.whisky-price p{
  font-size: 20px;
  padding: 10px;
  margin-bottom: 20px;
 }

 @media screen and (max-width: 960px) {
  .whisky h2{
    display: none;
  }
  .whisky h3{
    display: block;
    width: 90%;
    font-size: 20px;
    line-height: 30px;
    padding: 10px 0px;
    color:#fff;
    text-align: center;
    margin: 1px  auto 20px;
    background-color: #0a0907;
  }
  .whisky-price h2{
    font-size: 18px;
  }
  .whisky-price p{
    font-size: 16px;
   }

   .JPW th {
    font-size: 16px;
   }
}


.JPW{
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
 }
 .JPW th {
  padding: 16px;
  border: solid 1px #595959;
  background: #83050b;
  color: #fff;
  font-weight:bolder;
  font-size: 20px;
 }
 .JPW td {
  padding: 10px;
  border: solid 1px #595959;
  vertical-align: middle;
 }

 .jpw-img{
  width: 25%;
 }
 .jpw-name{
  font-size: 20px;
 }
 .price-color{
  color:#83050b;
  font-weight:bolder;
  font-size: 26px;
  width: 30%;
 }
 @media screen and (max-width: 960px) {
   .JPW th {
    font-size: 16px;
    line-height: 20px;
   }
   .jpw-name{
    font-size: 16px;
    line-height: 20px;
    width: 30%;
   }
   .price-color{
    font-size: 20px;
    width: 25%;
   }
}


 .alcohol-way-matome h2{
  text-align: center;
  font-size: 40px;
  color:#83050b;
  margin: 60px auto;
 }
 .alcoholwayS{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
 }
 .alcohol-way{
  background-color: #f5f5f5;
  padding: 20px;
 }

 .alcohol-way a{
  display: block;
  text-decoration: none;
  color: #111;
  text-align: center;
 }
 .alcohol-way h3{
  color:#83050b;
  font-size: 20px;
  font-weight:bolder;
  padding: 14px 0;
 }
 .alcohol-way p{
  padding: 10px 0;
  font-size: 16px;
  line-height: 28px;
 }
 .same{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #83050b;
  color: #fff;
  border-radius: 50% 50%;
  font-weight: bolder;
  margin:0 auto 20px;
 }




 .alcohol-buy h2{
  margin: 100px auto 30px;
  text-align: center;
  font-size: 40px;
  color:#83050b;
 }

 .alcohol-buy p{
  margin: 10px auto 60px;
  text-align: center;
  color:#83050b;
  font-size: 20px;
 }
 .alcohol-buy ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  justify-content: center;
 }
 .alcohol-buy ul li{
 list-style-type: none;
 width: 100%;
 text-align: center;
 margin: 0 auto;
 }
 .alcohol-buy img{
  width: 100%;
  height: 100%;
 }
 .alcohol-buy-item4{
  grid-row: 2;
  grid-column: 1;
 }
 .alcohol-buy h3{
  color:#83050b;
  font-size: 20px;
  margin: 20px;
  line-height: 30px;
 }

 .alcohol-buy ul p{
  color:#111;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  margin: 20px 50px 20px 50px;
  padding: 20px;
  border: double 2px #83050b;
 }


 @media screen and (max-width: 960px) {
  .alcohol-way-matome h2{
    font-size: 20px;
   }

   .alcoholwayS{
    grid-template-columns: 1fr 1fr ;
    row-gap: 20px;
    font-size: 16px;
   }
   .alcohol-buy h2{
    font-size: 20px;
    padding: 0 10%;
   }
   .alcohol-buy h3{
    font-size: 18px;
   }

   .alcohol-buy ul{
    grid-template-columns: 1fr;
   }
   .alcohol-buy-item3{
    grid-row: 3;
    grid-column: 1;
   }
 
   .alcohol-buy ul p{
    margin: 20px 26px 20px 26px;
   }

   .alcohol-way h3{
    font-size: 18px;
   }
   .alcohol-way p{
    font-size: 14px;
   }
}


 .ng-whisky h2{
  margin: 100px auto 60px;
  text-align: center;
  font-size: 40px;
  color:#83050b;
 }
 .ng-whisky-text{
  padding: 40px;
  border: double 6px #83050b;
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 20px;
 }

.ng-whisky span{
  color:#fff;
  display: block;
  padding: 10px;
  background-color:#83050b;
  font-weight: bolder;
  margin:20px auto;
 }

 .lasttext{
  text-align: center;
  line-height: 40px;
  font-size: 16px;
}
.lasttext2{
  display: none;
}




.footer{
  margin-top: 60px;
  background-color: #83050b;
}
.footer p{
  text-align: center;
  line-height: 30px;
}
.copyright{
  font-size:12px;
  padding: 5px 0;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .ng-whisky h2{
    font-size: 20px;
    padding: 0 10%;
    margin: 60px auto 40px;
   }

   .ng-whisky{
    margin: 10px;
   }

   .ng-whisky-text{
    padding: 20px;
    border: double 4px #83050b;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
   }
  
   .lasttext{
    display: none;
    
  }
  .lasttext2{
    display: block;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
  }
  
}


