@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  color: #333;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 10px;
}

.section-title {
  font-size: 1.5rem;
  color: #401E01;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.375rem;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #401E01;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 70px;
  transition: 0.5s;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  position: relative;
}
header .logo {
  line-height: 0;
  transition: 0.5s;
  position: relative;
  width: 120px;
  height: 60px;
}
header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header .logo .logo-b {
  opacity: 0;
}
header #navi {
  position: absolute;
  right: 40px;
  top: 20px;
}
header #navi ul {
  display: flex;
  gap: 60px;
  transition: 0.5s;
}
header #navi ul li {
  padding-bottom: 5px;
  position: relative;
}
header #navi ul a {
  color: #fff;
}
header #navi ul li::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header #navi ul li:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  header #navi {
    position: fixed;
    top: 0;
    left: -300px;
    background-color: #401E01;
    width: 300px;
    height: 100vh;
    z-index: 20;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s;
  }
  header #navi ul {
    flex-direction: column;
    gap: 0;
    margin-top: 80px;
    margin-left: 30px;
    margin-right: 30px;
  }
  header #navi ul li {
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 0;
    padding-left: 5px;
  }
  header #navi ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  header #navi ul li::before {
    content: none;
  }
  .toggle_btn {
    width: 35px;
    height: 35px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
    position: relative;
    margin-left: auto;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 22%;
  }
  .toggle_btn span:nth-child(2) {
    top: 50%;
  }
  .toggle_btn span:nth-child(3) {
    top: 78%;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    top: 50%;
    transform: rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    top: 50%;
    transform: rotate(315deg);
  }
  #mask {
    display: none;
    transition: all 1s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    z-index: 10;
    cursor: pointer;
  }
  .open #navi {
    left: 0;
    opacity: 1;
  }
  .open #navi ul li {
    -webkit-animation: fadeIn 0.8s ease 0.45s 1 normal backwards;
            animation: fadeIn 0.8s ease 0.45s 1 normal backwards;
  }
  .open #navi ul li:nth-child(1) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .open #navi ul li:nth-child(2) {
    -webkit-animation-delay: 0.22s;
            animation-delay: 0.22s;
  }
  .open #navi ul li:nth-child(3) {
    -webkit-animation-delay: 0.34s;
            animation-delay: 0.34s;
  }
  .open #navi ul li:nth-child(4) {
    -webkit-animation-delay: 0.46s;
            animation-delay: 0.46s;
  }
  .open #navi ul li:nth-child(5) {
    -webkit-animation-delay: 0.58s;
            animation-delay: 0.58s;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    /* 下から上がってくる */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    /* 下から上がってくる */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-nav {
  background-color: #fff;
}
.scroll-nav .logo .logo-w {
  opacity: 0;
}
.scroll-nav .logo .logo-b {
  opacity: 1;
}
.scroll-nav #navi a {
  color: #401E01;
}
.scroll-nav #navi li::before {
  background: #401E01;
}
@media screen and (max-width: 768px) {
  .scroll-nav .toggle_btn span {
    background-color: #401E01;
  }
  .scroll-nav #navi a {
    color: #fff;
  }
}

.slides {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}
.slides .slides-inner li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: fade 20s infinite;
          animation: fade 20s infinite;
  opacity: 0;
}
.slides .slides-inner li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.slides .slides-inner li .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slides .slides-inner li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.slides .slides-inner li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.slides .slides-inner li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.slides .slides-inner li:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slides * {
  margin: 0;
  padding: 0;
}
.slides html {
  scroll-behavior: smooth;
}
.slides .scroll_down {
  position: absolute;
  right: 80px;
  bottom: 50px;
}
.slides .scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 13px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  margin: auto;
}
.slides .scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60%;
  width: 2px;
  height: 100px;
  background: #ddd;
}
.slides .scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60%;
  width: 2px;
  height: 100px;
  background: #401E01;
}
.slides .scroll_down a:hover {
  opacity: 0.5;
}
.slides #type01 a:after {
  -webkit-animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.catchcopy {
  margin-inline: auto;
  margin-top: 100px;
  margin-bottom: 50px;
}
.catchcopy p {
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .catchcopy p {
    font-size: 1rem;
  }
}

#menu {
  padding-top: 80px;
}
#menu .menu-contents {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #menu .menu-contents {
    flex-direction: column;
    align-items: center;
  }
}
#menu .menu-contents .menu-content .img-wrapper {
  height: 280px;
  overflow: hidden;
}
#menu .menu-contents .menu-content .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s ease;
}
#menu .menu-contents .menu-content .img-wrapper:hover img {
  transform: scale(1.1);
}
#menu .menu-contents .menu-content .category {
  text-align: center;
  margin-top: 20px;
  font-size: 1.125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #menu .menu-contents .menu-content .category {
    font-size: 1rem;
  }
}
#menu .menu-contents .menu-content .category:hover {
  opacity: 0.7;
}

.btn {
  text-align: center;
  margin-top: 80px;
}
.btn a,
.btn button {
  width: 230px;
  line-height: 60px;
  color: #401E01;
  background-color: #fff;
  position: relative;
  border: 1px solid #401E01;
  transition: color 0.5s ease;
}
.btn a:hover,
.btn button:hover {
  color: #fff;
}
.btn a:hover::before,
.btn button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn a::before,
.btn button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #401E01;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn .text {
  position: relative;
}

