@charset "UTF-8";
/*--------------------
汎用設定
--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 0vw;
}

*::-moz-selection {
  color: #fff;
  background: #D3AE6F;
}

*::selection {
  color: #fff;
  background: #D3AE6F;
}

html {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: normal;
  font-style: normal;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
  color: #4E2613;
  line-height: 1.7;
}

body {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #F1EDE4;
  overflow-x: hidden;
  position: relative;
}

a {
  color: #0066c0;
}

a:hover {
  text-decoration: underline;
}

p {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 600;
  text-align: justify;
}

p:not(:last-of-type) {
  margin-bottom: 20px;
}

p.btn a {
  text-align: center;
  background: #D3AE6F;
  border: 2px solid #fff;
  border-radius: 30px;
  display: block;
}

p span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.btn a {
  padding: 0.5rem;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
}

@media screen and (min-width: 600px) {
  html {
    line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  .btn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn a:hover {
    color: #fff !important;
    background: #0066c0 !important;
  }
}

/*--------------------
見出し設定
--------------------*/
h2 {
  max-width: 450px;
  margin: 0 auto;
  margin-top: 37px;
  margin-bottom: 20px;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

h2::before {
  content: "＼ Café Nagi ／";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: m-plus-1p, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 18px);
  color: #D3AE6F;
}

h2 .top__line {
  width: 100%;
  display: block;
  position: relative;
}

h2 .top__line::before, h2 .top__line::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #4E2613;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h2 .top__line::before {
  top: -14px;
}

h2 .top__line::after {
  top: -20px;
}

h2 .top__line > .bottom__line {
  display: block;
  font-size: clamp(50px, 13vw, 70px);
  font-family: fot-chiaro-std, sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

h2 .top__line > .bottom__line::before, h2 .top__line > .bottom__line::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #4E2613;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h2 .top__line > .bottom__line::before {
  bottom: -14px;
}

h2 .top__line > .bottom__line::after {
  bottom: -20px;
}

h2 .top__line > .bottom__line .jp,
h2 .top__line > .bottom__line .eng {
  display: block;
}

h2 .top__line > .bottom__line .eng {
  margin-top: 8px;
  font-size: clamp(20px, 5vw, 24px);
}

@media screen and (min-width: 600px) {
  h2 {
    margin-bottom: 40px;
  }
}

/*--------------------
section, container
--------------------*/
section {
  padding: 0 20px;
  border-top: 0.1px solid transparent;
}

section:not(:first-of-type) {
  margin-top: 40px;
}

section .container {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}

@media screen and (min-width: 600px) {
  section {
    padding: 0 20px;
    border-top: 0.1px solid transparent;
  }
  section:not(:first-of-type) {
    margin-top: 80px;
  }
  section .container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
  }
}

@media screen and (min-width: 1024px) {
  section:not(:first-of-type) {
    margin-top: 120px;
  }
  section .container {
    padding: 80px;
  }
}

