/* ----------基本css---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background: #3C2E21;
  font-family: "Noto Sans JP", sans-serif;
  color:#f2f2f2;
  letter-spacing: 6px;
}
ul {
  list-style: none;
}
.container {
  width: 1100px;
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: space-between;
}
img {
  width: 100%;
  vertical-align: bottom;
}
.btn {
  color: #f2f2f2;
  text-decoration: none;
  display: block;
  width: 400px;
  text-align: center;
  padding: 20px 0;
  transition: 0.5s;
  border: 1px solid #f2f2f2;
  position: relative;
}
.btn::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 80px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #f2f2f2;
  border-right: 1.5px solid #f2f2f2;
  transform: rotate(45deg);
  transition: 0.5s;
}
.btn:hover {
  background: #f2f2f2;
  color: #3C2E21;
  border-color: #f2f2f2;
}
.btn:hover::before {
  border-top: 1.5px solid #3C2E21;
  border-right: 1.5px solid #3C2E21;
}

/* ----------header---------- */
header {
  height: 125px;
}
.header {
  padding: 0 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  animation: scrollanime linear;
  animation-timeline: scroll();
}
@keyframes scrollanime {
  1% {
      background-color: rgba(242, 242, 242,0.2);
      color: #3C2E21;
  }
  100% {
      background-color: rgba(242, 242, 242,0.2);
      color: #3C2E21;
  }
}
.logo-img img {
  width: 130px;
}
.header-nav p {
  text-align: right;
  padding: 10px 0 5px;
  letter-spacing: 3px;
}
.header-nav p span {
  font-size: 40px;
}
.nav {
  letter-spacing: 4px;
  display: flex;
}
.nav a {
  color: #f2f2f2;
  text-decoration: none;
  padding: 10px 20px 15px;
  animation: scrollanime-nav linear;
  animation-timeline: scroll();
}
.nav li {
  transition: all 0.5s ease;
}
.nav li:hover {
  transform: translateY(-5px);
}
@keyframes scrollanime-nav {
  1% {
      color: #3C2E21;
  }
  100% {
      color: #3C2E21;
  }
}
.nav-btn {
  display: none;
}

/* ----------slider-area---------- */
.slider-area {
  position: relative;
  width: 100%;
  height: 36vw;
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow 15s linear infinite 0s;
}

.slider-item:nth-child(2) {
  animation-delay: 5s;
}

.slider-item:nth-child(3) {
  animation-delay: 10s;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideShow {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }

  8% {
      opacity: 1;
      animation-timing-function: ease-out;
  }

  20% {
      opacity: 1;
  }

  40%,
  100% {
      opacity: 0;
  }
}
.slide-text {
  position: absolute;
  top: 40vw;
  left: 30px;
}

/* ----------instagram---------- */
.inst {
  padding: 110px 220px 130px;
}
.inst-logo {
  width: 50px;
  margin-top: 6px;
}
.inst h2 {
  margin: 0 20px;
  font-weight: normal;
  font-size: 40px;
  letter-spacing: 4px;
}
.inst > .flex {
  justify-content: center;
}
.inst-text {
  text-align: center;
  padding-top: 40px;
}
.inst-item {
  margin-top: 60px;
}
.inst-flex {
  display: flex;
  justify-content: center;
}
.zoom-box{
  width:200px;
  height: 200px;
  overflow:hidden;
  margin: 5px;
 }
.zoom-box img{
  transition:1s all;
  width: 200px;
  height: 200px;
}
.zoom-box img:hover{
  transform:scale(1.05,1.05);
  transition:1s all;
}
.inst .btn {
  margin: 30px auto 0;
  background: #f2f2f2;
  color: #3C2E21;
  border-color: #f2f2f2;
}
.inst .btn::before {
  border-top: 1.5px solid #3C2E21;
  border-right: 1.5px solid #3C2E21;
}
.inst .btn:hover {
  color: #f2f2f2;
  border: 1px solid #f2f2f2;
  background: none;
}
.inst .btn:hover::before {
  border-top: 1.5px solid #f2f2f2;
  border-right: 1.5px solid #f2f2f2;
}

