/*---------------------------------------- 得地記入部分 ----------------------------------------*/
a {
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

h1 {
  font-size: 2.5rem;
  padding: .67em 0 0;
  margin: 0 0 .67em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  .wrapper text-decoration: underline dotted
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText
}

textarea {
  overflow: auto
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

a:hover {
  opacity: .8
}

/*---------------------------------------- ベース ----------------------------------------*/
body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: var(--font-size);
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--side-padding);
  margin: 0 auto;
}

/*---------------------------------------- header ----------------------------------------*/
header {
  --logo-width: 192px;
  --hamburger-width: 40px;
  --hamburger-padding: 2em;
  -webkit-box-align: center;
  align-items: center;
  position: fixed;
  width: calc(100% - var(--hamburger-width) - var(--hamburger-padding) * 2 + 1em);
  padding: 2em 0 0 2em;
  color: #fff;
}

/* logo */
header .logo {
  width: var(--logo-width);
}

header .logo a {
  display: block;
}

header .nav_box {}

/* links */
header .links {
  width: calc(100% - var(--logo-width));
  font-size: clamp(1.2rem, 1.1vw, 1.8rem);
  /* font-size: 2.2rem; */
  font-family: "Source Han Serif Japanese", serif;
  column-gap: 2em;
  row-gap: 1em;
}

header .links a,
header .links .dropdown {
  display: inline;
  position: relative;
  cursor: pointer;
}

header .links a.sp {
  display: none;
}

header .links a.online_shop {
  width: 120px;
}

header .links a.online_shop img {
  position: absolute;
  bottom: -3em;
  padding: 12em 0.5em 0.5em;
  background: #0D5257;
}

header .links .dropdown ul {
  position: absolute;
  width: max-content;
  min-width: 10em;
  font-size: 0.9em;
  top: 100%;
  left: -1em;
  padding: 0.4em 0 0 1em;
  pointer-events: none;
}

header .links .dropdown:hover ul {
  pointer-events: all;
}

header .links .dropdown ul:hover {}

header .links .dropdown ul li {
  color: #fff;
  background: #333333;
  opacity: 0;
  transform: translateY(-1em);
  transition-timing-function: var(--anime2-2);
  transition-duration: 0.2s;
}

header .links .dropdown:hover ul li {
  transform: translateY(0);
}

header .links .dropdown ul li:nth-child(1) {
  transition-delay: 0s;
}

header .links .dropdown ul li:nth-child(2) {
  transition-delay: 0.1s;
}

header .links .dropdown ul li:nth-child(3) {
  transition-delay: 0.2s;
}

header .links .dropdown ul li:nth-child(4) {
  transition-delay: 0.3s;
}

header .links .dropdown ul li:nth-child(5) {
  transition-delay: 0.4s;
}

header .links .dropdown ul li:nth-child(6) {
  transition-delay: 0.5s;
}

header .links .dropdown:hover ul li {
  opacity: 1;
}

header .links .dropdown ul li a {
  display: block;
  padding: 0.2em 0.5em;
}

header .links .dropdown ul li a:hover {}

header .links .dropdown ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #c9940e;
  transition: var(--anime2-2) 0.3s;
  z-index: -1;
}

header .links .dropdown ul li a:hover:before {
  width: 100%;
}

header .links .translate {}

header .links .translate select {
  color: #fff;
  background: #00000000;
  border-width: 0px;
  cursor: pointer;
}

header .links .translate select option {
  background: #000;
  cursor: pointer;
}

/* hamburger */
header .hamburger {
  font-size: 12px;
  font-family: "garamond-premier-pro", serif;
  text-align: center;
  position: fixed;
  top: var(--hamburger-padding);
  right: var(--hamburger-padding);
  cursor: pointer;
  z-index: 4;
}

header .hamburger .bar {
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all .5s;
}

header .hamburger.active .bar {
  background-color: #000
}

header .hamburger span {
  display: block;
  position: absolute;
  width: 20px;
  height: 3px;
  right: 8px;
  background-color: #fff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  background: repeating-linear-gradient(to right, #fff, #fff 3px, rgba(84, 84, 84, 0) 3px, rgba(84, 84, 84, 0) 7px)
}

header .hamburger span:nth-child(1) {
  top: 11px
}

header .hamburger span:nth-child(2) {
  top: 19px
}

header .hamburger span:nth-child(3) {
  top: 27px
}

header .hamburger.active span {
  top: 19px;
  height: 1px;
  background: none;
  background-color: #fff;
  width: 20px;
  -webkit-transition: all .5s;
  transition: all .5s
}