#about {
  padding-top: 80px;
}
#about .about-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .about-contents p {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  #about .about-contents {
    flex-direction: column;
    gap: 50px;
  }
}
#about .about-contents p {
  width: 50%;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #about .about-contents p {
    width: 100%;
    text-align: center;
  }
}
#about .about-contents img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about-contents img {
    width: 100%;
  }
}
#about .photos {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #about .photos {
    gap: 10px;
  }
}
#about .fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

#access {
  padding-top: 80px;
  margin-bottom: 120px;
}
#access .access-contents {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #access .access-contents {
    flex-direction: column-reverse;
  }
}
#access .access-contents iframe {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #access .access-contents iframe {
    width: 100%;
  }
}
#access .access-contents .info dl dt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#access .access-contents .info dl .shop-name {
  font-weight: bold;
  font-size: 1.125rem;
}
#access .access-contents .info dl dd {
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}
#access .access-contents .info .contact-btn {
  width: 210px;
  display: flex;
  align-items: center;
  border: 1px solid #401E01;
  justify-content: space-around;
}
#access .access-contents .info .contact-btn .icon {
  width: 40px;
  height: 40px;
  padding-bottom: 3px;
}
#access .access-contents .info .contact-btn p {
  color: #401E01;
  font-size: 0.875rem;
  padding-right: 5px;
}
#access .access-contents .info .contact-btn:hover {
  opacity: 0.7;
}

footer p {
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  padding: 20px 0;
  color: #401E01;
}

.wrapper {
  margin-inline: auto;
  max-width: 1000px;
  padding: 0 2%;
}

.page-menu header,
.page-contact header {
  background-color: #fff;
}
.page-menu header #navi a,
.page-contact header #navi a {
  color: #401E01;
}
.page-menu header #navi li::before,
.page-contact header #navi li::before {
  background: #401E01;
}
@media screen and (max-width: 768px) {
  .page-menu header .toggle_btn span,
.page-contact header .toggle_btn span {
    background-color: #401E01;
  }
  .page-menu header #navi a,
.page-contact header #navi a {
    color: #fff;
  }
}

.page-menu main {
  margin-top: 80px;
}
.page-menu .section-title {
  margin-bottom: 0;
}
.page-menu .menu-title {
  margin-bottom: 40px;
  padding-top: 90px;
}
.page-menu .items {
  display: flex;
  gap: 50px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page-menu .items {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }
}
.page-menu .items .image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .page-menu .items .image {
    width: 100%;
  }
  .page-menu .items .image img {
    width: 100%;
  }
}
.page-menu .items .text {
  width: 50%;
}
.page-menu .items .text dl {
  display: flex;
  font-weight: bold;
}
.page-menu .items .text dl dt {
  width: 80%;
}
.page-menu .items .text dl dd {
  width: 20%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page-menu .items .text {
    width: 100%;
  }
}
.page-menu .items p {
  font-size: 0.875rem;
}
.page-menu .items .option {
  margin-top: 50px;
}
.page-menu .items .option .option-title {
  margin-bottom: 30px;
}
.page-menu .items .option-list {
  margin-bottom: 40px;
}
.page-menu .items .option-list ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-menu .items .option-list ul {
    flex-direction: column;
  }
}
.page-menu .items .option-list ul li {
  padding-left: 0.6em;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .page-menu .items .option-list ul li {
    margin-top: 5px;
  }
}
.page-menu .items .option-list ul li::before {
  content: "•";
  /* 好きなマーカーを指定 */
  font-size: 0.6em;
  /* 小さく調整 */
  color: #333;
  /* 色も自由 */
  display: inline-block;
  width: 1em;
  /* マーカー分のスペース確保 */
}
.page-menu .items .season-menu {
  margin-top: 50px;
}
.page-menu .items .season-menu p {
  font-size: 0.75rem;
  text-align: right;
  padding-top: 3px;
}
.page-menu .items .menu-description {
  margin-top: 50px;
}
.page-menu #drinks dl {
  margin-bottom: 30px;
}
.page-menu .btn {
  margin-bottom: 100px;
  margin-top: 0;
}

.page-contact main {
  margin-top: 80px;
}
.page-contact form {
  margin-bottom: 100px;
}
.page-contact form dl {
  width: 100%;
  margin-bottom: 40px;
}
.page-contact form dl dt {
  margin-bottom: 5px;
}
.page-contact form .name {
  display: flex;
  gap: 30px;
}
.page-contact form input,
.page-contact form textarea {
  border: 1.5px solid rgb(152, 152, 152);
  width: 100%;
  padding: 10px;
}
.page-contact form textarea {
  height: 100px;
}
.page-contact form input:focus,
.page-contact form textarea:focus {
  border: 1.5px solid #401E01;
}
.page-contact form .gender dd {
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.page-contact form .gender dd input {
  width: 16px;
  height: 16px;
}
.page-contact form .gender dd label {
  margin-right: 30px;
}
/*# sourceMappingURL=style.css.map */