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

img {
  width: 100%;
}

html,
body {
  min-height: 100dvh;
  background-color: #f5f5f5;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f5f5f5;
}
@media (max-width: 920px) {
  main {
    padding-top: clamp(6rem, 8vw, 8rem);
  }
}

section {
  padding-block: clamp(50px, 10vw, 80px);
}

body.no-scroll {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
body.no-scroll .header,
body.no-scroll .footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body.no-scroll main {
  min-height: 0;
  overflow: hidden;
}

.container {
  width: min(85vw, 1200px);
  margin-inline: auto;
}
@media (max-width: 920px) {
  .container {
    width: 87vw;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  vertical-align: middle;
}

hr {
  border: 0;
  height: 1px;
  background: #ccc;
}

[hidden] {
  display: none !important;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.08em;
}

strong,
h2,
h3,
h4 {
  font-weight: inherit;
}

h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.06em;
}

.pt-sm {
  padding-top: 1.5em;
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
}

.fade-in:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fade-in:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.fade-in:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

a:not(.logo) {
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

@media (hover: hover) and (pointer: fine) {
  a:not(.logo):hover {
    opacity: 0.5;
  }
}
.hamburger {
  display: none;
  background: none;
  border: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 200;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 920px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header.is-open .hamburger span:nth-child(1) {
  -webkit-transform: translateY(9.5px) rotate(-45deg);
          transform: translateY(9.5px) rotate(-45deg);
}

.header.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.header.is-open .hamburger span:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(45deg);
          transform: translateY(-9.5px) rotate(45deg);
}

.footer {
  padding-bottom: clamp(25px, 5vw, 40px);
  background-color: #f5f5f5;
}
.footer small {
  display: block;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.header {
  width: 100%;
  background-color: #f5f5f5;
  padding-inline: min(5vw, 30px) min(6vw, 40px);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: clamp(6rem, 8vw, 8rem);
}
.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(110px, 12vw, 150px);
}
.header h1 a {
  padding: 1rem;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "EB Garamond", serif;
}
.header__nav ul li {
  position: relative;
  padding-inline: 1.5em;
  line-height: 1.3em;
  font-size: 2rem;
  border-right: 1px solid #989898;
}
.header__nav ul li a {
  padding: 0.5em;
}
.header__nav ul li.active a {
  opacity: 0.3;
}
.header__nav .insta {
  font-size: 1.3em;
  opacity: 0.3;
  pointer-events: none;
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
}
.header.is-open .header__overlay {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 920px) {
  .header {
    position: fixed;
    z-index: 9999;
    background-color: transparent;
    padding-inline: 0 min(5vw, 30px);
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 150;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3em;
    width: 230px;
    height: 100dvh;
    padding-top: 100px;
    background-color: #f5f5f5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    pointer-events: none;
    -webkit-transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s, -webkit-transform 0.4s;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    row-gap: 2em;
  }
  .header__nav ul li {
    border: none;
    font-size: 2.2rem;
  }
  .header__nav ul li a {
    padding: 0;
  }
  .header__nav .insta {
    margin-inline: auto;
    font-size: 2.4rem;
  }
  .header.is-open .header__nav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: auto;
  }
}

html.is-resizing .header__nav,
html.is-resizing .header__overlay {
  -webkit-transition: none !important;
  transition: none !important;
}

.flex-row .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 920px) {
  .flex-row .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}
.flex-row .container h2 {
  width: 28%;
  padding-top: 1rem;
}
@media (max-width: 920px) {
  .flex-row .container h2 {
    width: 100%;
  }
}
.flex-row .container .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 1rem;
  padding-left: 45px;
  border-left: 1px solid #989898;
}
@media (max-width: 920px) {
  .flex-row .container .content {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
.flex-row .container .content .img-top {
  margin-bottom: clamp(35px, 10vw, 50px);
}
.flex-row .container .content .img-top.sm {
  width: 55%;
}
@media (max-width: 920px) {
  .flex-row .container .content .img-top.sm {
    width: 100%;
  }
}
.flex-row .container .content ul.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  margin-bottom: clamp(35px, 10vw, 50px);
}
.flex-row .container .content ul.info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-row .container .content ul.info li .label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5em;
}
.flex-row .container .content ul.info li .value {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-left: 1.2em;
  overflow-wrap: anywhere;
}
.flex-row .container .content ul.info li .value::before {
  content: "：";
  position: absolute;
  top: 0;
  left: 0;
}