/*--------------------
header
--------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

header.on .header__container {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header .header__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 1fr;
      grid-template-columns: 35% 1fr;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 1000;
}

header .header__container--logo {
  padding: 20px 10px;
  background: #D3AE6F;
  border-bottom-right-radius: 10px;
}

header .header__container--btn > div {
  height: 42px;
  background: #D3AE6F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

header .header__container--btn > div::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/shape.svg);
  position: absolute;
  left: 0;
  bottom: -20px;
}

header .header__container--btn > div #nav__open {
  height: 100%;
  padding: 5px;
  background: #fff;
  aspect-ratio: 1 / 1;
}

header .header__container--btn > div #nav__open .hamburger {
  position: relative;
}

header .header__container--btn > div #nav__open .hamburger.on span:nth-child(1) {
  -webkit-animation: menu-up 0.6s ease;
          animation: menu-up 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

header .header__container--btn > div #nav__open .hamburger.on span:nth-child(2) {
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

header .header__container--btn > div #nav__open .hamburger.on span:nth-child(3) {
  -webkit-animation: menu-down 0.6s ease;
          animation: menu-down 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

header .header__container--btn > div #nav__open .hamburger.off span:nth-child(1) {
  top: 4px;
  -webkit-animation: menu-up-r 0.6s ease;
          animation: menu-up-r 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

header .header__container--btn > div #nav__open .hamburger.off span:nth-child(2) {
  top: 14px;
}

header .header__container--btn > div #nav__open .hamburger.off span:nth-child(3) {
  top: 24px;
  -webkit-animation: menu-down-r 0.6s ease;
          animation: menu-down-r 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

header .header__container--btn > div #nav__open .hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: #4E2613;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

header .header__container--btn > div #nav__open .hamburger span:nth-child(1) {
  top: 4px;
}

header .header__container--btn > div #nav__open .hamburger span:nth-child(2) {
  top: 14px;
}

header .header__container--btn > div #nav__open .hamburger span:nth-child(3) {
  top: 24px;
}

header .header__container--btnPc {
  display: none;
}

header #header__menu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 70px 20px;
  background: #F1EDE4;
  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: absolute;
  top: 0;
  left: 0;
  -webkit-animation: slide-r 0.75s ease-in;
          animation: slide-r 0.75s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(calc(var(--vh, 1vh) * -250));
          transform: translateY(calc(var(--vh, 1vh) * -250));
}

header #header__menu::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #D3AE6F;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header #header__menu.show {
  -webkit-animation: slide 0.75s ease-in;
          animation: slide 0.75s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

header #header__menu.show nav ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

header #header__menu.show nav ul li:nth-of-type(2) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

header #header__menu.show nav ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

header #header__menu.show nav ul li:nth-of-type(4) {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}

header #header__menu.show nav ul li:nth-of-type(5) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

header #header__menu.show nav ul li:nth-of-type(6) {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}

header #header__menu.show nav ul li:nth-of-type(7) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

header #header__menu.show nav ul li:nth-of-type(8) {
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}

header #header__menu .header__menu--news ul {
  height: 100%;
  margin-top: 10px;
  opacity: 0.8;
}

header #header__menu .header__menu--news ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 5px;
}

header #header__menu .header__menu--news ul li div p {
  margin: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  word-break: break-all;
  font-size: 10px;
  line-height: 1.5;
}

header #header__menu nav {
  width: 100%;
  padding: 10px;
  position: relative;
  z-index: 99;
}

header #header__menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}

header #header__menu nav ul li {
  text-align: center;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

header #header__menu nav ul li a {
  display: inline-block;
  font-size: clamp(30px, 5vw, 40px);
  font-family: fot-chiaro-std, sans-serif;
  color: #4E2613;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  header.on .header__container {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .header__container {
    -ms-grid-columns: 200px 1fr;
        grid-template-columns: 200px 1fr;
  }
  header .header__container--logo {
    padding: 20px;
    border-bottom-right-radius: 16px;
  }
  header .header__container--btn > div {
    height: 50px;
  }
  header .header__container--btn > div::after {
    content: "";
    width: 15px;
    height: 15px;
    bottom: -15px;
  }
  header .header__container--btn > div #nav__open .hamburger {
    width: 40px;
    height: 40px;
  }
  header .header__container--btn > div #nav__open .hamburger.on span:nth-child(1) {
    -webkit-animation: menu-up-tb 0.6s ease;
            animation: menu-up-tb 0.6s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  header .header__container--btn > div #nav__open .hamburger.on span:nth-child(2) {
    opacity: 0;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  header .header__container--btn > div #nav__open .hamburger.on span:nth-child(3) {
    -webkit-animation: menu-down-tb 0.6s ease;
            animation: menu-down-tb 0.6s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  header .header__container--btn > div #nav__open .hamburger.off span:nth-child(1) {
    top: 8px;
    -webkit-animation: menu-up-r-tb 0.6s ease;
            animation: menu-up-r-tb 0.6s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  header .header__container--btn > div #nav__open .hamburger.off span:nth-child(2) {
    top: 19px;
  }
  header .header__container--btn > div #nav__open .hamburger.off span:nth-child(3) {
    top: 30px;
    -webkit-animation: menu-down-r-tb 0.6s ease;
            animation: menu-down-r-tb 0.6s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  header .header__container--btn > div #nav__open .hamburger span:nth-child(1) {
    top: 8px;
  }
  header .header__container--btn > div #nav__open .hamburger span:nth-child(2) {
    top: 19px;
  }
  header .header__container--btn > div #nav__open .hamburger span:nth-child(3) {
    top: 30px;
  }
  header #header__menu .header__menu--news ul li div {
    gap: 5px;
  }
  header #header__menu .header__menu--news ul li div p {
    font-size: 14px;
  }
  header #header__menu .header__menu--news ul li div p:first-of-type {
    position: relative;
  }
  header #header__menu nav {
    width: 100%;
    padding: 40px;
    position: relative;
    z-index: 99;
  }
  header #header__menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  header #header__menu nav ul li {
    text-align: center;
    line-height: 1;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  header #header__menu nav ul li a {
    display: inline-block;
    font-size: clamp(30px, 5vw, 40px);
    font-family: fot-chiaro-std, sans-serif;
    color: #4E2613;
    line-height: 1;
  }
}

@media screen and (min-width: 1024px) {
  header {
    width: initial;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  header .header__container {
    width: 150px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .header__container--logo {
    border-bottom-right-radius: 0;
  }
  header .header__container--btn {
    margin-bottom: 150px;
    background: #D3AE6F;
  }
  header .header__container--btn > div {
    background: #D3AE6F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    top: -20px;
  }
  header .header__container--btn > div::after {
    display: none;
  }
  header .header__container--btn > div #nav__open {
    padding: 5px;
    background: transparent;
    aspect-ratio: 1 / 1;
    cursor: pointer;
  }
  header .header__container--btn > div #nav__open .hamburger span {
    width: 40px;
    height: 2px;
    border-radius: 1px;
    background: #4E2613;
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  header .header__container--btnPc {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  header .header__container--btnPc a {
    width: 100%;
    height: 100%;
    background: #fff;
    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;
    color: #4E2613;
    font-family: fot-chiaro-std, sans-serif;
    font-size: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .header__container--btnPc a:hover {
    background: #4E2613;
    color: #fff;
    text-decoration: none;
  }
  header #header__menu {
    margin-left: 150px;
    padding: 80px;
    width: calc(100vw - 150px);
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: #F1EDE4;
    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: absolute;
    top: 0;
    left: 0;
    -webkit-animation: slide-r-pc 1s ease;
            animation: slide-r-pc 1s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  header #header__menu::after {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header #header__menu.show {
    -webkit-animation: slide-pc 1s ease;
            animation: slide-pc 1s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  header #header__menu.show nav ul li {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  header #header__menu.show nav ul li:nth-of-type(2) {
    -webkit-transition-delay: 1.05s;
            transition-delay: 1.05s;
  }
  header #header__menu.show nav ul li:nth-of-type(3) {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
  header #header__menu.show nav ul li:nth-of-type(4) {
    -webkit-transition-delay: 1.35s;
            transition-delay: 1.35s;
  }
  header #header__menu.show nav ul li:nth-of-type(5) {
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
  header #header__menu.show nav ul li:nth-of-type(6) {
    -webkit-transition-delay: 1.65s;
            transition-delay: 1.65s;
  }
  header #header__menu.show nav ul li:nth-of-type(7) {
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s;
  }
  header #header__menu.show nav ul li:nth-of-type(8) {
    -webkit-transition-delay: 1.95s;
            transition-delay: 1.95s;
  }
  header #header__menu .header__menu--news ul {
    margin-top: 0;
  }
  header #header__menu .header__menu--news ul li div p:first-of-type {
    position: relative;
  }
  header #header__menu nav {
    width: 100%;
    padding: 40px;
    position: relative;
    z-index: 99;
  }
  header #header__menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  header #header__menu nav ul li {
    text-align: center;
    line-height: 1;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  header #header__menu nav ul li a {
    padding: 3px;
    display: inline-block;
    font-size: clamp(30px, 5vw, 40px);
    font-family: fot-chiaro-std, sans-serif;
    color: #4E2613;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #header__menu nav ul li a:hover {
    text-decoration: none;
    background: #4E2613;
    color: #fff;
  }
}

/*--------------------
main
--------------------*/
@media screen and (min-width: 1024px) {
  main, footer {
    width: calc(100% - 150px);
    margin-left: auto;
  }
}

