/* Reset CSS */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Additional modern reset */
*, *::before, *::after {
  box-sizing: border-box;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Disable tel links on desktop */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* Base styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Old Mincho', serif;
  background-color: #232323;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: .075em;
}

body.active {
  position: fixed;
  top: 0;
  left: 0;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.container_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cmn_heading {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .1em;
  text-align: center;
}

.cmn_heading::first-letter {
  font-size: 108px;
  font-weight: 700;
}

.cmn_heading.vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
}

.cmn_heading.vertical::first-letter {
  padding-bottom: 10px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background: rgba(83, 83, 83, 0.95);
  backdrop-filter: blur(10px); */
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  position: relative;
  margin: 0 auto;
  padding: 5px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
  height: 124px;
}

.nav-bg {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo .logo {
  height: 114px;
  width: auto;
}

.nav-tel {
  font-size: 18px;
  letter-spacing: .1em;
}

.nav-tel .tel-number {
  font-size: 30px;
}

.nav-btn a {
  position: relative;
  display: block;
  border: solid 1px #fff;
  padding: 27px 36px;
  font-size: 18px;
}

.nav-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
  width: 60px;
  height: 1px;
  background: #fff;
}

.nav-menu {
  display: none;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffcccb;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffcccb;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Fixed Navigation */
.fixed-nav {
  position: fixed;
  bottom: 10px;
  right: 57px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.fixed-nav-btn {
  background: #9f3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 12px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  aspect-ratio: 1440 / 860;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  /* opacity: 0;
  transition: opacity 0.5s ease; */
}

.hero-bg-video.playing {
  opacity: 1;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
  opacity: .62;
}

.hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 43px solid #fff;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
}

.hero-play-button.hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-content {
  z-index: 1;
  /* animation: fadeInUp 1s ease-out; */
}

/* .hero .container_inner {
  position: relative;
} */

.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.inview.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-nav {
  position: absolute;
  top: 0;
  right: 30px;
  width: fit-content;
  margin: 140px 0 0 auto;
}

.hero-nav-list {
  width: fit-content;
  margin-left: auto;
}

.hero-nav-list li a {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-nav-list li a:hover {
  opacity: 1;
}

.hero-nav-list li a::before {
  content: "";
  transition: all 0.3s ease;
}

.hero-nav-list li a:hover::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.hero-nav-list li+li {
  margin-top: 27px;
}

.hero-nav-sns {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-left: 20px;
}

.hero-left {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 82px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  letter-spacing: .1em;
  line-height: 1.1;
}

.hero-bottom {
  position: absolute;
  left: 100px;
  bottom: 0;
  font-size: 82px;
  letter-spacing: .1em;
  line-height: 1.1;
}

.submain {
  padding: 224px 0 440px;
  background: url(../img/submain_bg01.png) no-repeat right bottom/cover;
}

.submain h2 {
  margin: 0 auto;
  font-size: 30px;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  line-height: 2.4;
}

.force {
  padding: 0 0 254px;
}

.force .cmn_heading {
  text-align: left;
}

.force_inner {
  position: relative;
  margin-top: 50px;
}

.force_inner .img {
  width: 53.45%;
  max-width: 620px;
}

.force_inner .box {
  position: absolute;
  bottom: -250px;
  right: 0;
  z-index: 2;
  width: 54.04%;
  max-width: 650px;
  padding: 64px 25px 64px 90px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.force_inner .box h3 {
  font-size: 30px;
}

.force_inner .box p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 2.6;
}

.selectmenu {
  position: relative;
  padding: 50px 0 0;
  /* background: url(../img/selectmenu_bg01.png) no-repeat right bottom/contain; */
}

.selectmenu::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #3f3e3e 0%, #000 50%, rgba(0, 0, 0, 0) 100%); */
  background: linear-gradient(-38deg, #3f3e3e 0%, #000 50%, rgba(0, 0, 0, 0) 162%);
  clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 85%);
}

.selectmenu_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.selectmenu_inner .cmn_heading {
  order: 2;
}

.selectmenu .menuinfo {
  order: 1;
  width: 82.76%;
  max-width: 960px;
  margin-top: 100px;
}

.selectmenu .menuinfo_item {
  position: relative;
  max-width: 440px;
}

.selectmenu .menuinfo_item:nth-of-type(even) {
  margin-left: auto;
}

.selectmenu .menuinfo_item:nth-of-type(n+2) {
  top: -120px;
  margin-bottom: -120px;
}

.selectmenu .menuinfo_item .info {
  margin-top: 15px;
}

.selectmenu .menuinfo_item .info h3 {
  position: relative;
  padding-left: 25px;
  font-size: 24px;
}

.selectmenu .menuinfo_item .info h3::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  width: 19px;
  height: 2px;
  background: #c93e3e;
}

