@charset "UTF-8";
/* 
----------------------------------------
|  【Utility】  ユーティリティ：u-○○○○  |
|  【Layout】   レイアウト　　：l-○○○○  |
|  【Component】コンポーネント：c-○○○○  |
----------------------------------------
*/

/* 
============================================================
---- 基本設定 ----
============================================================
*/
/* 欧文 */
/* Lexend Deca */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
/* DM Serif Display */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");

/* 和文 */
/* Zen Kaku Gothic Antique */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");

:root {
  --font-lexend-deca: "Lexend Deca", sans-serif;
  --font-dm-serif-display: "DM Serif Display", serif;
  --font-zen-kaku-gothic-antique: "Zen Kaku Gothic Antique", sans-serif;

  --color-tricolore-green: #006532;
  --color-tricolore-red: #920e14;
  --color-base: #ffffff;
  --color-border: #dcdadb;
  --color-accent: #1a1a1a;
  --color-orange-half: rgba(229, 157, 92, 0.5);
  --color-text: #4e4449;
  --color-text-description: #958f92;
  --color-section-bg: #f7f8f4;

  --layout-margin-small-pc: 36px;
  --layout-margin-large-pc: 72px;
  --layout-margin-small-sp: 21px;
  --layout-margin-large-sp: 24px;

  --size-frame-width: 1440px;

  --zindex-modal: 100;
  --zindex-top-mv-cover: 52;
  --zindex-header-top-mv: 52;
  --zindex-top-mv: 51;
  --zindex-header-subpages: 50;
  --zindex-footer: 49;
  --zindex-main: 48;
  --zindex-tooltip: 20;
  --zindex-tooltipBottom: 10;
  --zindex-upper: 2;
  --zindex-default: 1;
  --zindex-lower: -1;
}

@media screen and (max-width: 767px) {
  :root {
    /* --size-frame-width: calc(750px / 2); */
    --size-frame-width: 750px;
  }
}

body {
  position: relative;
  color: var(--color-text);
  font-family: var(--font-zen-kaku-gothic-antique);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: var(--color-base);
  overflow-x: clip;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.785;
  }
}

body:has([data-status-header-nav="open"]) {
  overflow: hidden;
}

a,
button {
  transition: opacity 0.3s;
}

.main {
  z-index: var(--zindex-main);
}

/* 
============================================================
---- 【Utility】非表示 ----
============================================================
*/
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* 
============================================================
---- 【Utility】行数制限 ----
============================================================
*/
.u-lineClamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u-lineClamp--1 {
  -webkit-line-clamp: 1;
}

@media screen and (max-width: 767px) {
  .u-lineClamp--sp1 {
    -webkit-line-clamp: 1;
  }
}

.u-lineClamp--2 {
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .u-lineClamp--sp2 {
    -webkit-line-clamp: 2;
  }
}

.u-lineClamp--3 {
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 767px) {
  .u-lineClamp--sp3 {
    -webkit-line-clamp: 3;
  }
}

/* 
============================================================
---- 【Utility】半角スペース分削除 ----
============================================================
*/
.u-bracketBefore {
  margin-left: -0.5em;
}

.u-bracketAfter {
  letter-spacing: -0.5em;
}