/*--------------------
TOP
--------------------*/
#top {
  padding: 20px;
  height: 100vh;
  height: calc(var(--vh_top, 1vh) * 100);
  min-height: 550px;
  max-height: 750px;
  background: #4E2613;
}

#top .top__container {
  height: 100%;
  position: relative;
  overflow: hidden;
}

#top .top__container::after {
  content: "";
  width: 100.5%;
  height: 100.5%;
  background-image: url(../img/frame/left-top.png), url(../img/frame/right-top.png), url(../img/frame/left-bottom.png), url(../img/frame/right-bottom.png), url(../img/frame/top.png), url(../img/frame/bottom.png), url(../img/frame/left.png), url(../img/frame/right.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
  background-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

#top .top__container--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#top .top__container--bg::before, #top .top__container--bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

#top .top__container--bg::before {
  background: #F1EDE4;
}

#top .top__container--bg::after {
  background-image: url(../img/bg.png);
  background-size: 200px;
  mix-blend-mode: screen;
}

#top .top__container--top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  position: relative;
  top: 10px;
}

#top .top__container--top .spin {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  opacity: 0.5;
  z-index: 0;
  -webkit-animation: spin 30s linear infinite;
          animation: spin 30s linear infinite;
}

#top .top__container--top .spin img {
  width: 42.5vw;
  max-width: 300px;
  height: auto;
}