header .hamburger.active span:nth-child(1) {
  right: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

header .hamburger.active span:nth-child(2) {
  display: none
}

header .hamburger.active span:nth-child(3) {
  right: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

header .hamburger * {
  letter-spacing: 1px;
}

header .hamburger .menu {
  display: block;
}

header .hamburger.active .menu {
  display: none;
}

header .hamburger .close {
  display: none;
}

header .hamburger.active .close {
  display: block;
}

@media screen and (max-width: 768px) {
  header {
    --logo-width: 150px;
    -webkit-box-align: start;
    align-items: start;
  }

  header .logo a {
    max-width: 110px;
  }

  header .links {
    font-size: 1.4rem;
    gap: 0.5em;
  }

  header .links a {
    width: 100%;
  }

  header .links a,
  header .links .dropdown {
    display: none;
  }

  header .links a img {
    max-width: 25px;
  }

  header .links .translate {
    width: 134px;
  }
}

@media screen and (max-width: 480px) {
  header {
    --logo-width: 110px;
  }

  header .links {
    font-size: 1.2rem;
  }

  header .links .translate {
    width: 116px;
  }
}

/*---------------------------------------- nav ----------------------------------------*/
#nav {
  position: absolute;
  padding: calc(var(--hamburger-width) * 1) var(--hamburger-padding) 0;
  display: none;
  top: 0;
  right: calc(-3 * var(--hamburger-width));
  height: 100vh;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  /* font-size: 5.5rem; */
  font-family: "garamond-premier-pro-display", serif;
  background-color: rgba(38, 38, 38, .8);
  z-index: 3;
}

#nav>*:not(:last-child) {
  margin: 0 auto 2em;
}

/* items */
#nav .items {
  gap: 1em;
}

#nav .items .item {}

#nav .items .item a {
  color: #fff;
}

#nav .items .item a:hover {
  opacity: 1;
  mix-blend-mode: normal;
  isolation: isolate
}

#nav .items .item .english {}

#nav .items .item .border {
  position: relative
}

#nav .items .item .border::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #fff;
  -webkit-transition: 1s;
  transition: 1s
}

#nav .items .item ul.subs {
  margin: 0 0 0 1em;
}

#nav .items .item ul.subs li {
  font-size: 0.7em;
  /* font-size: 3.4rem; */
  font-family: "Source Han Serif Japanese", serif;
  line-height: 2;
}

#nav .items .item ul.subs li a {
  color: #8c8c8c;

}

#nav .arrow__right {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #ede185;
  line-height: 1;
  width: 50px;
  height: 1px;
  background: currentColor;
  left: -20px;
  -webkit-transition: 1s;
  transition: 1s
}

#nav .reservations {
  display: block;
  margin-bottom: 20px
}

#nav .reservation {
  display: block;
  text-align: left;
  margin-bottom: 10px;
  margin-left: -20px
}

#nav .reservation__text {
  font-size: 20px;
  color: #fff;
  font-family: "Source Han Serif Japanese", serif
}

#nav .reservation__icon {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  max-width: 30px;
  vertical-align: text-bottom
}

/* contacts */
#nav .contacts {}

#nav .contacts>*:not(:last-child) {
  margin: 0 0 5px;
}

#nav .contacts a {
  display: block;
  color: #fff;
}

#nav .contacts a.arrow {
  position: relative;
  font-size: 1.3em;
  left: calc(-0.6 * var(--hamburger-width));
}

#nav .contacts a.arrow.sp {
  display: none;
}

#nav .contacts a.circle {
  font-size: 14px;
}

#nav .contacts a img {
  max-width: 20px;
  display: inline-block;
  vertical-align: sub
}

#nav .contacts a:before {
  content: "";
  display: inline-block;
  width: var(--width);
  height: var(--width);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}

#nav .contacts a.arrow:before {
  --width: 26px;
  background-image: url(../img/common/slide_arrow.webp);
  transform: scale(-1, 1);
}

#nav .contacts a.circle:before {
  --width: 20px;
  background-image: url(../img/common/circle_arrow.webp);
}

#nav .contacts a span {
  font-family: "Source Han Serif Japanese", serif;
}

#nav .sns {
  gap: 1em;
}

#nav .sns a {
  width: 20%;
  max-width: 25px;
}

#nav .sns a img {}

@media screen and (max-width: 768px) {
  #nav>*:not(:last-child) {
    margin: 0 auto 1em;
  }

  #nav .contacts a.arrow {
    font-size: 1em;
  }

  #nav .contacts a.arrow.sp {
    display: block;
  }
}

/*---------------------------------------- sidebar ----------------------------------------*/
.sidebar {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    display: block;
  }
}


.sidebar ul {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .sidebar ul {}
}

.sidebar ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.sidebar ul li a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ffffff;
}

#contact .sidebar ul li a {
  font-size: 14px;
  color: #fff
}


a.sidebar__list__link:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  margin: 0 8px 0 0;
}

/* .sidebar__list__icon {
  width: 8px;
  margin-right: 10px;
} */