/* ----------drink---------- */
.parallax h2{
  display: flex;
  align-items: end;
  padding: 2% 5%;
  height: 100%;
  font-weight: normal;
  font-size: 60px;
  letter-spacing: 15px;
}
.parallax{
  height: 350px;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-image: url(images/drink.png);
}
.drink-wrapper {
  padding: 100px 0 10px 60px;
}
.drink-outer {
  padding-bottom: 90px;
}
.img-box {
  width: 400px;
  margin: auto 0;
}
.drink-img {
  display: flex;
  justify-content: center;
}
.drink-img img {
  width: 200px;
  height: 200px;
  padding: 5px;
}
.drink-price p {
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
}
.text-box h3,h2 {
  font-size: 30px;
  padding-bottom: 45px;
  line-height: 60px;
  font-weight: 500;
}
.text-box p {
  line-height: 190%;
}
.text-box {
  display: flex;
  flex-direction: column;
  height: 590px;
  width: 481px;
}
.text-box .btn {
  margin-top: auto;
}
.whisky .img-box {
  margin: auto 70px;
}

/* ----------food---------- */
#food {
  background: #9D8B7C;
  padding: 80px 0;
}
#food .text-box {
  height: 480px;
}
.carousel {
  width: 500px;
  display: flex;
  overflow: hidden;
  margin: auto 0;
}
.carousel img {
  margin: 0;
  padding: 0;
  display: block;
}
@keyframes scroll {
  0% { margin-left: 0; }
  28% { margin-left: -100%; }
  33% { margin-left: -100%; }
  61% { margin-left: -200%; }
  66% { margin-left: -200%; }
  95% { margin-left: -300%; }
  100% { margin-left: -300%; }
}
.carousel > :first-child {
  animation-name: scroll;
  animation-duration: 12s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

/* ----------access---------- */
.contact h2 {
  text-align: center;
  font-weight: normal;
  padding: 60px;
  letter-spacing: 4px;
  font-size: 40px;
}
.shop_flex {
  display: flex;
  justify-content: space-between;
}
.shop_flex > img {
  height: 500px;
  width: auto;
  padding-left: 35px;
}
.shop-table {
  line-height: 30px;
  text-align: left;
  margin: auto 0;
  border-spacing: 25px;
}
.shop-table img {
  width: 25px;
  height: auto;
  margin-right: 25px;
}
.shop-table th {
  border-right: solid 4px #f2f2f266;
  font-weight: normal;
  padding-right: 40px;
}
.shop-table td {
  padding-left: 30px;
}

/* ----------gmap---------- */
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gmap {
  margin-top: 50px;
  position: relative;
  width: 100%;
  padding-top: 25%;
}

/* ----------footer---------- */
footer {
  text-align: center;
  margin: 0 auto;
  padding: 30px;
}
footer nav {
  letter-spacing: 4px;
  padding: 0 150px;
}
.footer_nav a {
  color: #f2f2f2;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 10px 0;
}
footer img {
  width: 50px;
  margin: 30px 0;
}
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 50px;
}
.pagetop img {
  width: 50px;
}

/* ----------about-page---------- */
#about {
  background-color: #9D8B7C;
  color: #19120b;
  padding: 80px 0;
}
#about h1 {
  font-weight: normal;
  font-size: 30px;
  line-height: 60px;
  padding-top: 50px;
}
#about h1 span {
  font-size: 60px;
  display: block;
  letter-spacing: 20px;
}
.about-text {
  margin-top: 70px;
  height: 930px;
  line-height: 190%;
  background-image: url(images/about_1.png);
}
.about-text1 {
  height: 300px;
  padding: 40px 0;
}
.about-text2 {
  float: right;
}
.about-text2 h2 {
  font-weight: normal;
  font-size: 50px;
  line-height: 120px;
  letter-spacing: 7px;
}
.about-text2 p {
  padding: 30px 0 0 33px;
}
.about-text2 p span {
  font-size: 25px;
}