#top .top__container--top .logo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 55vw;
  max-width: 350px;
  position: relative;
  z-index: 10;
}

#top .top__container--img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#top .top__container--img div {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow-y: hidden;
  position: relative;
}

#top .top__container--img div img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 650px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#top .top__container--img div.tb {
  display: none;
}

#top .top__container--img div.pc {
  display: none;
}

#top .top__container--bottom {
  width: 100%;
  max-width: 550px;
  padding: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 99;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#top .top__container--bottom .img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#top .top__container--bottom .img > div {
  text-align: center;
}

#top .top__container--bottom .img .sp {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

#top .top__container--bottom .img .pc {
  display: none;
}

#top .top__container--bottom ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (minmax(0, 1fr))[3];
      grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#top .top__container--bottom ul li {
  border: 2px solid #4E2613;
  border-radius: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

#top .top__container--bottom ul li > * {
  padding: 5px 0;
  text-align: center;
  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;
}

#top .top__container--bottom ul li > p {
  padding: 7px 0;
  margin-bottom: 0;
  font-size: clamp(10px, 2.2vw, 12px);
  font-weight: 700;
  line-height: 1;
}

#top .top__container--bottom ul li > p:first-of-type {
  background: #D3AE6F;
}

#top .top__container--bottom ul li > p:nth-of-type(2) {
  background: #fff;
}

@media screen and (min-width: 600px) {
  #top {
    padding: 30px;
    min-height: 850px;
    max-height: 1100px;
  }
  #top .top__container::after {
    background-size: 60px;
  }
  #top .top__container--bg::after {
    background-size: 300px;
  }
  #top .top__container--top {
    top: max(1vw, 20px);
  }
  #top .top__container--top .spin img {
    width: 38.5vw;
    max-width: 280px;
    height: auto;
  }
  #top .top__container--top .logo {
    width: 45vw;
    max-width: 350px;
  }
  #top .top__container--img {
    width: 100%;
  }
  #top .top__container--img div.sp {
    display: none;
  }
  #top .top__container--img div.tb {
    width: 100%;
    display: block;
    text-align: center;
  }
  #top .top__container--img div.tb img {
    width: 80vw;
    min-width: 700px;
    max-width: 100%;
  }
  #top .top__container--bottom {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    gap: 20px;
    bottom: 40px;
  }
  #top .top__container--bottom .img .pc {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
  }
  #top .top__container--bottom .img .sp {
    display: none;
  }
  #top .top__container--bottom ul {
    display: -ms-grid;
    display: grid;
    border: 2px solid #4E2613;
    border-radius: 50px;
    -ms-grid-columns: (minmax(0, 1fr))[3];
        grid-template-columns: repeat(3, minmax(0, 1fr));
    -ms-grid-rows: initial;
        grid-template-rows: initial;
    gap: 0;
    overflow: hidden;
  }
  #top .top__container--bottom ul li {
    border: none;
    border-radius: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #top .top__container--bottom ul li > p {
    padding: 12px 0;
    font-size: clamp(10px, 1.5vw, 14px);
  }
}