/* 
============================================================
---- 【Layout】基本コンテナ ----
============================================================
*/
.l-container {
  width: 100%;
  max-width: var(--size-frame-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns:
    var(--layout-margin-small-pc)
    var(--layout-margin-small-pc)
    var(--layout-margin-large-pc)
    var(--layout-margin-small-pc)
    1fr
    var(--layout-margin-small-pc)
    var(--layout-margin-large-pc)
    var(--layout-margin-small-pc)
    var(--layout-margin-small-pc);
}

@media screen and (max-width: 767px) {
  .l-container {
    max-width: none;
    grid-template-columns:
      var(--layout-margin-small-sp)
      var(--layout-margin-large-sp)
      1fr
      var(--layout-margin-large-sp)
      var(--layout-margin-small-sp);
  }
}

.l-container--fullWindow {
  max-width: none;
}

.l-container__inner--full {
  grid-column: 1 / -1;
}

.l-container__inner--outer {
  grid-column: 2 / -2;
}

.l-container__inner--wide {
  grid-column: 3 / -3;
}

@media screen and (max-width: 767px) {
  .l-container__inner--wide {
    grid-column: 2 / -2;
  }
}

.l-container__inner--base {
  grid-column: 4 / -4;
}

@media screen and (max-width: 1279px) {
  .l-container__inner--base {
    grid-column: 3 / -3;
  }
}

@media screen and (max-width: 767px) {
  .l-container__inner--base {
    grid-column: 2 / -2;
  }
}

.l-container__inner--narrow {
  grid-column: 5 / -5;
}

@media screen and (max-width: 767px) {
  .l-container__inner--narrow {
    grid-column: 2 / -2;
  }
}

/* 
============================================================
---- 【Component】コンテンツ見出し ----
============================================================
*/
.c-secTitle {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .c-secTitle {
    padding-bottom: 21px;
  }
}

.c-secTitle--left {
  align-items: flex-start;
}

.c-secTitle--center {
  align-items: center;
}

.c-secTitle--right {
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .c-secTitle--right {
    text-align: center;
  }
}

.c-secTitle--small {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 17px;
}

@media screen and (max-width: 767px) {
  .c-secTitle--small {
    column-gap: 13px;
  }
}

.c-secTitle::after {
  content: "";
  display: block;
  width: 144px;
  height: 4px;
  background-image: linear-gradient(
    90deg,
    var(--color-tricolore-green) 50%,
    var(--color-tricolore-red) 50%
  );
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-secTitle::after {
    width: 87px;
    height: 3px;
  }
}

.c-secTitle--left::after {
  left: 0;
}

.c-secTitle--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.c-secTitle--right::after {
  right: 0;
}

@media screen and (max-width: 767px) {
  .c-secTitle--right::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-secTitle--small::after {
  position: static;
  width: 72px;
  height: 4px;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .c-secTitle--small::after {
    width: 54px;
    height: 3px;
    transform: translateY(-1px);
  }
}

.c-secTitle__img {
  height: 24px;
  width: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-secTitle__img {
    height: 16px;
  }
}

.c-secTitle--small .c-secTitle__img {
  height: 20px;
}

@media screen and (max-width: 767px) {
  .c-secTitle--small .c-secTitle__img {
    height: 16px;
  }
}

/* 
============================================================
---- 【Component】コンテンツリード ----
============================================================
*/
.c-secLead {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media screen and (max-width: 767px) {
  .c-secLead {
    row-gap: 16px;
  }
}

.c-secLead--center {
  align-items: center;
}

.c-secLead--right {
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .c-secLead--right {
    align-items: flex-start;
  }
}

.c-secLead__item {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-orange-half);
  width: fit-content;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .c-secLead__item {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

.c-secLead--center .c-secLead__item {
  text-align: center;
}

.c-secTitle + .c-secLead {
  margin-top: 74px;
}

@media screen and (max-width: 767px) {
  .c-secTitle + .c-secLead {
    margin-top: 42px;
  }
}

.c-secLead--white .c-secLead__item {
  color: var(--color-base);
}

.c-secLead__item--sp {
  display: inline;
}

@media screen and (max-width: 767px) {
  .c-secLead__item--sp {
    display: block;
    font-size: 18px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--color-orange-half);
    width: fit-content;
    white-space: nowrap;
  }
}

.c-secLead__item:has(.c-secLead__item--sp) {
}

@media screen and (max-width: 767px) {
  .c-secLead__item:has(.c-secLead__item--sp) {
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
}

.c-secLead__item--lastLongDash {
  display: flex;
  align-items: center;
  column-gap: 0.05em;
}

.c-secLead__item--lastLongDash::after {
  content: "";
  display: block;
  width: 2em;
  border-bottom: 1.5px solid var(--color-text);
}

.c-secLead__item--sp.c-secLead__item--lastLongDash::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-secLead__item--lastLongDash:has(.c-secLead__item--sp)::after {
    display: none;
  }

  .c-secLead__item--sp.c-secLead__item--lastLongDash::after {
    display: block;
  }
}

/* 
============================================================
---- 【Component】コンテンツ本文 ----
============================================================
*/
.c-secLead + .c-secTexts {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .c-secLead + .c-secTexts {
    margin-top: 35px;
  }
}

.c-secTexts__item {
  text-align: justify;
}

.c-secTexts--center .c-secTexts__item {
  text-align: center;
}

.c-secTexts--white .c-secTexts__item {
  color: var(--color-base);
}

.c-secTexts__item + .c-secTexts__item {
  margin-top: 1.75em;
}

/* 
============================================================
---- 【Component】VIEW MORE ボタン ----
============================================================
*/
.c-viewMoreButton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 100px;
  width: 100%;
  max-width: 280px;
  height: 60px;
  background-color: var(--color-accent);
}

@media screen and (max-width: 767px) {
  .c-viewMoreButton {
    max-width: 100%;
    height: 45px;
  }
}

.c-viewMoreButton:hover {
  opacity: 0.7;
}

.c-viewMoreButton__img {
  display: block;
  height: 12px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .c-viewMoreButton__img {
    height: 9px;
  }
}

/* 
============================================================
---- 【Component】VIEW MORE リンク ----
============================================================
*/
.c-viewMoreLink {
  display: flex;
  column-gap: 14px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .c-viewMoreLink {
    column-gap: 10px;
  }
}

.c-viewMoreLink:hover {
  opacity: 0.7;
}

.c-viewMoreLink__text {
  font-family: var(--font-lexend-deca);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-viewMoreLink__text {
    font-size: 13px;
  }
}

.c-viewMoreLink__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--color-accent);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .c-viewMoreLink__arrow {
    width: 20px;
  }
}