/* ----------menu-page---------- */
.menu-title h2 {
  font-size: 60px;
  font-weight: normal;
  text-align: center;
  padding: 40px;
}
.menu {
  letter-spacing: 2px;
  padding-bottom: 130px;
}
.menu-box {
  padding-top: 70px;
}
.menu-box .flex {
  justify-content: space-between;
}
.menu h3 {
  font-weight: normal;
  font-size: 40px;
  letter-spacing: 4px;
  border-bottom: solid 1px;
  padding-bottom: 10px;
}
.menu-table {
  padding-top: 40px;
}
.menu-table th {
  vertical-align: top;
  font-weight: normal;
  font-size: 24px;
  padding-right: 15px;
  text-align: left;
}
.menu-table td {
  font-size: 20px;
  padding-bottom: 25px;
  padding-left: 75px;
}
.menu-table td span {
  display: block;
  font-size: 14px;
  line-height: 13px;
}
.menu-box p {
  padding: 30px 30px 0;
  text-align: center;
  font-size: 20px;
}
.nihonsyu-img {
  height: 250px;
  gap: 30px;
  padding: 20px 0;
  width: 1000px;
  margin: auto;
}
.menu-nihonsyu {
  display: flex;
  justify-content: center;
}
.menu-nihonsyu p {
  font-size: 18px;
}

/* ----------タブレットcss---------- */
@media (max-width: 960px) {
  .container {
    width: 90%;
  } 
  .btn {
  width: 350px;
  }
  .inst {
    padding: 6% 6% 13%;
  }
  .inst-logo {
    width: 6%;
    margin: 0;
    padding-top: 10px;
  }
  .inst-item {
    margin-top: 10%;
  }
  .zoom-box {
    width: 100%;
    height: 100%;
  }
  .zoom-box img {
    width: 100%;
    height: 100%;
  }
  .img-box {
    width: 300px;
  }
  .drink-img img {
    width: 150px;
    height: 150px;
  }
  .text-box {
    width: 375px;
    height: 620px;
  }
  .carousel {
    width: 350px;
  }
  .shop_flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_nav {
    padding: 0;
  }

  /* --about-page-- */
  .about-text {
    background-image: url(images/about_2.png);
    background-repeat: no-repeat;
  }

  /* --menu-page-- */
  .menu-table th {
    padding-right: 1vw;
  }
  .menu-table td {
    padding-left: 1vw;
  }
}