@media screen and (min-width: 1024px) {
  #top {
    height: 100vh;
    min-height: 880px;
  }
  #top .top__container--bg::after {
    background-size: 300px;
  }
  #top .top__container--top {
    top: 40px;
  }
  #top .top__container--top .spin img {
    max-width: 260px;
  }
  #top .top__container--top .logo {
    max-width: 320px;
  }
  #top .top__container--img {
    width: 100%;
    margin: 0 auto;
  }
  #top .top__container--img div.tb {
    display: none;
  }
  #top .top__container--img div.pc {
    display: block;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  #top .top__container--img div.pc img {
    max-height: initial;
  }
  #top .top__container--img div.sp {
    display: none;
  }
  #top .top__container--bottom {
    max-width: 1000px;
  }
  #top .top__container--bottom ul li > p {
    font-size: clamp(14px, 2.2vw, 16px);
  }
}

/*--------------------
nav
--------------------*/
#nav .nav__container {
  padding: 15px 10px;
  border-top: 2px dashed #4E2613;
  border-bottom: 2px dashed #4E2613;
}

#nav .nav__container ul {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#nav .nav__container ul li {
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#nav .nav__container ul li a {
  padding: 10px 0;
  display: block;
  font-size: clamp(26px, 4vw, 30px);
  font-weight: 900;
  font-family: fot-chiaro-std, sans-serif;
  color: #4E2613;
  line-height: 1;
}

#nav .nav__container ul li a:hover {
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  #nav .nav__container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
  }
  #nav .nav__container ul {
    max-width: 840px;
  }
}

@media screen and (min-width: 1024px) {
  #nav .nav__container ul li a {
    padding: 10px 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #nav .nav__container ul li a:hover {
    background: #4E2613;
    color: #F1EDE4;
  }
}

/*--------------------
about
--------------------*/
#about .about__container p.small {
  color: #D3AE6F;
  font-size: 0.825rem;
}

/*--------------------
tokuten
--------------------*/
#tokuten .tokuten__container h3 {
  margin-bottom: 20px;
  padding: 12px;
  background: #D3AE6F;
  font-size: 20px;
  font-weight: 700;
  font-family: m-plus-1p, sans-serif;
  color: #fff;
  line-height: 1;
  text-align: center;
}

#tokuten .tokuten__container h3:not(:first-of-type) {
  margin-top: 40px;
}

#tokuten .tokuten__container .small {
  margin-top: 20px;
  margin-bottom: 28px;
  padding: 10px;
  border: 1px solid #4E2613;
}

#tokuten .tokuten__container .small p {
  margin: 0;
  padding-left: 12px;
  font-size: 12px;
  position: relative;
}

#tokuten .tokuten__container .small p::before {
  content: "・";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

#tokuten .tokuten__container--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#tokuten .tokuten__container--list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

#tokuten .tokuten__container--list li a {
  display: block;
  border: 2px solid #000;
  position: relative;
}

#tokuten .tokuten__container--list li a::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/zoom.webp);
  background-size: cover;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  #tokuten .tokuten__container .small p {
    padding-left: 14px;
    font-size: 14px;
  }
  #tokuten .tokuten__container .small p::before {
    font-size: 14px;
  }
  #tokuten .tokuten__container--list {
    -ms-grid-columns: (minmax(0, 1fr))[3];
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #tokuten .tokuten__container--list li a {
    border: 2px solid #000;
  }
  #tokuten .tokuten__container--list li a::after {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}