#restaurant .content > img {
  margin-bottom: 10px;
}
@media (max-width: 920px) {
  #restaurant .content > img {
    margin-bottom: 7px;
  }
}
#restaurant .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 10px;
}
@media (max-width: 920px) {
  #restaurant .content ul {
    row-gap: 7px;
  }
}
#restaurant .content ul li {
  width: calc((100% - 20px) / 3);
}
@media (max-width: 920px) {
  #restaurant .content ul li {
    width: calc((100% - 7px) / 2);
  }
}

#hero {
  position: relative;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  padding-block: clamp(50px, 10vw, 80px);
}
#hero img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: clamp(50px, 10vw, 80px);
  left: 0;
  width: 100%;
  height: calc(100% - clamp(50px, 10vw, 80px) * 2);
}
#hero img:nth-child(1) {
  z-index: 1;
  opacity: 1;
}
#hero img:nth-child(2) {
  z-index: 2;
  opacity: 0;
  -webkit-animation: heroSecond 21s ease-in-out infinite;
          animation: heroSecond 21s ease-in-out infinite;
}
#hero img:nth-child(3) {
  z-index: 3;
  opacity: 0;
  -webkit-animation: heroThird 21s ease-in-out infinite;
          animation: heroThird 21s ease-in-out infinite;
}

@-webkit-keyframes heroSecond {
  0%, 28.57% {
    opacity: 0;
  }
  33.33%, 61.9% {
    opacity: 1;
  }
  66.67%, 100% {
    opacity: 0;
  }
}

@keyframes heroSecond {
  0%, 28.57% {
    opacity: 0;
  }
  33.33%, 61.9% {
    opacity: 1;
  }
  66.67%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes heroThird {
  0%, 61.9% {
    opacity: 0;
  }
  66.67%, 95.24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroThird {
  0%, 61.9% {
    opacity: 0;
  }
  66.67%, 95.24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
html,
body {
  margin: 0;
  height: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.no-scroll {
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.no-scroll .header,
.no-scroll .footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.no-scroll main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow: hidden;
}

#image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.image-slider {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow: hidden;
}
.image-slider img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  pointer-events: none;
}
.image-slider img.is-active {
  z-index: 1;
  opacity: 1;
}
.image-slider img.is-leaving {
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.image-pagination,
.design {
  width: 85vw;
  margin-inline: auto;
}
@media (max-width: 920px) {
  .image-pagination,
  .design {
    width: 87vw;
  }
}

.design a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}

.image-pagination {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(6px, 0.8vw, 14px);
  padding: clamp(8px, 1.2vw, 14px) 0;
}
.image-pagination button {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.image-pagination button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d8d8d8;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.image-pagination button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #989898;
  -webkit-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.image-pagination button.is-current::after {
  -webkit-animation: imageProgress 7s linear forwards;
          animation: imageProgress 7s linear forwards;
}
.image-pagination button.is-complete::after {
  -webkit-transform: translateY(-50%) scaleX(1);
          transform: translateY(-50%) scaleX(1);
}
.image-pagination button:focus-visible {
  outline: 2px solid #989898;
  outline-offset: 2px;
}

@-webkit-keyframes imageProgress {
  from {
    -webkit-transform: translateY(-50%) scaleX(0);
            transform: translateY(-50%) scaleX(0);
  }
  to {
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}

@keyframes imageProgress {
  from {
    -webkit-transform: translateY(-50%) scaleX(0);
            transform: translateY(-50%) scaleX(0);
  }
  to {
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-slider img.is-leaving {
    -webkit-transition: none;
    transition: none;
  }
  .image-pagination button.is-current::after {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}