/* ----------スマホcss---------- */
@media (max-width: 768px) {
  body {
    line-height: 165%;
    letter-spacing: 1px;
  }
  .flex {
    flex-wrap: wrap;
  }
  .btn {
    width: 270px;
    padding: 10px 0;
    margin: 0 auto;
  }
  .btn::before {
    right: 14%;
    top: 40%;
  }

  /* --header-- */
  header {
    height: 70px;
  }
  .header {
    position: fixed;
    width: 100%;
  }
  .nav {
    background: rgba(242, 242, 242, 0.9);
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: 64px;
    padding: 10px 0;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    display: block;
  }
  .nav-btn:checked ~ .nav {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .nav a {
    text-decoration: none;
    color: #3C2E21;
    transition: 0.5s;
  }
  .nav li {
    border-top: 1px solid rgba(60, 46, 33,0.4);
    padding: 15px 0;
    margin: 0 54px;
    transition: 0.5s;
  }
  .nav li:first-child {
    border: none;
  }
  .nav li:hover {
    transform: none;
  }
  .nav-btn:checked ~ .nav a,.nav-btn:checked ~ .nav li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .nav-icon {
    display: block;
    position: relative;
    left: 73vw;
    cursor: pointer;
    padding: 30px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .navicon {
    background: #f2f2f2;
    display: block;
    height: 3px;
    width: 28px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navicon:before,.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #f2f2f2;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  } 
  .navicon:before {
    top: 10px;
  }
  .navicon:after {
    bottom: 10px;
  } 
  .nav-btn:checked ~ .nav-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .nav-btn:checked ~ .nav-icon .navicon:after {
    transform: rotate(45deg);
  }
  .nav-btn:checked ~ .nav-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .nav-btn:checked ~ .nav-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .nav-btn:checked ~ .nav-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navtext-container {
    width: 100%;
    height: 70px;
    position: absolute;
    align-items: center;
  }
  .header-nav p {
    display: none;
  }
  .logo-img img {
    width: 65px;
    margin-left: 10px;
  }
  .slide-text {
    font-size: 13px;
    left: 18px;
    top: 42vw;
  }

  /* --instagram-- */
  .inst {
    padding: 20% 6% 25%;
  }
  .inst h2 {
    font-size: 6vw;
    padding-bottom: 25px;
  }
  .inst-logo {
    width: 8%;
    margin: 0;
    padding-top: 18px;
  }
  .inst-item {
    margin-top: 10%;
  }
  .zoom-box {
    width: 100%;
    height: 100%;
  }
  .zoom-box img {
    width: 100%;
    height: 100%;
  }

  /* --drink-- */
  .parallax {
    height: 200px;
  }
  .parallax_content {
    height: 40vw;
  }
  .parallax_content h2 {
    font-size: 13vw;
    padding: 6% 5%;
  }
  .drink-wrapper {
    padding: 130px 0 10px 0;
  }
  .img-box,.whisky .img-box {
    width: 80%;
    margin: 0 auto 30px;
  }
  .drink-img img {
    width: 50%;
    height: 50%;
  }
  .text-box {
    height: 530px;
    width: 100%;
  }
  .text-box h3,h2 {
    line-height: 50px;
  }
  .drink-outer {
    padding-bottom: 130px;
  }
  .whisky .text-box {
    order: 2;
  }
  .whisky .img-box {
    order: 1;
  }

  /* --food-- */
  #food {
    padding: 0 0 100px 0;
  }
  #food > .container {
    width: 100%;
  }
  .carousel {
    width: 100%;
  }
  #food .text-box {
    height: 420px;
    width: 90%;
    margin: auto;
    margin-top: 100px;
  }

  /* --shop-- */
  .contact h2 {
    font-size: 6vw;
    font-weight: bold;
    padding-bottom: 7vw;
  }
  .shop_flex {
    flex-wrap: wrap;
  }
  .shop_flex > img {
    width: 40%;
    height: auto;
    padding: 0;
    margin: 0 auto;
  }
  .shop-table {
    line-height: 165%;
    border-spacing: 15px;
    letter-spacing: 0.2vw;
    font-size: 2.8vw;
    padding-bottom: 30px;
  }
  .shop-table img {
    display: block;
    width: 25%
  }
  .shop-table th {
    padding-right: 3vw;
  }
  .shop-table td {
    padding-left: 3vw;
  }
  .gmap {
    padding-top: 50%;
    margin-top: 5vw;
  }

  /* --footer-- */
  .footer_nav {
    padding: 1vw 0;
  }
  .footer_nav a li {
    font-size: 2.2vw;
    padding: 0 1vw;
  }
  footer img {
    margin: 3% 0;
    width: 10%;
  }
  footer p {
    font-size: 2vw;
  }
  .pagetop {
    right: -40px;
  }
  .pagetop img {
    width: 30%;
  }

  /* --about-page-- */
  #about {
    padding-bottom: 22vw;
  }
  #about h1 {
    font-size: 4vw;
    line-height: 200%;
    padding-top: 5%;
  }
  #about h1 span {
    font-size: 9vw;
    letter-spacing: 2vw;
  }
  .about-text {
    margin-top: 2%;
    line-height: 165%;
    height: auto;
    background-image: url(images/about_3.png);
    background-repeat: no-repeat;
  }
  .about-text2 {
    float: none;
  }
  .about-text2 h2 {
    font-size: 7vw;
    letter-spacing: 0.7vw;
    line-height: 18vw;
    margin: 0 -4vw;
  }.about-text1 p {
    text-shadow: 1px 1px 3px #f2f2f2;
  }
  .about-text2 p {
    padding: 0;
  }
  .about-text2 p span {
    font-size: 20px;
    font-weight: bold;
  }

  /* --menu-page-- */
  .menu-title h2 {
    font-size: 8vw;
    padding: 40px 0 0 0;
    margin-top: 3vw;
  }
  .menu .flex {
    flex-wrap: wrap;
  }
  .menu h3 {
    font-size: 6vw;
    margin-bottom: 7vw;
  }
  .menu-box {
    padding-top: 100px;
  }
  .menu-table {
    width: 100%;
    table-layout: fixed;
    padding-top: 0;
  }
  .menu-table th {
    padding-right: 0;
    font-size: 5vw;
  }
  .menu-table td {
    padding-left: 0;
  }
  .menu-table td span {
    font-size: 2vw;
  }
  .menu-table .price {
    padding-left: 10%;
    width: 150px;
  }
  .menu-box p {
    font-size: 18px;
    padding: 30px 0 0 0;
  }
  .menu-nihonsyu p {
    font-size: 16px;
  }
  .nihonsyu-img {
    width: 100%;
    height: auto;
    gap: 0;
  }
  .nihonsyu-img img {
    width: 20%;
  }
}