@media screen and (min-width: 1024px) {
  #tokuten .tokuten__container h3 {
    padding: 16px;
    font-size: 24px;
  }
}

/*--------------------
goods
--------------------*/
#goods .goods__container h3 {
  margin-bottom: 20px;
  padding: 12px;
  background: #D3AE6F;
  font-size: 20px;
  font-weight: 700;
  font-family: m-plus-1p, sans-serif;
  color: #fff;
  line-height: 1;
  text-align: center;
}

#goods .goods__container h3:not(:first-of-type) {
  margin-top: 40px;
}

#goods .goods__container h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
  font-family: m-plus-1p, sans-serif;
  color: #D3AE6F;
  text-align: center;
  border-bottom: 3px solid #D3AE6F;
}

#goods .goods__container > p {
  margin-bottom: 20px;
  font-size: 14px;
}

#goods .goods__container .small {
  margin-top: 40px;
  padding: 10px;
  border: 1px solid #4E2613;
}

#goods .goods__container .small p {
  margin: 0;
  padding-left: 12px;
  font-size: 12px;
  position: relative;
}

#goods .goods__container .small p:not(:last-of-type) {
  margin-bottom: 10px;
}

#goods .goods__container .small p::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

#goods .goods__container--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#goods .goods__container--list:not(:last-of-type) {
  margin-bottom: 40px;
}

#goods .goods__container--list li {
  border: 2px solid #4E2613;
  border-radius: 8px;
  overflow: hidden;
}

#goods .goods__container--list li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#goods .goods__container--list li a .img {
  border-bottom: 2px solid #4E2613;
  position: relative;
}

#goods .goods__container--list li a .img::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/zoom.webp);
  background-size: cover;
  position: absolute;
  bottom: 2px;
  right: 2px;
}

#goods .goods__container--list li a .desc {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: 10px;
  padding-bottom: 37px;
  position: relative;
}

#goods .goods__container--list li a .desc .name {
  margin-bottom: 0;
  font-size: 12px;
  color: #4E2613;
}

#goods .goods__container--list li a .desc .price {
  padding: 6px 3px 6px 12px;
  background: #4E2613;
  border-top-left-radius: 6px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  position: absolute;
  bottom: -0.1px;
  right: -0.1px;
}

#goods .goods__container--list li a .desc .price::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/shape-goods.svg);
  position: absolute;
  bottom: 0;
  left: -10px;
}

#goods .goods__container--list li a .desc .price span {
  font-size: 12px;
}

@media screen and (min-width: 600px) {
  #goods .goods__container > p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  #goods .goods__container .small p {
    padding-left: 14px;
    font-size: 14px;
  }
  #goods .goods__container .small p::before {
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  #goods .goods__container h3 {
    padding: 16px;
    font-size: 24px;
  }
  #goods .goods__container h4 {
    font-size: 24px;
  }
  #goods .goods__container--list {
    -ms-grid-columns: (minmax(0, 1fr))[4];
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #goods .goods__container--list:not(:last-of-type) {
    margin-bottom: 40px;
  }
  #goods .goods__container--list li a:hover {
    text-decoration: none;
  }
  #goods .goods__container--list li a:hover .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  #goods .goods__container--list li a .img {
    overflow: hidden;
  }
  #goods .goods__container--list li a .img img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  #goods .goods__container--list li a .desc .name {
    font-size: 14px;
  }
  #goods .goods__container--list li a .desc .price {
    font-size: 16px;
  }
  #goods .goods__container--list li a .desc .price span {
    font-size: 14px;
  }
}

/*--------------------
gallery
--------------------*/
#gallery .gallery__container h3 {
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 8px 0;
  color: #D3AE6F;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  font-family: m-plus-1p, sans-serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  background: #D3AE6F;
  position: relative;
}

#gallery .gallery__container h3:not(:first-of-type) {
  margin-top: 40px;
}

#gallery .gallery__container h3::before, #gallery .gallery__container h3::after {
  content: "";
  width: 6px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}

#gallery .gallery__container h3::before {
  left: 20px;
}

#gallery .gallery__container h3::after {
  right: 20px;
}