.selectmenu .menuinfo_item .info .phase {
  margin-top: 10px;
  font-size: 18px;
}

.othermenu {
  padding: 50px 0 0;
}

.othermenu_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 110px;
  max-width: 1030px;
  margin: 0 auto;
}

.othermenu_block.blank {
  visibility: hidden;
}

.othermenu_block h3 {
  border-bottom: solid 1px #575757;
  padding-bottom: 8px;
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 2;
}

.othermenu_list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.othermenu_list li .name {
  flex-shrink: 0;
}

.othermenu_list li .dots {
  flex-grow: 1;
  background: url(../img/othermenu_dots.png) repeat-x left center;
  margin: 0 10px;
  height: 1px;
  position: relative;
}

.othermenu_list li .price {
  flex-shrink: 0;
  text-align: right;
  color: #e2c3a5;
}

.greeting {
  padding: 100px 0 0;
}

.greeting_desc {
  position: relative;
  margin-top: 90px;
}

.greeting_desc .desc {
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  z-index: 2;
  background: url(../img/greeting_bg01.png) no-repeat left top/cover;
  max-width: 580px;
  margin: 0 auto;
  padding: 50px;
  font-size: 18px;
  line-height: 2.6;
}

.greeting .imggrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.imggrid_item img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
}

.shopinfo {
  padding: 190px 0 102px;
}

.shopinfo_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.shopinfo_details {
  width: 82.76%;
  max-width: 960px;
  background: #000;
  padding: 62px 95px;
}

.shopinfo_details table {
  width: 100%;
  border-collapse: collapse;
}

.shopinfo_details tr {
  border-bottom: solid 1px #575757;
}

.shopinfo_details tr:last-of-type {
  border-bottom: none;
}

.shopinfo_details th,
.shopinfo_details td {
  padding: 30px 0;
  font-size: 18px;
  vertical-align: top;
}

.shopinfo_details th {
  width: 21.17%;
  min-width: 150px;
  text-align: left;
}

.shopinfo_details .map {
  width: 100%;
  aspect-ratio: 607 / 379;
  margin-top: 20px;
}

.shopinfo_details .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.shopinfo_details_link {
  margin-top: 20px;
}

.shopinfo_details_link a {
  display: block;
  width: 300px;
  margin: 0 auto;
  background: #9f3b3b;
  padding: 25px;
  text-align: center;
  font-size: 24px;
}

.sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  font-size: 20px;
}

.sns a.line-link {
  background-color: #975353;
}

.sns a.insta-link {
  background-color: #977c74;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-nav-area {
  display: none;
}

/* Footer */
.footer {
  background: #191919;
  padding: 68px 0 52px;
}

.footer-content {
  margin-bottom: 54px;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 53px;
}

.footer-shop {
  font-size: 16px;
}

.footer-shop a {
  display: inline-block;
  font-size: 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 39px;
  border-top: 1px solid #575757;
}

.footer-bottom p {
  font-size: 16px;
  text-align: right;
}

