@charset "utf-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
table,
input,
textarea,
select,
option {
  line-height: 1.1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  vertical-align: top;
}
a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
}
html {
  /* scroll-behavior: smooth; */
  overflow: auto;
}
html::-webkit-scrollbar {
  width: 7px;
  background: none;
}
html::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #00000080;
}
html * {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #fffdf6;
  color: #432107;
  --header-height: 116px;
}
@media (max-width: 1024px) {
  body {
    --header-height: 72px;
  }
}
@media (max-width: 767px) {
  body {
    --header-height: 58px;
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js-fade.is-inview {
  opacity: 1;
  transform: none;
}

.show-fade-display{
  opacity: 0;  
  animation: fade-show 2s ease-in 1s forwards;
  will-change: opacity, transform;
}
@keyframes fade-show{
  from{
    opacity: 0;
  }
  to{
    opacity: 1.0;
  }
}

main {
  overflow-x: hidden;
}
.container {
  width: min(1120px, 100% - 320px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    width: min(1120px, 100% - 160px);
  }
}
@media (max-width: 767px) {
  .container {
    width: min(1120px, 100% - 32px);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 23.5px 0 23.5px 40px;
  background-color: rgba(255, 253, 246,0.5);
  transition: .3s;
  gap: 40px;
}
.header.is-toggle {
  padding-top: 12px;
  padding-bottom: 12px;
  height: 80px;
}
.header.is-toggle .header-contact{
  transform: translateX(100%);
}
@media (max-width: 767px) {
  .header {
    padding: 8px 0 8px 16px;
  }
}
.header .header__logo {
  width: 229px;
  height: 69px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1360px) {
  .header .header__logo {
    width: 200px;
    height: 60px;
  }
}
@media (max-width: 1024px) {
  .header .header__logo {
    width: 180px;
    height: 54px;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    width: 128px;
    height: 42px;
  }
}
.header .header__logo img {
  width: 100%;
  height: 100%;
  transition: .3s;
  -o-object-fit: cover;
  object-fit: cover;
}
.header.is-toggle .header__logo img{
  width: 80%;
  height: 80%;
}

@media (max-width: 767px) {
  .header .header__logo img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (max-width: 1024px) {
  .header .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #f3f0e4;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 50px 80px;
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .header .nav {
    padding: 50px 16px;
  }
}
.header .nav.is-open {
  opacity: 1;
  visibility: visible;
}
.header .nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1360px) {
  .header .nav .nav__list {
    gap: 16px 24px;
  }
}
@media (max-width: 1024px) {
  .header .nav .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .header .nav .nav__list {
    text-align: left;
    margin: 0 16px;
  }
}
.header .nav .nav__list li {
  position: relative;
}
.header .nav .nav__list li:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.header .nav .nav__list li:before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #432107;
  left: 0;
  bottom: -8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 2px;
}
@media (max-width: 1024px) {
  .header .nav .nav__list li:before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header .nav .nav__list li {
    border-bottom: 1px solid #e0dbc6;
  }
}
@media (max-width: 1024px) {
  .header .nav .nav__list li:first-of-type {
    border-top: 1px solid #e0dbc6;
  }
}
.header .nav .nav__list li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2a240a;
}
@media (max-width: 1024px) {
  .header .nav .nav__list li a {
    color: #432107;
    padding-block: 23px 24px;
    display: block;
  }
}
@media (max-width: 1024px) {
  .header .nav .contact-button .button01 {
    background-color: #d6cdb2;
    margin: 48px auto 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .header .nav .contact-button .button01 {
    margin: 48px auto 0;
    padding: 14px 16px;
  }
}
@media (max-width: 767px) {
  .header .nav .contact-button .button01__tel {
    margin-top: 8px;
  }
}
@media (max-width: 1024px) {
  .header .nav .contact-button .button01__tel svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .header .nav .contact-button .button01__tel svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1024px) {
  .header .nav .contact-button .button01__tel span {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .header .nav .contact-button .button01__tel span {
    font-size: 2.8rem;
  }
}
@media (max-width: 1024px) {
  .header .nav .contact-button .button01__tel .button01__img {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 767px) {
  .header .nav .contact-button .button01__tel .button01__img {
    width: 48px;
    height: 48px;
  }
}
.header .header-contact {
  padding: 16px 24px;
  background-color: #e0dbc6;
  border-radius: 0 0 0 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transform: translateX(0);
  transition: .3s;
}
@media (max-width: 1360px) {
  .header .header-contact {
    padding: 16px 20px;
  }
}
@media (max-width: 1024px) {
  .header .header-contact {
    display: none;
  }
}
.header .header-contact .header-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.header .header-contact .header-contact__tel a {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.header .header-contact .header-contact__text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 8px;
}
.header .hamburger {
  width: 58px;
  height: 58px;
  background-color: #432107;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 100;
  display: none;
}
@media (max-width: 1024px) {
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .hamburger.is-open .hamburger__icon:before {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.header .hamburger.is-open .hamburger__icon span {
  opacity: 0;
}
.header .hamburger.is-open .hamburger__icon:after {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
.header .hamburger .hamburger__icon {
  position: relative;
  width: 24px;
  height: 13px;
  border: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header .hamburger .hamburger__icon span,
.header .hamburger .hamburger__icon:before,
.header .hamburger .hamburger__icon:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}
.header .hamburger .hamburger__icon:before {
  top: 0;
}
.header .hamburger .hamburger__icon span {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header .hamburger .hamburger__icon:after {
  bottom: 0;
}
.footer {
  padding-block: 56px;
  background-color: #38854b;
}
@media (max-width: 1024px) {
  .footer {
    padding-block: 52px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-block: 48px 16px;
  }
}
.footer .footer__inner {
  display: grid;
  gap: 120px;
  grid-template-columns: 42.9% 1fr;
}
@media (max-width: 1279px) {
  .footer .footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
@media (max-width: 767px) {
  .footer .footer__inner {
    gap: 46px;
  }
}
.footer .footer__left {
  color: #fffdf6;
}
.footer .footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer .footer__logo {
  width: 229px;
  height: 45px;
  display: block;
}
@media (max-width: 767px) {
  .footer .footer__logo {
    margin: 0 auto;
  }
}
.footer .footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer .footer__contact {
  margin-top: 32px;
}
.footer .footer__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}
.footer .footer__text span {
  display: inline-block;
}
@media (max-width: 767px) {
  .footer .footer__text br + span {
    padding-left: 11px;
  }
}
@media (max-width: 767px) {
  .footer .footer__text {
    text-align: center;
    line-height: unset;
  }
}
.footer .footer__text + .footer__text {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .footer .footer__text + .footer__text {
    margin-top: 8px;
  }
}
.footer .footer__text--sm {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
.footer .footer__table {
  margin-top: 32px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #fffdf6;
}
@media (max-width: 767px) {
  .footer .footer__table {
    padding: 16px 16px 12px;
  }
}
.footer .footer__table tr:nth-of-type(2) th,
.footer .footer__table tr:nth-of-type(2) td {
  padding-top: 10px;
  padding-bottom: 18px;
}
@media (max-width: 1279px) {
  .footer .button01 {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer .button01 {
    margin: 0 auto;
  }
}
.footer .button02 {
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .footer .button02 {
    margin: 28px auto 0;
  }
}
@media (max-width: 767px) {
  .footer .button02 {
    margin: 16px auto 0;
  }
}
.footer .footer__copyright {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  text-align: right;
  margin-top: auto;
  color: #fff;
}
@media (max-width: 1279px) {
  .footer .footer__copyright {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .footer .footer__copyright {
    margin-top: 24px;
  }
}
.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.tablet {
  display: none !important;
}
@media (max-width: 1024px) {
  .tablet {
    display: block !important;
  }
}
.is-lock {
  overflow: hidden;
}
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 1.8rem;
  font-weight: 400;
  width: min(290px, 100%);
  border: 1px solid #432107;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .button {
    width: min(270px, 100%);
    padding: 13px 20px;
  }
}
@media (max-width: 767px) {
  .button {
    width: min(240px, 100%);
    font-size: 1.6rem;
    padding: 11px 20px;
  }
}
.button:hover {
  background-color: #432107;
  color: #fff;
}
.button01 {
  width: min(519px, 100%);
  background-color: #fffdf6;
  display: block;
  text-align: center;
  padding: 22px;
}
@media (max-width: 1024px) {
  .button01 {
    width: min(480px, 100%);
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .button01 {
    padding: 16px;
  }
}
.button01:hover {
  background-color: #fff;
  opacity: 1;
}
.button01 .button01__text {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}
.button01 .button01__tel {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .button01 .button01__tel svg {
    width: 24px;
    height: 24px;
  }
}
.button01 .button01__tel span {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-inline: 6px -6px;
}
@media (max-width: 767px) {
  .button01 .button01__tel span {
    font-size: 2.8rem;
  }
}
.button01 .button01__tel .button01__img {
  width: 56px;
  height: 56px;
}
@media (max-width: 767px) {
  .button01 .button01__tel .button01__img {
    width: 48px;
    height: 48px;
  }
}
.button02 {
  width: min(519px, 100%);
  background-color: #f3f0e4;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 27px 22px;
  text-align: center;
}
@media (max-width: 1024px) {
  .button02 {
    width: min(480px, 100%);
    padding: 25px 20px;
  }
}
@media (max-width: 767px) {
  .button02 {
    padding: 16px;
  }
}
.button02:hover {
  background-color: #fff;
  opacity: 1;
}
.button02 .button02__text {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
@media (max-width: 767px) {
  .button02 .button02__text {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.button02 .button02__title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .button02 .button02__title {
    font-size: 2rem;
  }
}
.button02 .button02__img {
  width: 80px;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0;
  right: 4px;
}
@media (max-width: 767px) {
  .button02 .button02__img {
    width: 64px;
    bottom: -2px;
    right: 0;
  }
}
.section-head {
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .section-head {
    margin-bottom: 42px;
  }
}
@media (max-width: 767px) {
  .section-head {
    margin-bottom: 32px;
  }
}
.section-head.center {
  text-align: center;
}
.section-head .section-head__title--en {
  font-family: Cormorant, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #38854b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767px) {
  .section-head .section-head__title--en {
    font-size: 1.4rem;
    text-align: center;
  }
}
.section-head .section-head__title--ja {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 7px;
}
@media (max-width: 1024px) {
  .section-head .section-head__title--ja {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .section-head .section-head__title--ja {
    font-size: 2rem;
    text-align: center;
    margin-top: 8px;
  }
}
.section-head .section-head__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
@media (max-width: 767px) {
  .section-head .section-head__icon {
    width: 56px;
    height: 56px;
  }
}
.section-head .section-head__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-head {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1024px) {
  .page-head {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .page-head {
    margin-top: 40px;
  }
}
.page-head .page-head__title--en {
  font-family: Cormorant, serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #38854b;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .page-head .page-head__title--en {
    font-size: 1.4rem;
  }
}
.page-head .page-head__title--ja {
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .page-head .page-head__title--ja {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .page-head .page-head__title--ja {
    font-size: 2.4rem;
  }
}
.page-head .page-head__img {
  margin-top: 80px;
  aspect-ratio: 1440/320;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page-head .page-head__img {
    margin-top: 60px;
    aspect-ratio: unset;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .page-head .page-head__img {
    height: 200px;
    margin-top: 40px;
  }
}
.page-head .page-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-head .reserve {
    position: fixed;
    bottom: 40px;
    right: 0;
}
@media (max-width:767px){
  .page-head .reserve {
    bottom: 48px;
  }
}
.about-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1024px) {
  .about-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .about-title {
    font-size: 2rem;
  }
}
.about-title:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 48px;
  height: 1px;
  background-color: #38854b;
}
@media (max-width: 767px) {
  .about-title:before {
    width: 32px;
    bottom: -7px;
  }
}
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out 0.1s;
  transition: opacity 0.8s ease-out 0.1s;
}
.fade-in.active {
  opacity: 1;
}
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
  transition: opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
  transition: transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0),
    opacity 0.7s ease-out;
  transition: transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0),
    opacity 0.7s ease-out,
    -webkit-transform 0.7s cubic-bezier(0.1, -0.6, 0.2, 0);
}
.fade-up.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 767px) {
  .fade-up {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.fade-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translate(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out,
    -webkit-transform 0.8s ease-out;
}
.fade-left.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translate(0);
}
@media (max-width: 767px) {
  .fade-left {
    -webkit-transform: translateX(0);
    transform: translate(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.fade-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translate(-30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out,
    -webkit-transform 0.8s ease-out;
}
.fade-right.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translate(0);
}
@media (max-width: 767px) {
  .fade-right {
    -webkit-transform: translateX(0);
    transform: translate(0);
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
  }
}
.mv-animation {
  -webkit-animation: mvFadeIn 1.2s ease-in;
  animation: mvFadeIn 1.2s ease-in;
}
@-webkit-keyframes mvFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mvFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reserve__table {
  width: 100%;
  border-spacing: 0;
}
.reserve__table tr th,
.reserve__table tr td {
  border-bottom: 1px solid #f3f0e4;
  text-align: center;
}
.reserve__table tr th:first-of-type,
.reserve__table tr td:first-of-type {
  width: 21%;
  text-align: left;
}
.reserve__table tr th.sm,
.reserve__table tr td.sm {
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .reserve__table tr th.sm,
  .reserve__table tr td.sm {
    font-size: 0.8rem;
  }
}
.reserve__table tr th {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reserve__table tr th {
    font-size: 1rem;
  }
}
.reserve__table tr th:first-of-type {
  font-weight: 400;
}
.reserve__table tr td {
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .reserve__table tr td {
    font-size: 1rem;
  }
}
.reserve__table tr td:first-child {
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .reserve__table tr td:first-child {
    font-size: 1rem;
  }
}
.reserve__table tr:first-of-type th,
.reserve__table tr:first-of-type td {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .reserve__table tr:first-of-type th,
  .reserve__table tr:first-of-type td {
    padding-bottom: 16px;
  }
}
.reserve__table tr:first-of-type th:first-of-type,
.reserve__table tr:first-of-type td:first-of-type {
  padding-left: 0;
}
.reserve__table tr:nth-of-type(2) th,
.reserve__table tr:nth-of-type(2) td {
  padding-block: 8px 16px;
}
@media (max-width: 767px) {
  .reserve__table tr:nth-of-type(2) th,
  .reserve__table tr:nth-of-type(2) td {
    padding-block: 8px 18px;
  }
}
.reserve__table tr:nth-of-type(3) th,
.reserve__table tr:nth-of-type(3) td {
  padding-block: 12px 0;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .reserve__table tr:nth-of-type(3) th,
  .reserve__table tr:nth-of-type(3) td {
    padding-block: 6px 0;
  }
}
.reserve {
  background-color: #fff;
  -webkit-box-shadow: -8px 8px 16px 0 rgba(67, 33, 7, 0.0509803922);
  box-shadow: -8px 8px 16px #4321070d;
  display: grid;
  grid-template-columns: 68px 1fr;
  width: 564px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 98;
  margin-right: -496px;
}
@media (max-width: 767px) {
  .reserve {
    grid-template-columns: 1fr;
    height: 48px;
    width: calc(100% - 32px);
    margin: 0 16px -48px;
    bottom: 0;
  }
}
.reserve.is-open {
  width: 564px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .reserve.is-open {
    height: 352px;
    width: calc(100% - 32px);
    margin: 0 16px;
    bottom: 0;
  }
}
.reserve.is-open .reserve__button span:last-child {
  display: none;
}
.reserve.is-fixed {
  position: fixed !important;
  top: 50% !important;
  right: 0 !important;
  bottom: unset !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
@media (max-width: 767px) {
  .reserve.is-fixed {
    top: unset !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
    bottom: 0 !important;
    opacity: 1;
    margin-bottom: 0;
  }
}
.reserve .reserve__head {
  background-color: #f3f0e4;
  padding: 23px 16px;
  position: relative;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.44em;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .reserve .reserve__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 8px 16px;
  }
}
.reserve .reserve__head:hover {
  background-color: #e0dbc6;
}
.reserve .reserve__icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .reserve .reserve__icon img {
    width: 32px;
    height: 32px;
  }
}
.reserve .reserve__title {
  font-size: 1.6rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 767px) {
  .reserve .reserve__title {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    text-orientation: unset;
    letter-spacing: 0.08em;
    margin-left: -3px;
  }
}
.reserve .reserve__body {
  padding: 28px 12px 24px 24px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .reserve .reserve__body {
    padding: 24px 8px 24px 16px;
  }
}
.reserve .reserve__block {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .reserve .reserve__block {
    margin-top: 23px;
  }
}
.reserve .reserve__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .reserve .reserve__contact {
    gap: 6px;
  }
}
.reserve .reserve__contact .reserve__text--lg {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .reserve .reserve__contact .reserve__text--lg {
    width: 100%;
    text-align: center;
  }
}
.reserve .reserve__contact .reserve__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .reserve .reserve__contact .reserve__tel {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.reserve .reserve__contact .reserve__tel svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .reserve .reserve__contact .reserve__tel svg {
    width: 20px;
    height: 20px;
  }
}
.reserve .reserve__contact .reserve__tel a {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.reserve .reserve__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .reserve .reserve__text {
    margin-top: 16px;
    padding-right: 8px;
  }
}
.reserve .reserve__button {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 16.5px;
  right: 16px;
  z-index: 1;
  display: none;
}
@media (max-width: 767px) {
  .reserve .reserve__button {
    display: block;
  }
}
.reserve .reserve__button span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #432107;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reserve .reserve__button span:first-child {
  width: 100%;
  height: 1px;
}
.reserve .reserve__button span:last-child {
  width: 1px;
  height: 100%;
}