#gallery .gallery__container h3.br {
  line-height: 1.5;
}

#gallery .gallery__container h3.br span {
  display: inline-block;
}

#gallery .gallery__container h4 {
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D3AE6F;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  text-align: center;
  color: #D3AE6F;
}

#gallery .gallery__container h4 span {
  display: inline-block;
}

#gallery .gallery__container p img {
  border: 1px solid #D3AE6F;
}

#gallery .gallery__container .small {
  margin-top: 20px;
}

#gallery .gallery__container .small p {
  margin: 0;
  padding-left: 12px;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  position: relative;
  color: #D3AE6F;
}

#gallery .gallery__container .small p:not(:last-of-type) {
  margin-bottom: 10px;
}

#gallery .gallery__container .small p::before {
  content: "※";
  font-size: clamp(12px, 1.5vw, 14px);
  position: absolute;
  top: 0;
  left: 0;
}

#gallery .gallery__container .small.box {
  padding: 10px;
  border: 1px solid #4E2613;
}

#gallery .gallery__container .small.box p {
  color: #4E2613;
}

#gallery .gallery__container .list {
  margin-top: 20px;
}

#gallery .gallery__container .list > p {
  margin-bottom: 10px;
  padding: 8px 10px 8px 8px;
  display: inline-block;
  background: #4E2613;
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  #gallery .gallery__container h3 {
    margin-bottom: 40px;
  }
  #gallery .gallery__container h3:not(:first-of-type) {
    margin-top: 80px;
  }
  #gallery .gallery__container h4 {
    margin-bottom: 40px;
    padding-bottom: 12px;
    font-weight: 900;
  }
  #gallery .gallery__container p img {
    border: 2px solid #D3AE6F;
  }
  #gallery .gallery__container .small {
    margin-top: 20px;
  }
}

/*--------------------
information
--------------------*/
#info .info__container h3 {
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 8px 0;
  color: #D3AE6F;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: bold;
  font-family: m-plus-1p, sans-serif;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  background: #D3AE6F;
  position: relative;
}

#info .info__container h3:not(:first-of-type) {
  margin-top: 40px;
}

#info .info__container h3::before, #info .info__container h3::after {
  content: "";
  width: 6px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}

#info .info__container h3::before {
  left: 20px;
}

#info .info__container h3::after {
  right: 20px;
}

#info .info__container table {
  width: 100%;
  margin-bottom: 10px;
}

#info .info__container table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #D3AE6F;
}

#info .info__container table tbody tr:not(:last-of-type) {
  margin-bottom: 10px;
}

#info .info__container table tbody tr td {
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
}

#info .info__container table tbody tr td:first-of-type {
  border-bottom: 1px dashed #D3AE6F;
}

@media screen and (min-width: 600px) {
  #info .info__container h3:not(:first-of-type) {
    margin-top: 80px;
  }
}

/*--------------------
access
--------------------*/
#access .access__container {
  padding: 0;
  background: transparent;
}

#access .access__container--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

#access .access__container--list .list-item {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

#access .access__container--list .list-item h3 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
  font-family: fot-chiaro-std, sans-serif;
  font-size: 24px;
  line-height: 1;
  border-bottom: 1px solid #4E2613;
}

#access .access__container--list .list-item__wrap--map {
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 56.25%;
  position: relative;
}

#access .access__container--list .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#access .access__container--list .list-item__wrap--data {
  font-size: 14px;
}

#access .access__container--list .list-item__wrap--data dt {
  color: #D3AE6F;
}

#access .access__container--list .list-item__wrap .btn {
  margin-top: 15px;
}