.sibebar__year:not(:last-of-type) {
  margin-bottom: 10px;
}

.sibebar__year__link {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.sidebar__year__icon {
  font-size: 8px;
  margin-right: 10px;
  vertical-align: middle;
}


/*---------------------------------------- ページネーション ----------------------------------------*/
.pagination {
  font-weight: 600;
  gap: 0.5em;
}

.pagination>*:not(.next):not(.prev) {
  width: 2em;
  border-radius: 3px;
  border: 1px solid hsla(43, 87%, 42%, 0.4);
  text-align: center;
  transition: ease-in 0.2s;
}

.pagination span {}

.pagination span.current {
  background: #c9940e;
}

.pagination a {}

.pagination a:not(.next):not(.prev):hover {
  opacity: 0.8;
  background: rgba(200, 147, 14, 0.5);
}

/*---------------------------------------- 共通部分 ----------------------------------------*/
.jp_only {
  display: none;
}

.jp_only.lang-ja {
  display: block;
}

h1.h1_title {
  color: #c9940e;
  margin: 0 0 2em 1em;
}

h1.h1_title .english {
  font-family: "garamond-premier-pro", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 2px;
}

h1.h1_title .japanese {
  font-size: 16px;
  font-family: "Source Han Serif Japanese", serif;
  letter-spacing: 1px;
  margin-left: 5px
}

@media screen and (max-width: 768px) {
  h1.h1_title .japanese {
    font-size: 14px;
  }

  h1.h1_title .english {
    font-size: 34px;
  }
}

/*---------------------------------------- footer ----------------------------------------*/
footer {
  --footer-margin: 4em;
  color: #fff;
  text-align: center;
  padding: 0 0 100px;
  margin: 150px auto 0;
}

footer .footer_inner {
  /* max-width: 1200px; */
}

footer .logo {
  max-width: 180px;
  margin: 0 auto var(--footer-margin);
}

footer .logo img {}

footer .list {
  gap: calc(var(--footer-margin) / 2);
  margin: 0 0 var(--footer-margin);
  font-family: "Source Han Serif Japanese", serif;
}

/* items */
footer .list .items {
  gap: 1.5em;
  font-size: 1.6rem;
  /* font-size: 2rem; */
}

footer .list .items .item {}

footer .list .items .item>a {
  display: block;
  text-align: left;
  margin: 0 auto 0.5em;
}

footer .list .items .item ul {
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  font-size: 0.875em;
  gap: 1em;
}

footer .list .items .item ul li {
  line-height: 120%;
  text-align: left;
}

footer .list .items .item ul li a {
  color: #8c8c8c;
  /* font-size: 1.4rem; */
  /* font-size: 1.2rem; */
}

/* link */
footer .list .link {}

footer .list .link .reservations {
  gap: 15px;
  margin-bottom: 40px;
}

footer .list .link .reservations a {
  display: block;
  text-align: left;
  font-size: 1em;
  /* font-size: 3rem; */
}

footer .list .link .reservations a:before {
  --width: 26px;
  content: "";
  display: inline-block;
  width: var(--width);
  height: var(--width);
  background: url(../img/common/slide_arrow.webp);
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}

footer .list .link .reservations a .text {}

footer .list .link .contacts {
  text-align: left;
  gap: 15px;
}

footer .list .link .contacts a {
  font-size: 1em;
  /* font-size: 2.1rem; */
}

footer .list .link .contacts a:before {
  --width: 26px;
  content: "";
  display: inline-block;
  width: var(--width);
  height: var(--width);
  background: url(../img/common/circle_arrow.webp);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 0.5em 0 0;
}

footer .list .link .contacts a .text {
  font-size: 14px
}

/* sns */
footer .sns {
  gap: 1.5em;
  margin: calc(var(--footer-margin) / 2) 0;
}

footer .sns a {
  width: 25px;
}

footer .sns a img {}

/* copyright */
footer .copyright {
  font-size: 1.2rem;
  font-family: "garamond-premier-pro", serif
}

@media screen and (max-width: 768px) {
  footer .list .items {
    max-width: 220px;
    font-size: clamp(1.4rem, 3.33vw, 1.8rem);
  }

  footer .list .items .item {
    width: 100%;
  }

  footer .list .items .item ul {
    gap: 0.8em;
  }

  footer .list .items .item ul li {
    text-align: center;
  }

  footer .list .items .item ul li a {
    /* font-size: 0.9em; */
  }

  footer .list .items .item>a {
    display: inline-block;
  }

  footer .list .items .item a {
    padding: 0.2em 0.5em;
    text-align: center;
  }

  footer .list .items .item a .english {
    font-size: 20px;
  }

  footer .list .items .item a .kana {
    font-size: 14px;
  }

  footer .link .reservations a {
    display: block
  }
}