.c-viewMoreLink__arrowImg {
  display: block;
  width: 6px;
  height: auto;
  transform: translateX(20%);
}

@media screen and (max-width: 767px) {
  .c-viewMoreLink__arrowImg {
    width: 4px;
  }
}

/* 
============================================================
---- 共通パーツ　INFORMATION ----
============================================================
*/
.information {
  padding: 130px 0 130px;
  background-color: var(--color-section-bg);
}

@media screen and (max-width: 767px) {
  .information {
    padding: 63px 0;
  }
}

.information__inner {
  display: grid;
  grid-template-columns: calc(360px - 24px) 1fr;
  column-gap: 24px;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .information__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    margin-top: 65px;
  }
}

.information__paragraphs {
  grid-column: 1;
  grid-row: 1;
}

@media screen and (max-width: 767px) {
  .information__paragraphs {
    margin-top: 58px;
    grid-row: 3;
  }
}

.information__paragraph a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .information__paragraph a {
    pointer-events: all;
  }
}

.information__paragraph + .information__paragraph {
  margin-top: 1.75em;
}

.information__map {
  width: 100%;
  max-width: 790px;
  height: 436px;
  grid-column: 2;
  grid-row: 1;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .information__map {
    height: 284px;
    grid-column: 1;
    grid-row: 2;
  }
}

/* 
============================================================
---- 共通パーツ　RESERVATION ----
============================================================
*/
.reservation {
  padding: 110px 0 115px;
}

@media screen and (max-width: 767px) {
  .reservation {
    padding: 68px 0 64px;
  }
}

.reservation__linkBox {
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .reservation__linkBox {
    margin-top: 41px;
  }
}

.reservation__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 260px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-text);
}

@media screen and (max-width: 767px) {
  .reservation__link {
    width: 283px;
    height: 94px;
  }
}

.reservation__link:hover {
  opacity: 0.7;
}

/* 
============================================================
---- ヘッダー ----
============================================================
*/
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;
  height: 80px;
  width: 100%;
  padding-inline: var(--layout-margin-small-pc);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-base);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zindex-header-subpages);
}

@media screen and (max-width: 1023px) {
  .header {
    height: 86px;
    padding: 20px var(--layout-margin-small-sp) 0;
    background-color: transparent;
    border: none;
    align-items: flex-start;
    pointer-events: none;
  }
}

.header:not(.is-sticky) {
  background-color: transparent;
  border: none;
  padding-top: 36px;
  height: 126px;
  z-index: var(--zindex-header-top-mv);
  position: absolute;
  align-items: flex-start;
}

@media screen and (max-width: 1023px) {
  .header:not(.is-sticky) {
    height: 86px;
    padding-top: 20px;
  }
}

.header__logo {
  cursor: pointer;
}