#access .access__container--list .list-item__wrap .btn a {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  #access .access__container--list {
    gap: 40px;
  }
  #access .access__container--list .list-item {
    padding: 40px;
  }
  #access .access__container--list .list-item h3 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 24px;
  }
  #access .access__container--list .list-item__wrap--map {
    margin-bottom: 30px;
  }
  #access .access__container--list .list-item__wrap--data {
    font-size: 16px;
  }
  #access .access__container--list .list-item__wrap--data dt {
    color: #D3AE6F;
  }
  #access .access__container--list .list-item__wrap .btn {
    margin-top: 30px;
  }
  #access .access__container--list .list-item__wrap .btn a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  #access .access__container {
    margin-top: 80px;
    padding: 0;
    background: transparent;
  }
  #access .access__container--list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 80px;
  }
  #access .access__container--list .list-item {
    padding: 0;
    background: transparent;
    border-radius: 20px;
    position: relative;
  }
  #access .access__container--list .list-item h3 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0 20px;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 1;
    border-bottom: 2px solid #4E2613;
  }
  #access .access__container--list .list-item__wrap {
    padding-bottom: 150px;
    position: relative;
  }
  #access .access__container--list .list-item__wrap--map {
    width: 80%;
    max-width: 1000px;
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  #access .access__container--list .list-item__wrap--data {
    width: 40%;
    max-width: 500px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
  #access .access__container--list .list-item__wrap--data dl dt {
    color: #D3AE6F;
  }
  #access .access__container--list .list-item__wrap--data .btn {
    margin-top: 20px;
  }
}

/*--------------------
Twitter
--------------------*/
#twitter .twitter__container {
  padding: 0;
  background: transparent;
  text-align: center;
}

#twitter .twitter__container p {
  text-align: center;
}

#twitter .twitter__container--img {
  text-align: center;
}

#twitter .twitter__container--img img {
  border-radius: 10px;
  overflow: hidden;
}

#twitter .twitter__container--btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 5px;
  background: #37a4dd;
  border-radius: 40px;
  overflow: hidden;
}

#twitter .twitter__container--btn a {
  padding: 10px;
  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;
  gap: 10px;
  border: 2px solid white;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#twitter .twitter__container--btn a svg {
  width: 30px;
  height: 30px;
}

#twitter .twitter__container--btn a svg path {
  fill: #fff;
}

#twitter .twitter__container--btn a span {
  padding-top: 2px;
  font-size: 1.2rem;
  color: #fff;
}

#twitter .twitter__container--btn a:hover {
  border: 2px solid rgba(255, 255, 255, 0);
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*--------------------
footer
--------------------*/
footer {
  margin-top: 40px;
}

footer .footer__shape {
  width: 100%;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

footer .footer__container {
  padding: 120px 0 140px 0;
  background: #4E2613;
  position: relative;
}

footer .footer__container--share {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

footer .footer__container--share .footer__share--title {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer__container--share .footer__share--title span {
  margin: 0 0.5rem;
  color: #fff;
}

footer .footer__container--share .footer__share--title::before, footer .footer__container--share .footer__share--title::after {
  content: "";
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

footer .footer__container--share .footer__share--list {
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  border-bottom: 2px solid #fff;
}

footer .footer__container--share .footer__share--list li {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
}

footer .footer__container--share .footer__share--list li a {
  width: 100%;
  height: 100%;
  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;
}

footer .footer__container--share .footer__share--list li a svg {
  height: 55%;
  width: 55%;
  margin: 0;
  padding: 0;
}

footer .footer__container--share .footer__share--list li a svg path {
  fill: #4E2613;
}

footer .footer__container small p {
  margin-bottom: 0;
  font-size: 11px;
  text-align: center;
  color: #fff;
}

footer .footer__container--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  gap: 20px;
  bottom: 0;
  right: 10px;
}

footer .footer__container--bottom p {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer .footer__container--bottom p:first-of-type img {
  width: 27vw;
  max-width: 130px;
}

footer .footer__container--bottom p:nth-of-type(2) img {
  width: 30vw;
  max-width: 150px;
}

@media screen and (min-width: 1024px) {
  footer {
    margin-top: 120px;
  }
  footer .footer__container--share .footer__share--list li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__container--share .footer__share--list li a svg path {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__container--share .footer__share--list li:hover {
    background: #D3AE6F;
  }
  footer .footer__container small p {
    margin-bottom: 0.5rem !important;
    font-size: 13px;
    text-align: center;
  }
  footer .footer__container small p:first-of-type {
    margin-bottom: 1rem !important;
  }
}
