@charset "UTF-8";
:root {
  --text-color: #7E7900;
  --background-color: #FAF3E9;
  --shadow-color: #13131379;
}

html {
  font-size: 62.5%;
}
@media (max-width: 500px) {
  html {
    font-size: 40%;
  }
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Crimson Text", serif;
  min-height: 100vh;
  position: relative;
}

html,
body {
  height: 100%;
  /*高さを100%にして描画エリアをとる*/
}

#particles-js {
  position: fixed;
  /*描画固定*/
  z-index: 10;
  /*描画を一番下に*/
  width: 100%;
  height: 100%;
  background-color: --background-color;
  /*背景色*/
}

section {
  margin: 100px auto 0 auto;
  padding-top: 100px;
}
@media (max-width: 500px) {
  section {
    margin: 50px auto 0 auto;
  }
}

img,
source {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 500px) {
  main {
    text-align: center;
  }
}

h1 {
  width: 125px;
  opacity: 0;
  transition: all 0.5s;
  position: relative;
  z-index: 20;
}
@media (max-width: 500px) {
  h1 {
    opacity: 1;
    width: 85px;
  }
}

h2 {
  font-size: 3.2rem;
  letter-spacing: 10px;
  display: inline-block;
}

.fadein {
  -webkit-animation: fadeIn 3s forwards;
          animation: fadeIn 3s forwards;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.horizontal {
  margin-bottom: 100px;
  position: relative;
}
.horizontal::after {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 70px;
  height: 2px;
  bottom: -10px;
  left: -10px;
}

.vertical {
  writing-mode: vertical-rl;
  position: relative;
  text-align: left;
}
@media (max-width: 500px) {
  .vertical {
    writing-mode: horizontal-tb;
    margin-bottom: 50px;
    margin-inline: auto;
  }
}
.vertical::after {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 2px;
  height: 70px;
  top: -10px;
  right: -10px;
}
@media (max-width: 500px) {
  .vertical::after {
    width: 70px;
    height: 2px;
    top: initial;
    bottom: -10px;
    right: initial;
    left: -10px;
  }
}

h3 {
  font-size: 3.2rem;
  font-weight: normal;
  border-bottom: 1px solid var(--text-color);
  letter-spacing: 10px;
}

li {
  list-style: none;
}

i {
  display: inline-block;
  margin-top: 10px;
  font-size: 3rem;
}

a {
  color: var(--text-color);
  text-decoration: none;
  z-index: 100;
}

p {
  font-size: 1.6rem;
}

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

.btn {
  display: flex;
  justify-content: center;
  padding-top: 100px;
  z-index: 20;
  position: relative;
}
@media (max-width: 500px) {
  .btn {
    padding-right: 25px;
  }
}
.btn a {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  line-height: 55px;
  width: 290px;
  height: 55px;
  border: 1px solid var(--text-color);
  border-radius: 30px;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 500px) {
  .btn a {
    width: 190px;
    height: 47px;
    line-height: 47px;
  }
}
.btn a::before {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 57px;
  height: 1px;
  right: -35px;
  bottom: 20px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn a::before {
    width: 40px;
    right: -25px;
  }
}
.btn a::after {
  position: absolute;
  content: "";
  background: var(--text-color);
  transform: rotate(37deg);
  width: 31px;
  height: 1px;
  right: -37px;
  bottom: 30px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn a::after {
    width: 20px;
    right: -27px;
    bottom: 26px;
  }
}
.btn a:hover {
  color: var(--background-color);
  background: var(--text-color);
  transition: all 0.5s;
}
.btn a:hover::before {
  right: -45px;
  transition: all 0.5s;
}
.btn a:hover::after {
  right: -47px;
  transition: all 0.5s;
}

.loading {
  position: fixed;
  background: var(--background-color);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.loading .progress-container {
  display: inline-block;
  width: 244px;
  height: 135px;
  position: relative;
}
.loading .progress-bar {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 170px;
  height: 0%;
  background: #684E00;
  border-radius: 0 0 28px 28px;
  transition: height 0.3s ease;
  transform-origin: bottom;
}
.loading p {
  font-size: 2rem;
  padding-top: 10px;
}

.lower {
  text-align: center;
}
.lower-header h1 {
  opacity: 1;
}
.lower h2 {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  .lower h2 {
    margin-bottom: 80px;
  }
}
.lower h2::before {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 1px;
  height: 20px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.lower h3 {
  border-bottom: none;
  text-align: left;
}
@media (max-width: 500px) {
  .lower h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .lower .btn {
    padding-right: initial;
    padding-left: 25px;
  }
}
.lower .btn a::before {
  left: -35px;
}
.lower .btn a::after {
  transform: rotate(-37deg);
  left: -37px;
}
.lower .btn a:hover::before {
  left: -45px;
}
.lower .btn a:hover::after {
  left: -47px;
}
.lower .wrapper {
  text-align: left;
}

header {
  text-align: center;
}
header .outer {
  margin-inline: 5%;
  display: flex;
  justify-content: space-between;
  height: 125px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 500px) {
  header .outer {
    height: 85px;
  }
}
header .logo {
  display: inline-block;
  width: 192px;
  margin-inline: auto;
  line-height: calc(100vh + 125px);
}
@media (max-width: 500px) {
  header .logo {
    display: none;
  }
}
header p {
  font-size: 2.4rem;
  line-height: 100vh;
}

.link {
  padding-top: 20px;
}
@media (max-width: 500px) {
  .link {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
.link a {
  transition: all 0.5s;
  padding-top: 10px;
}
@media (max-width: 500px) {
  .link a {
    padding-top: initial;
  }
}
@media (max-width: 500px) {
  .link a i {
    margin-top: 2px;
    margin-right: 6px;
  }
}

.toggle {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
@media (max-width: 500px) {
  .toggle {
    width: 20px;
  }
}
.toggle span {
  display: block;
  background: var(--text-color);
  width: 100%;
  height: 2px;
  transition: all 0.5s;
  position: absolute;
}
.toggle span:nth-child(1) {
  top: 30%;
}
.toggle span:nth-child(2) {
  top: 70%;
}

nav {
  opacity: 0;
  visibility: hidden;
  font-size: 2.4rem;
  position: fixed;
  z-index: 90;
  background-color: var(--background-color);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding-top: 120px;
  transition: all 0.5s;
}
nav li {
  margin-bottom: 50px;
}
nav li a {
  position: relative;
}
nav li a::before {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 1px;
  height: 20px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s;
}
nav li a:hover::before {
  top: -20px;
  opacity: 1;
}

.open nav {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
.open .toggle {
  width: 30px;
  height: 30px;
  position: relative;
}
.open .toggle span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.open .toggle span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}
.open h1 {
  opacity: 1;
  transition: all 0.5s;
}
.open .link a {
  opacity: 0;
  transition: all 0.5s;
}

.lead .fade {
  -webkit-animation: fadeIn 7s forwards;
          animation: fadeIn 7s forwards;
  opacity: 0;
}

footer .logo {
  display: block;
  width: 137px;
  margin: 0 auto -30px;
  position: relative;
  z-index: 20;
}
@media (max-width: 500px) {
  footer .logo {
    width: 63px;
    margin: 0 auto -20px;
  }
}

.footer-inner {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.wave {
  position: relative;
  height: 500px;
}

canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.instagram {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}
@media (max-width: 500px) {
  .instagram {
    flex-direction: column;
    padding-bottom: initial;
  }
}
.instagram p {
  width: 50%;
  color: var(--background-color);
  z-index: 1;
}
@media (max-width: 500px) {
  .instagram p {
    width: initial;
    margin-inline: auto;
    padding-bottom: 20px;
  }
}
.instagram .btn {
  width: 50%;
  padding-top: 0;
}
@media (max-width: 500px) {
  .instagram .btn {
    width: initial;
  }
}
.instagram .btn a {
  display: block;
  margin: 0 auto;
  color: var(--background-color);
  border: 1px solid var(--background-color);
}
.instagram .btn a::before {
  background: var(--background-color);
}
.instagram .btn a::after {
  background: var(--background-color);
}
.instagram .btn a i {
  margin-top: 0;
  padding-right: 5px;
  font-size: 2rem;
}

small {
  display: block;
  text-align: center;
}

.lower-footer {
  width: 100%;
}
.lower-footer .wave {
  height: 300px;
}
@media (max-width: 500px) {
  .lower-footer .wave {
    height: 200px;
  }
}
.lower-footer canvas {
  height: 200px;
}
@media (max-width: 500px) {
  .lower-footer canvas {
    height: 100px;
  }
}

.title {
  background-image: url(img/sky.png);
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
.title .text {
  writing-mode: vertical-rl;
  letter-spacing: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}
@media (max-width: 500px) {
  .title .text {
    writing-mode: horizontal-tb;
    top: 10%;
    left: 10%;
    transform: translate(0, 0);
  }
}
.title .text h2 {
  padding-left: 50px;
}
@media (max-width: 500px) {
  .title .text h2 {
    padding-left: 0;
  }
}
.title .text p {
  padding-top: 60px;
  line-height: 45px;
}

.menus {
  max-width: 1200px;
  padding-inline: 3%;
}
@media (max-width: 500px) {
  .menus h2 {
    margin-inline: auto;
  }
}
.menus picture {
  width: 33.3333333333%;
  filter: drop-shadow(6px 4px 4px var(--shadow-color));
}
@media (max-width: 500px) {
  .menus picture {
    width: 250px;
    margin: 0 auto;
  }
}
.menus picture source,
.menus picture img {
  border-radius: 40px;
}
.menus .menu {
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
@media (max-width: 500px) {
  .menus .menu {
    flex-direction: column;
  }
}
.menus .menu:not(:first-of-type) {
  padding-top: 30px;
}
.menus .menu:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  .menus .menu:nth-of-type(2) {
    flex-direction: column;
  }
}
.menus .menu:nth-of-type(2) .text {
  padding: 10px 20px 0 0;
}
@media (max-width: 500px) {
  .menus .menu:nth-of-type(2) .text {
    padding: 10px 0 0 0;
  }
}
.menus .text {
  width: 66.6666666667%;
  padding: 10px 0 0 20px;
  text-align: left;
}
@media (max-width: 500px) {
  .menus .text {
    width: 250px;
    padding: 10px 0 0 0;
    margin-inline: auto;
  }
}
.menus .text dl {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  border-bottom: 1px solid var(--text-color);
}
@media (max-width: 500px) {
  .menus .text dl {
    flex-direction: column;
    border-bottom: none;
  }
}
@media (max-width: 500px) {
  .menus .text dl dt {
    border-bottom: 1px solid var(--text-color);
  }
}
@media (max-width: 500px) {
  .menus .text dl dd {
    text-align: right;
  }
}
.menus .text p {
  padding: 5px 10px;
}

.lower .menus .wrapper:first-of-type {
  margin-bottom: 100px;
}
.lower .content {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
@media (max-width: 500px) {
  .lower .content {
    margin-bottom: initial;
  }
}
.lower .content:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  .lower .content:nth-of-type(2) {
    flex-direction: row;
  }
}
.lower .content:nth-of-type(2) .item {
  margin-inline: 50px 0;
}
@media (max-width: 500px) {
  .lower .content:nth-of-type(2) .item {
    margin-inline: auto;
  }
}
@media (max-width: 500px) {
  .lower .content picture {
    display: none;
  }
}
.lower .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 66.6666666667%;
  margin-right: 50px;
}
@media (max-width: 500px) {
  .lower .item {
    width: 80%;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
  }
}
.lower .item dt {
  width: 80%;
  padding-top: 30px;
  border-bottom: 1px solid var(--text-color);
}
@media (max-width: 500px) {
  .lower .item dt {
    width: 100%;
  }
}
.lower .item dd {
  width: 20%;
  text-align: right;
  padding-top: 30px;
  border-bottom: 1px solid var(--text-color);
}
@media (max-width: 500px) {
  .lower .item dd {
    width: 100%;
    padding-top: 0;
    border-bottom: none;
  }
}

.drink-img,
.food-img {
  position: relative;
  display: none;
  margin: 50px auto 0;
  width: 292px;
  height: 248px;
}
@media (max-width: 500px) {
  .drink-img,
.food-img {
    display: block;
  }
}
.drink-img li,
.food-img li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.drink-img li {
  -webkit-animation: drink-fade 25s infinite;
          animation: drink-fade 25s infinite;
}
.drink-img li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.drink-img li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.drink-img li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.drink-img li:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.drink-img li:nth-child(5) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

.food-img li {
  -webkit-animation: food-fade 15s infinite;
          animation: food-fade 15s infinite;
}
.food-img li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.food-img li:nth-child(2) {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

@-webkit-keyframes drink-fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes drink-fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes food-fade {
  0% {
    opacity: 0;
  }
  13.3% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  46.6% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes food-fade {
  0% {
    opacity: 0;
  }
  13.3% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  46.6% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gallery {
  max-width: 1200px;
  padding-inline: 3%;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  .gallery {
    padding-inline: 0;
    flex-direction: column;
  }
}
.gallery .inner {
  position: relative;
  width: 100%;
  font-size: clamp(1rem, 4vw, 2.4rem);
}
.gallery .inner p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  font-size: 1em;
  letter-spacing: 10px;
  z-index: 1;
  line-height: 1.8;
  white-space: nowrap;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.gallery .inner ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .gallery .inner ul {
    align-items: center;
    margin-bottom: 5px;
  }
}
.gallery .inner ul:nth-of-type(1) {
  margin-top: 70px;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(1) {
    margin-top: initial;
  }
}
.gallery .inner ul:nth-of-type(1) .left {
  width: 40%;
  margin-inline: 40px 20px;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(1) .left {
    width: 45%;
    margin-inline: initial;
  }
}
.gallery .inner ul:nth-of-type(1) .right {
  width: 50%;
  margin-top: 50px;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(1) .right {
    margin-top: initial;
  }
}
.gallery .inner ul:nth-of-type(2) .left {
  width: 50%;
  margin-top: -70px;
  margin-left: -20px;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(2) .left {
    margin-top: initial;
    margin-left: initial;
  }
}
.gallery .inner ul:nth-of-type(2) .right {
  width: 40%;
  margin-top: 20px;
  margin-inline: 20px 40px;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(2) .right {
    width: 45%;
    margin-top: initial;
    margin-inline: initial;
  }
}
.gallery .inner ul:nth-of-type(3) {
  width: 50%;
  margin-inline: 100px 0;
}
@media (max-width: 500px) {
  .gallery .inner ul:nth-of-type(3) {
    margin-inline: auto;
  }
}

.heading {
  display: flex;
  justify-content: right;
}
@media (max-width: 500px) {
  .heading {
    justify-content: center;
  }
}

.interior picture {
  filter: drop-shadow(6px 4px 4px var(--shadow-color));
}

.fade {
  -webkit-animation: fadeIn 5s forwards;
          animation: fadeIn 5s forwards;
  opacity: 0;
}

.news .wrapper {
  max-width: 1200px;
  padding-inline: 3%;
  display: flex;
}
@media (max-width: 500px) {
  .news .wrapper {
    flex-direction: column;
  }
}
.news .inner {
  margin-inline: 100px;
  width: 100%;
}
@media (max-width: 500px) {
  .news .inner {
    margin-inline: 0;
  }
}
.news table {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
  position: relative;
  z-index: 80;
  text-align: left;
}
.news table tr {
  width: 100%;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s;
}
.news table tr:hover {
  opacity: 0.5;
}
.news table td,
.news table th {
  border-bottom: 1px solid var(--text-color);
  vertical-align: bottom;
}
.news table .day {
  width: 100px;
}
@media (max-width: 500px) {
  .news table .day {
    width: 75px;
  }
}
.news table th {
  text-align: left;
  font-size: 2rem;
}
.news table .arrow {
  position: relative;
}
.news table .arrow::before {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 20px;
  height: 1px;
  bottom: 20px;
  right: 5px;
  transform: rotate(30deg);
}
.news table .arrow::after {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 20px;
  height: 1px;
  bottom: 10px;
  right: 5px;
  transform: rotate(-30deg);
}
.news .btn {
  padding-top: 50px;
  padding-right: 40px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .news .btn {
    justify-content: center;
    padding-right: initial;
  }
}

.lower .news table tr {
  height: 100px;
}
@media (max-width: 500px) {
  .lower .news table tr {
    height: 50px;
  }
}
.lower .news .btn {
  justify-content: center;
}

.news-lower h2 {
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  .news-lower h2 {
    margin-bottom: 80px;
  }
}
.news-lower .wrapper {
  font-size: 1.6rem;
}
.news-lower h3 {
  font-size: 2rem;
  border-bottom: 1px solid var(--text-color);
}
.news-lower p {
  padding: 20px 50px 0;
}
.news-lower .thumbnails {
  padding-top: 20px;
}
.news-lower .post-thumb {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(6px 4px 4px var(--shadow-color));
}

.about {
  margin-bottom: 200px;
}
@media (max-width: 500px) {
  .about {
    margin-bottom: 0;
  }
}
.about .wrapper {
  max-width: 1200px;
  display: flex;
}
@media (max-width: 500px) {
  .about .wrapper {
    flex-direction: column;
  }
}
.about .left {
  width: 50%;
  filter: drop-shadow(6px 4px 4px var(--shadow-color));
}
@media (max-width: 500px) {
  .about .left {
    width: 100%;
  }
}
.about .left .fade {
  -webkit-animation: fadeIn 7s forwards;
          animation: fadeIn 7s forwards;
  opacity: 0;
}
.about .right {
  width: 50%;
  margin-left: 20px;
  font-size: 1.6rem;
}
@media (max-width: 500px) {
  .about .right {
    width: 100%;
    margin-left: 0;
    padding-top: 30px;
    text-align: left;
  }
}
.about .right dl {
  display: grid;
  grid-template-columns: 30% 70%;
}
.about .right dt,
.about .right dd {
  padding: 30px 0;
  line-height: 30px;
}
@media (max-width: 500px) {
  .about .right dt,
.about .right dd {
    padding: 15px 0;
  }
}
.about .right .btn {
  padding-top: 30px;
}
/*# sourceMappingURL=main.css.map */