.tablet,
.sp,
.sp-mobile {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 1199px) {
  .nav-logo {
    left: 20px;
    transform: none;
  }

  .nav-container {
    padding-inline: 20px;
  }

  .force_inner .box {
    padding: 40px 20px 40px 60px;
  }

  .force_inner .box h3 {
    font-size: 24px;
  }

  .force_inner .box p {
    font-size: 16px;
  }

  .othermenu_inner {
    gap: 30px 60px;
  }

  .shopinfo_details {
    padding: 30px 40px;
  }

  .selectmenu .menuinfo_item:nth-of-type(n+2) {
    top: 0;
    margin-bottom: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width: 991px) {
  .force_inner .box {
    width: 73%;
  }

  .greeting_desc {
    margin-top: 30px;
  }

  .greeting .imggrid {
    margin-top: 100px;
  }

  .tablet {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .cmn_heading {
    font-size: 18px;
  }

  .cmn_heading::first-letter {
    font-size: 50px;
  }

  .cmn_heading.vertical {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }

  .cmn_heading.vertical::first-letter {
    padding-bottom: 0;
  }

  .header {
    position: absolute;
    z-index: 3;
  }

  .fixed-nav {
    display: none;
  }

  .nav-container {
    height: 90px;
  }

  .nav-logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo .logo {
    height: 80px;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 90px;
    flex-direction: column;
    background-color: rgba(83, 83, 83, 0.98);
    width: 80%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-menu {
    display: block;
  }

  .nav-tel,
  .nav-btn {
    display: none;
  }

  .hero {
    height: calc(100svh - 75px);
  }

  .hero-play-button {
    width: 100px;
    height: 100px;
  }

  .hero-play-button::before {
    border-left: 30px solid #fff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
  }

  .hero-nav {
    display: none;
  }


  .hero-left {
    font-size: 41px;
  }

  .hero-bottom {
    left: 60px;
    font-size: 41px;
  }

  .submain {
    padding: 100px 0 200px;
    background: url(../img/submain_bg01_sp.png) no-repeat right bottom/cover;
  }

  .submain h2 {
    font-size: 17px;
    line-height: 2.2;
  }

  .force {
    padding: 0 0 20px;
  }

  .force .cmn_heading {
    text-align: center;
  }

  .force_inner {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .force_inner .img {
    width: 82.66%;
    max-width: none;
  }

  .force_inner .box {
    position: relative;
    bottom: auto;
    top: -50px;
    width: 86.66%;
    padding: 20px;
    margin-left: auto;
  }

  .force_inner .box h3 {
    font-size: 16px;
  }

  .force_inner .box p {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.8;
  }

  .selectmenu::before {
    clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0% 96%);
  }

  .selectmenu_inner {
    position: relative;
    padding-inline: 20px;
  }

  .selectmenu .menuinfo {
    width: 100%;
  }

  .selectmenu_inner .cmn_heading.vertical {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .selectmenu .menuinfo_item {
    width: 82.76%;
  }

  .selectmenu .menuinfo_item .info h3 {
    font-size: 16px;
  }

  .selectmenu .menuinfo_item .info h3::before {
    top: 13px;
  }

  .selectmenu .menuinfo_item .info .phase {
    margin-top: 5px;
    font-size: 13px;
  }

  .othermenu_inner {
    gap: 30px;
  }

  .othermenu_block h3 {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .othermenu_list li {
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
  }

  .othermenu_list li .dots {
    display: none;
  }

  .greeting {
    padding: 50px 0 0;
  }

  .greeting_desc {
    margin-top: 20px;
  }

  .greeting_desc .desc {
    position: static;
    width: 80%;
    padding: 27px 15px;
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 2;
  }

  .greeting .imggrid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .greeting .imggrid .imggrid_item:nth-of-type(1) {
    order: 2;
  }

  .greeting .imggrid .imggrid_item:nth-of-type(2) {
    order: 1;
  }

  .shopinfo {
    padding: 100px 0 50px;
  }

  /* .shopinfo_inner {
    flex-direction: column;
    align-items: center;
  } */

  .shopinfo_details {
    width: 86.66%;
    padding: 15px 0 60px 40px;
    margin-left: auto;
  }

  .shopinfo_inner {
    position: relative;
  }

  .shopinfo .container_inner {
    padding-right: 0;
  }

  .shopinfo_inner .cmn_heading.vertical {
    position: absolute;
    left: 0;
    top: -35px;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1;
  }

  .shopinfo_details th, .shopinfo_details td {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    line-height: 1.8;
  }

  .shopinfo_details th {
    width: 100%;
    min-width: auto;
    padding-top: 20px;
  }

  .shopinfo_details td {
    padding-right: 10px;
    padding-bottom: 20px;
  }

  .shopinfo_details .map {
    aspect-ratio: 520 / 300;
    padding-right: 20px;
  }

  .shopinfo_details_link a {
    max-width: 170px;
    font-size: 16px;
    padding: 15px;
    margin: 0;
  }

  .sns a {
    justify-content: space-between;
    gap: 0;
    padding: 20px;
    font-size: 14px;
  }

  .sns a.insta-link img {
    width: 30px;
    height: auto;
  }

  .sns a.line-link img {
    width: 32px;
    height: auto;
  }

  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 75px;
    display: flex;
    background: #000;
  }

  .mobile-bottom-nav .sp-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 45.4%;
    color: #fff;
    font-size: 12px;
    text-align: center;
  }


  .mobile-bottom-nav .sp-tel .tel-number {
    font-size: 15px;
  }

  .mobile-bottom-nav .sp-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 34.6%;
    font-size: 14px;
    color: #fff;
  }

  .mobile-bottom-nav .sp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 45px;
    background: #fff;
  }

  .mobile-bottom-nav .sp-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    width: 20%;
    background: #bababa;
    color: #000;
    font-size: 12px;
  }

  .mobile-bottom-nav .sp-toggle .bar {
    width: 36px;
    height: 2px;
    background: #000;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* .mobile-bottom-nav .sp-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-bottom-nav .sp-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-bottom-nav .sp-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  } */

  .mobile-nav-area {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #1a1a1a;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-nav-area.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-area .inner {
    position: relative;
    width: 100%;
    height: 100svh;
  }

  .mobile-nav-area .navcontent {
    width: 100%;
    height: calc(100svh - 75px);
    padding: 35px 0;
    overflow-y: auto;
  }

  .mobile-nav-area .nav-logo {
    position: static;
    transform: none;
    text-align: center;
  }

  .mobile-nav-area .nav-logo .logo {
    margin: 0 auto;
  }

  .mobile-nav-area .nav-list {
    position: relative;
    margin-top: 20px;
    padding-left: 23.3%;
  }

  .mobile-nav-area .nav-list::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 20%;
    height: 2px;
    background: #fff;
  }

  .mobile-nav-area .nav-list li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .mobile-nav-area .nav-sns {
    margin-top: 20px;
  }

  .mobile-nav-area .sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
  }

  .mobile-nav-area .mobile-tel {
    margin-top: 25px;
  }

  .mobile-nav-area .mobile-tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
  }

  .mobile-nav-area .mobile-tel a .tel-number {
    font-size: 26px;
  }

  .mobile-nav-area .mobile-btn a {
    display: block;
    border: solid 1px #fff;
    padding: 15px;
    max-width: 370px;
    width: 49.4%;
    margin: 27px auto 0;
    font-size: 14px;
    text-align: center;
  }

  .mobile-nav-area .sns-head {
    font-size: 14px;
    text-align: center;
  }

  .mobile-nav-area .close-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    width: 20%;
    height: 75px;
    background: #000;
    font-size: 12px;
  }

  .mobile-nav-area .close-btn .bar {
    width: 36px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
  }

  .mobile-nav-area .close-btn .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-nav-area .close-btn .bar:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-area .close-btn p {
    margin-top: 5px;
  }

  .footer {
    padding: 40px 0 30px;
    margin-bottom: 75px;
  }

  .footer-content {
    margin-bottom: 30px;
  }

  .footer-info {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .footer-logo .logo {
    width: 70px;
    height: auto;
  }

  .footer-shop {
    font-size: 13px;
  }

  .footer-shop a {
    font-size: 21px;
  }

  .footer-bottom {
    padding-top: 19px;
  }

  .footer-bottom p {
    font-size: 13px;
    text-align: center;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .sp-mobile {
    display: block;
  }
}