.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1279px) {
  .header__logo {
    pointer-events: all;
  }
}

.header__logoImg {
  content: url(../img/common/logo-black-horizontal.svg);
  width: auto;
  height: 36px;
}

@media screen and (max-width: 1279px) {
  .header__logoImg {
    height: 28px;
  }
}

.header:not(.is-sticky) .header__logoImg {
  content: url(../img/common/logo-white.svg);
  height: 90px;
}

@media screen and (max-width: 1279px) {
  .header:not(.is-sticky) .header__logoImg {
    height: 72px;
  }
}

@media screen and (max-width: 1023px) {
  .header__logoImg {
    content: url(../img/common/logo-black.svg);
    width: 100px;
    height: auto;
  }
}

.header__nav {
}

.header:not(.is-sticky) .header__nav {
  padding-top: 26px;
  padding-left: 27px;
}

@media screen and (max-width: 1023px) {
  .header__nav {
    background-color: var(--color-section-bg);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
    padding-block: 52px 51px;
    padding-inline: calc(
      var(--layout-margin-small-sp) + var(--layout-margin-large-sp)
    );
    pointer-events: all;
  }

  .header:not(.is-sticky) .header__nav {
    padding-block: 52px 51px;
    padding-inline: calc(
      var(--layout-margin-small-sp) + var(--layout-margin-large-sp)
    );
  }
}

[data-status-header-nav="open"] .header__nav {
  opacity: 1;
  visibility: visible;
}

.header__navLogo {
}

@media screen and (max-width: 1023px) {
  .header__navLogoImg {
    width: 89px;
    height: auto;
  }
}

.header__navList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: first baseline;
  column-gap: 24px;
}

@media screen and (max-width: 1279px) {
  .header__navList {
    column-gap: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .header__navList {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 43px;
    border-top: 1px solid var(--color-border);
  }
}

.header__navItem {
  line-height: 1;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .header__navItem:not(.header__navItem--reservation):not(
      .header__navItem--instagram
    )
    .header__navLink {
    border-bottom: 1px solid var(--color-border);
  }
}

@media screen and (max-width: 1023px) {
  .header__navItem--instagram {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .header__navItem--reservation {
    margin-top: 24px;
  }
}

.header__navLink {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-lexend-deca);
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 18px;
  text-align: center;
  display: block;
}

.header:not(.is-sticky) .header__navLink {
  color: var(--color-base);
}

@media screen and (max-width: 1279px) {
  .header__navLink {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .header__navLink {
    padding: 16px;
  }

  .header:not(.is-sticky) .header__navLink {
    color: var(--color-text);
  }

  .header__navItem--reservation .header__navLink {
    font-size: 16px;
    padding: 20px 26px;
    border: 1px solid var(--color-text);
    border-radius: 50%;
    width: 163px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
  }

  .header__navItem--instagram .header__navLink {
    padding: 0;
  }

  .header__navItem--instagram .header__navLinkInstagramImg {
    width: 18px;
    height: auto;
  }
}

.header__navLink:hover {
  opacity: 0.7;
}

.header__reservation {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 24px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  font-family: var(--font-lexend-deca);
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 17px;
  text-align: center;
  height: fit-content;
}

.header:not(.is-sticky) .header__reservation {
  font-size: 18px;
  margin-top: 8px;
  padding: 18px 25px;
  color: var(--color-base);
  border: 1px solid var(--color-base);
}

.header__reservation:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1279px) {
  .header:not(.is-sticky) .header__reservation,
  .header__reservation {
    padding: 14px 16px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1023px) {
  .header__reservation {
    display: none;
  }
}

.hamburgerMenu {
  display: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  position: relative;
  width: 49px;
  height: 22px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  cursor: pointer;
}

.header:not(.is-sticky) .hamburgerMenu {
  border-color: var(--color-base);
}

.header:not(.is-sticky)[data-status-header-nav="open"] .hamburgerMenu {
  border-color: var(--color-text);
}

@media screen and (max-width: 1023px) {
  .hamburgerMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
  }
}

.hamburgerMenu__stickContainer {
  inline-size: 12px;
  block-size: 8px;
  position: relative;
}

.hamburgerMenu__stick {
  display: block;
  inline-size: 100%;
  block-size: 1px;
  background-color: var(--color-text);
  position: absolute;
  transition-duration: 0.3s;
}

.header:not(.is-sticky) .hamburgerMenu__stick {
  background-color: var(--color-base);
}

.header:not(.is-sticky)[data-status-header-nav="open"] .hamburgerMenu__stick {
  background-color: var(--color-text);
}

.hamburgerMenu__stick:nth-child(1) {
  inset-block-start: 0;
  transition-property: inset-block-start, translate, rotate;
}

[data-status-header-nav="open"] .hamburgerMenu__stick:nth-child(1) {
  inset-block-start: 50%;
  translate: 0 -50%;
  rotate: 35deg;
}

.hamburgerMenu__stick:nth-child(2) {
  inset-block-start: 50%;
  translate: 0 -50%;
  transition-property: opacity;
}

[data-status-header-nav="open"] .hamburgerMenu__stick:nth-child(2) {
  opacity: 0;
}

.hamburgerMenu__stick:nth-child(3) {
  inset-block-end: 0;
  transition-property: inset-block-end, translate, rotate;
}

[data-status-header-nav="open"] .hamburgerMenu__stick:nth-child(3) {
  inset-block-end: 50%;
  translate: 0 50%;
  rotate: -35deg;
}

/* 
============================================================
---- フッター ----
============================================================
*/
.footer {
  padding: 108px 0 28px;
  width: 100%;
  background-color: var(--color-base);
  z-index: var(--zindex-footer);
  border-top: 1px solid var(--color-border);
}

@media screen and (max-width: 1439px) {
  .footer .l-container__inner {
    grid-column: 3 / -3;
  }
}

@media screen and (max-width: 1279px) {
  .footer .l-container__inner {
    grid-column: 2 / -2;
  }
}

@media screen and (max-width: 1023px) {
  .footer {
    padding: 62px 0 24px;
  }
}

.footer__upper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 16px;
}

@media screen and (max-width: 1023px) {
  .footer__upper {
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  cursor: pointer;
}

.footer__logo:hover {
  opacity: 0.7;
}

.footer__logoImg {
  width: auto;
  height: 90px;
}

@media screen and (max-width: 1279px) {
  .footer__logoImg {
    height: 59px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__logoImg {
    width: 100px;
    height: auto;
  }
}

.footer__nav {
  padding-top: 28px;
  padding-left: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  height: fit-content;
}

@media screen and (max-width: 1279px) {
  .footer__nav {
    padding-left: 0;
    column-gap: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    margin-top: 62px;
    padding: 0;
  }
}

.footer__navList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: first baseline;
  column-gap: 18px;
}

@media screen and (max-width: 1279px) {
  .footer__navList {
    column-gap: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__navList {
    width: 100%;
    flex-direction: column;
    align-items: center;
    row-gap: 14px;
  }
}

.footer__navItem {
  line-height: 1;
  text-align: center;
  width: 100%;
}

.footer__navLink {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-lexend-deca);
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 16px;
  text-align: center;
  display: block;
}

.footer__navInstagram {
}

@media screen and (max-width: 1023px) {
  .footer__navInstagram {
    margin-top: 24px;
  }
}

.footer__navInstagramImg {
  width: 18px;
  height: auto;
}

.footer__navLink:hover,
.footer__navInstagram:hover {
  opacity: 0.7;
}

.footer__reservation {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 26px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  font-family: var(--font-lexend-deca);
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 18px;
  text-align: center;
  height: fit-content;
  margin-top: 8px;
}

.footer__reservation:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1279px) {
  .footer__reservation {
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__reservation {
    margin-top: 62px;
    margin-inline: auto;
    width: 163px;
    height: 54px;
  }
}

.footer__fmdLink {
  display: block;
}

.footer__fmdLink:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1023px) {
  .footer__fmdLink {
    margin-top: 48px;
  }
}

.footer__fmdImg {
  width: 80px;
  height: auto;
}

@media screen and (max-width: 1279px) {
  .footer__fmdImg {
    width: 64px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__fmdImg {
    width: 80px;
  }
}

.footer__copyright {
  margin-top: 89px;
  font-family: var(--font-lexend-deca);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .footer__copyright {
    margin-top: 104px;
  }
}
