@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --wine: #7c0a22;
}

body {
  color: #ffffff;
  /* RGB */
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: min(3.3vw, 1.6rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

h2,
h3,
h4 {
  font-weight: 700
}

a {
  color: #ffffff;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wine {
  color: var(--wine);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.center {
  text-align: center;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.ft_50 {
  font-size: min(7.3vw, 5rem);
}

.ft_42 {
  font-size: min(8.6vw, 4.2rem);
}

.ft_40 {
  font-size: min(8.3vw, 4rem);
}

.ft_30 {
  font-size: min(6.25vw, 3.0rem);
}

.ft_26 {
  font-size: min(5.4vw, 2.6rem);
}

.ft_20 {
  font-size: min(4.1vw, 2.0rem);
}

.ft_14 {
  font-size: min(2.9vw, 1.4rem);
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInleftTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  flex-wrap: wrap;
}

.flex.sp_none {
  display: none;
}

header {
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 50px;
  top: 0;
}

.header_inner {
  padding-left: 3vw;
  gap: 5%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.header_inner .logo {
  width: 45vw;
  padding-top: 5px;
}

.header_right {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 999;
  margin: 0;
  top: 0;
  right: 0;
  background: var(--wine);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #ffffff;
  width: 25px;
  top: 23px;
}

.ham_btn span:nth-of-type(1) {
  top: 15px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 19px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
}

.ham_btn.active span:nth-of-type(2) {
  top: 30px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
}

.ham_btn span:nth-of-type(2)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -8px;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(2)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 4px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--wine);
  overflow-y: auto;
  padding: 60px;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 2.0rem;
  line-height: 1;
  padding: 12px 10vw;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap.show {
  right: 0;
}

/* MV */
.MV {
  position: relative;
  background-image: url(../img/bg01.png);
  background-size: cover;
  padding-left: 5vw;
  padding-bottom: min(24vw, 140px);
  ;
}

.MV_side {
  position: absolute;
  background-image: url(../img/sp_bg02.png);
  background-size: cover;
  width: 5vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.MV_text {
  position: absolute;
  background-image: url(../img/bg02.png);
  background-size: cover;
  width: 100%;
  height: min(24vw, 140px);
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.MV_text p {
  width: 90%;
  margin: 0 auto;
  text-align: justify;
  font-size: min(3.1vw, 1.6rem);
  position: relative;
  z-index: 2;
}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 100px;
  background-color: #000000;
}

#top_sns {
  background-image: url(../img/sp_bg01.png);
  background-size: cover;
}

#top_sns .section_inner {
  width: 90%;
  margin: 0 auto;
}

#top_sns .content {
  width: 90%;
  margin: 0 auto;
}

.section_inner {
  position: relative;
  z-index: 2;
}

#top_about {
  background-image: url(../img/sp_bg02.png);
  background-size: cover;
  color: white;
  overflow: hidden;
  padding: 44px 0 8vw;
}

h2.section_ttl {
  width: auto;
  height: min(16.6vw, 121px);
  width: 90%;
  margin: 0 auto;
  position: relative;
}

h2.section_ttl img {
  width: auto;
  height: 100%;
}

.section_lead {
  gap: 0;
  width: 90%;
  margin: 40px auto;
}

.section_lead span {
  margin: 0 auto 0 0;
}

.section_lead span:last-child {
  margin: 0 0 0 auto;
}

.content_text {
  width: 90%;
  margin: 0 auto;
  line-height: 2.5;
}

.content_imgWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.more {
  position: relative;
  z-index: 10;
}

.more a {
  height: 62px;
  width: 274px;
  border-radius: 31px;
  position: relative;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  z-index: 10;
}

.more a p {
  display: inline-block;
  line-height: 1;
  padding-right: 90px;
  font-size: 2rem;
  position: relative;
}

.more a p::after {
  content: "";
  width: 67px;
  height: 6px;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 68%;
  transform: translateY(-50%);
  z-index: 1;
}

.deco {
  position: absolute;
}

#top_about .deco {
  width: 60%;
  top: 20px;
  right: -10vw;
}

.gradation {
  position: absolute;
  width: 100%;
  height: 20vw;
  bottom: 0;
  background-image: linear-gradient(180deg, #63030a, rgba(0, 0, 0, 1));
}

#top_lunch h2.section_ttl {
  width: auto;
  height: min(15vw, 107px);
  position: relative;
  width: 90%;
  margin: 0 auto;
}

#top_lunch h2.section_ttl::after {
  content: "";
  width: 40%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

#top_lunch .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#top_lunch .section_lead {
  font-size: min(6.25vw, 5.0rem);
  width: 100%;
}

#top_lunch .content_text {
  width: 100%;
}

#top_lunch .deco {
  width: 25%;
  top: 0;
  right: 5%;
}

#top_dinner {
  padding-bottom: 20px;
}

#top_dinner .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#top_dinner h2.section_ttl {
  height: min(13vw, 96px);
}

#top_dinner h2.section_ttl img {
  margin: 0 0 0 auto;
}

#top_dinner h2.section_ttl::after {
  content: "";
  width: 35%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

#top_dinner .section_lead {
  font-size: min(6vw, 5.0rem);
  width: 100%;
  align-items: flex-end;
}

#top_dinner .section_lead span {
  margin: 0;
}

#top_dinner .content_text {
  width: 100%;
}

#top_dinner .gradation {
  position: absolute;
  width: 100%;
  height: 20vw;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 1), #63030a);
}

#top_store {
  background-color: #63030a;
}

#top_store h2.section_ttl {
  width: auto;
  height: min(14.5vw, 99px);
  position: relative;
  width: 90%;
  margin: 0 auto;
}

#top_store h2.section_ttl::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

#top_store .section_lead {
  font-size: min(6.25vw, 5.0rem);
  width: 100%;
  text-align: left;
}

#top_store .content {
  width: 90%;
  margin: 0 auto;
}

#top_store .content_text {
  width: 100%;
}

.parallax {
  height: 40vw;
  background: none;
}

/* 背景画像 */
.parallax::before {
  background-image: url(../img/parallax.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

#top_information {
  background-image: url(../img/sp_bg02.png);
  background-size: cover;
  color: #ffffff;
}

#top_information h2.section_ttl {
  width: auto;
  height: min(18vw, 143px);
  position: relative;
  width: 90%;
  margin: 0 auto;
}

#top_information h2.section_ttl::after {
  content: "";
  width: 60%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 90%;
  right: 0;
  z-index: 1;
}

#top_information .content {
  width: 90%;
  margin: 0 auto;
}

dl {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
  margin: 40px auto;
  font-weight: 700;
}

dl dt,
dl dd {
  padding: 4% 0;
  border-bottom: 1px solid #ffffff;
}

dl a {
  color: #ffffff;
}

#top_information .img_wrap {
  gap: 10px;
}

#top_access {
  padding: 0;
  background-color: #63030a;
}

.contact {
  padding: 40px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact h2.section_ttl {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 20px;
}

#top_access h2.section_ttl::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
}

.contact_inner {
  margin: 80px 0;
  gap: 40px;
}

.contact_inner-right {
  gap: 20px;
}

.contact_inner span {
  display: block;
}

.insta_btn {
  width: 36px;
  margin: 0 auto;
}

.g_map {
  display: block;
  margin: 40px auto;
}

.g_map a {
  display: inline-block;
  padding: 0 30px;
  border: 1px solid #ffffff;
}

.tel {
  padding: 40px 0;
}

.tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #333333;
  margin: 0 auto;
}

.tel a p {
  padding-left: min(11vw, 60px);
  position: relative;
  line-height: 1;
}

.tel a p::before {
  content: "";
  width: min(11vw, 57px);
  height: min(8.7vw, 42px);
  background-image: url(../img/tel_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

#top_access .tel a {
  color: #ffffff;
}

#top_access .deco {
  width: 40%;
  top: 34%;
  left: -10vw;
}

footer {
  background: #000000;
  position: relative;
}

.footer_inner {
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer_logo {
  width: 80%;
  max-width: 360px;
  margin: 0 auto 40px;
}

footer nav {
  width: 100%;
}

footer ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 30px;
  text-align: left;
  padding-left: 5vw;
  font-weight: 700;
}

.cr {
  padding: 16px 0;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
  background-color: #63030a;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 900;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex.sp_none {
    display: flex;
  }

  .flex.pc_none {
    display: none;
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 5%;
  }

  .flex.column {
    flex-direction: column;
    justify-content: center;
  }

  .flex.reverse {
    flex-direction: row-reverse;
  }

  header {
    z-index: 10;
    width: 100%;
    height: 120px;
  }

  .header_inner {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 2%;
    padding: 10px 2vw 0;
  }

  .header_inner .logo {
    width: auto;
    height: calc(4vw * 4);
    padding: 0;
    max-width: 620px;
  }

  .header_inner .logo img {
    width: auto;
    height: 100%;
  }

  .header_right {
    width: calc(100% - 300px);
    max-width: 780px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
  }

  .header_right-bottom {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }

  .header_inner .tel {
    padding: 0;
  }

  .header_inner .tel a p {
    font-size: 3rem;
    color: #ffffff;
    padding-left: 48px;
  }

  .header_inner .tel a p::before {
    width: 41px;
    height: 31px;
  }

  .pc_nav {
    width: 100%;
    max-width: 710px;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  nav ul li a {
    color: #ffffff;
    line-height: 1;
    gap: 8px;
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
  }

  nav ul li a::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all .3s;
    transform: scale(0, 0);
    transform-origin: left top
  }

  nav li a:hover:after {
    transform: scale(1, 1);
  }

  .header_inner .insta_btn {
    margin: 0;
  }

  /* pcスタイル */
  @media screen and (min-width: 1400px) {
    .wide_only {
      display: block;
    }

    .header_left {
      display: flex;
      align-items: flex-start;
      width: 950px;
    }

    .header_left p {
      margin-left: 0;
      text-align: left;
      text-wrap: nowrap;
    }
  }

  .MV {
    padding-left: 320px;
    padding-bottom: 70px
  }

  .MV_side {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .MV_side .MV_side--inner {
    width: 90%;
    height: 45%;
    margin: auto auto 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 5%;
  }

  .MV_side .MV_side--inner p {
    width: 90%;
    font-size: min(0.8vw, 1.6rem);
  }

  .MV_side .MV_side--inner .tel {
    padding: 0;
  }

  .MV_side .MV_side--inner .tel a p {
    color: #ffffff;
    width: 100%;
    font-size: 2.8rem;
    padding-left: 40px;
  }

  .MV_side .MV_side--inner .tel a p::before {
    width: 41px;
    height: 31px;
  }

  .MV_side .MV_side--inner p {
    width: 90%;
    font-size: min(0.8vw, 1.6rem);
  }

  .MV_text {
    height: auto;
    padding: 20px 0;
  }

  .MV_text p {
    margin: 0 auto 0 320px;
    text-align: center;
    word-break: keep-all;
    display: inline-block;
  }

  section {
    padding: 120px 0;
  }

  .section_inner {
    width: 100%;
  }

  h2.section_ttl {
    margin: 0 5vw;
    display: inline-block;
    width: auto;
  }

  #top_sns {
    background-image: url(../img/bg01.png);
  }

  #top_about {
    background-image: url(../img/bg02.png);
    text-align: right;
    overflow: visible;
    padding-bottom: 70px;
  }

  #top_about h2.section_ttl {
    margin-bottom: -80px;
  }

  #top_about .section_lead {
    width: 800px;
    margin: 0 20vw 20px auto;
  }

  #top_about .content_textWrap {
    width: 35%;
    padding-right: 5vw;
  }

  #top_about .content_img {
    width: 60%;
  }

  #top_about .deco {
    width: 40%;
    top: -10%;
    right: auto;
    left: 0;
  }

  .gradation {
    height: 120px;
    background-image: linear-gradient(180deg, #63030900, rgba(0, 0, 0, 1));
  }

  #top_lunch .content {
    justify-content: flex-end;
  }

  #top_lunch .section_lead {
    word-break: keep-all;
    text-align: right;
  }

  #top_lunch .content_textWrap {
    width: 50%;
    max-width: 660px;
    margin: 0 0 0 5vw;
  }

  #top_lunch .content_img {
    width: 50%;
  }

  #top_lunch h2.section_ttl {
    margin: 0 5vw;
    display: inline-block;
    width: auto;
  }

  #top_lunch h2.section_ttl::after {
    width: 450px;
    right: auto;
    left: 120%;
  }

  #top_lunch .deco {
    width: 15%;
    top: 0;
    right: 35%;
  }

  #top_dinner .content {
    justify-content: flex-end;
  }

  #top_dinner .content_textWrap {
    width: 50%;
    max-width: 720px;
    margin: 0 5vw 0 0;
    justify-content: space-evenly;
  }

  #top_dinner .content_img {
    width: 50%;
    padding-bottom: 5%;
  }

  #top_dinner h2.section_ttl {
    margin: 0 5vw;
    display: inline-block;
    width: auto;
  }

  #top_dinner h2.section_ttl::after {
    width: 450px;
    right: 120%;
    left: auto;
  }

  #top_dinner .deco {
    width: min(15%, 200px);
    top: auto;
    bottom: 0;
    right: 5%;
    z-index: 2;
  }

  #top_dinner .deco.deco01 {
    width: 35%;
    top: auto;
    bottom: 50%;
    right: auto;
    left: 5%;
    z-index: 0;
  }

  #top_dinner .gradation {
    height: 120px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 1), #630309);
  }

  #top_store {
    padding-bottom: 0;
  }

  #top_store .content {
    width: 100%;
    justify-content: flex-end;
  }

  #top_store .section_lead {
    width: 50%;
    max-width: 780px;
    position: absolute;
    top: 40px;
    right: 10vw;
    font-size: min(2vw, 4.0rem);
  }

  #top_store .content_textWrap {
    width: 50%;
    max-width: 660px;
    padding-top: 120px;
    margin: 0 5vw 0 0;
    justify-content: space-evenly;
  }

  #top_store .content_imgWrap {
    width: 50%;
    padding-bottom: 5%;
  }

  #top_store h2.section_ttl {
    margin: 0 5vw;
    display: inline-block;
    width: auto;
  }

  #top_store h2.section_ttl::after {
    width: 450px;
    right: auto;
    left: 120%;
  }

  #top_store .deco {
    width: 20%;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 2;
  }

  #top_information {
    container-type: inline-size;
    container-name: top_information;
  }

  #top_information h2.section_ttl {
    margin: 0 5vw;
    display: inline-block;
    width: auto;
  }

  #top_information h2.section_ttl::after {
    width: 450px;
    top: 50%;
    right: auto;
    left: calc(100% + 40px);
  }

  #top_information .content {
    width: 90%;
    max-width: 1280px;
    margin: 80px auto 0;
    flex-direction: row-reverse;
    gap: 8%;
  }

  #top_information .text_Wrap {
    width: 50%;
  }

  #top_information dl {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .description-item {
    display: flex;
    width: 100%;
  }

  dt {
    width: 160px;
  }

  dd {
    width: calc(100% - 160px);
  }

  dl dt,
  dl dd {
    padding: 4% 0;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
  }

  .img_wrap {
    gap: 0;
    width: 50%;
    padding-top: 0;
    flex-direction: row-reverse;
  }

  @container top_information (max-width: 1300px) {
    #top_information .content {
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }
  }

  #top_information .deco {
    width: 70%;
    bottom: 0;
  }

  #top_information .deco01 {
    width: 15%;
    bottom: auto;
    top: 40px;
    left: auto;
    right: 2vw;
  }

  #top_access {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    container-type: inline-size;
    container-name: top_access;
  }

  #top_access::before {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #63030a;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: -1;
  }

  .contact {
    position: relative;
    width: 60%;
    padding: 40px 3%;
  }

  .contact_inner {
    flex-direction: row-reverse;
    margin: 40px 0;
    width: 100%;
  }

  #top_access .contact_inner-right {
    height: 100%;
    justify-content: space-between;
  }

  #top_access .contact_inner-left {
    height: 100%;
    justify-content: space-between;
    gap: 40px;
  }

  .contact_inner .g_map {
    margin: 0 auto;
  }

  #top_access .map {
    display: flex;
    align-items: center;
  }

  #top_access .deco {
    width: 30%;
    left: 30%;
    top: auto;
    bottom: 0;
  }

  @container top_access (max-width: 1580px) {
    .contact_inner {
      flex-direction: column;
    }
  }

  @media screen and (max-width: 1260px) {
    #top_access {
      flex-direction: column;
    }

    .contact {
      width: 100%;
    }

    .contact_inner {
      flex-direction: row-reverse;
    }
  }

  footer {
    position: absolute;
    width: 100%;
  }

  footer::before {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #63030a;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: -1;
  }

  .footer_inner {
    width: 95%;
    justify-content: flex-start;
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 5%;
  }

  .footer_logo {
    margin: 0;
    width: 40%;
  }

  .footer_info {
    text-wrap: nowrap;
  }

  footer nav {
    width: 60%;
    max-width: 800px;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 100%;
    gap: 80px;
  }

  footer nav ul {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-left: 0;
    font-weight: 700;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
}

/* 下層共通 */
.MV_under {
  padding-left: 0;
}

.MV_under .U_ttl {
  position: absolute;
  top: 32vw;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  width: auto;
  height: min(16.6vw, 121px);
}

#about_01 {
  background-image: url(../img/sp_bg02.png);
  background-size: cover;
  color: white;
  overflow: hidden;
  padding: 44px 0 8vw;
  padding-top: 100px;
}

#about_01 h2.section_ttl {
  height: auto;
}

#about_01 .content_img {
  width: 90%;
  margin: 0 auto;
}

#about_01 .deco {
  width: 60%;
  top: 20px;
  right: -10vw;
}

#about_01 .gradation {
  position: absolute;
  width: 100%;
  height: 20vw;
  bottom: 0;
}

#about_02 {
  padding-top: 40vw;
}

#about_02 .section_inner {
  padding-bottom: 20vw;
}

#about_02 .section_ttl img {
  margin: 0 auto;
}

#about_02 .name {
  text-align: center;
  line-height: 1.2;
  padding: 20px 0;
}

#about_02 .name span {
  display: block;
}

#about_02 .section_lead span {
  display: block;
}

#about_02 .content_img {
  width: 90%;
  margin: 0 auto;
}

#about_02 .deco {
  width: 90%;
  bottom: 0;
  right: 5vw;
  z-index: 2;
}

#about_02 .deco01 {
  width: 120%;
  bottom: auto;
  top: 20px;
  right: 0;
  z-index: 2;
}

#about_02 .gradation {
  position: absolute;
  width: 100%;
  height: 20vw;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 1), #63030a);
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .header_inner .logo_u {
    height: auto;
    width: 26vw;
  }

  .header_inner .logo_u img {
    height: auto;
    width: 100%;
  }

  .MV_under .U_ttl {
    height: min(8vw, 121px);
    top: 12vw;
  }

  .MV_under .U_ttl img {
    width: auto;
    height: 100%;
  }

  .MV_under .MV_text p {
    margin: 0 auto;
  }

  #about_01 {
    background-image: url(../img/bg02.png);
    text-align: right;
    overflow: visible;
    padding-bottom: 70px;
  }

  #about_01 .content {
    justify-content: flex-end;
    gap: 40px;
    padding-top: 100px;
  }

  #about_01 .section_lead {
    max-width: 600px;
    margin: 0 20vw 20px auto;
  }

  #about_01 .content_textWrap {
    width: 35%;
    min-width: 630px;
  }

  #about_01 .content_img {
    width: 60%;
    margin: 0;
  }

  #about_01 .deco {
    width: 40%;
    top: -10%;
    right: auto;
    left: 0;
  }

  #about_01 .gradation {
    height: 120px;
    background-image: linear-gradient(180deg, #63030900, rgba(0, 0, 0, 1));
  }

  #about_02 {
    padding-top: 7vw;
  }

  #about_02 h2.section_ttl {
    margin: 0 auto;
  }

  #about_02 .section_inner {
    padding-bottom: 5vw;
  }

  #about_02 .content {
    width: 90%;
    max-width: 1600px;
    justify-content: flex-end;
    gap: 40px;
    padding-top: 100px;
    margin: 0 auto;
  }

  #about_02 .content_textWrap>* {
    width: 100%;
    margin: 0;
  }

  #about_02 .deco01 {
    width: 50%;
    bottom: auto;
    top: 20px;
    right: 0;
    z-index: 2;
  }

  #about_02 .deco02 {
    width: 30%;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: 2;
  }

  #about_02 .gradation {
    height: 120px;
  }
}

#lunch_01 .gradation {
  height: 120px;
  top: 0;
  bottom: auto;
}

#lunch_01 .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#lunch_01 .content_textWrap>* {
  width: 100%;
}

#lunch_01 .section_lead {
  font-size: min(6.25vw, 5.0rem);
  margin: 0 auto;
}

#lunch_01 .border_text {
  width: 90%;
  margin: 60px auto;
  padding: 10px 20px;
  border: 1px solid #ffffff;
}

#lunch_01 .border_text p {
  padding-left: 24px;
  position: relative;
}

#lunch_01 .border_text p::before {
  content: "※";
  font-size: 2.0rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#lunch_01 .content_imgWrap {
  width: 90%;
  margin: 0 auto 120px;
  gap: 12px;
}

#lunch_01 .content_img {
  width: calc((100% - 12px)/ 2);
}

.link a {
  width: 236px;
  height: 54px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  line-height: 1;
}

.link a::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

.link a p {
  padding-right: 40px;
}

#lunch_01 .deco {
  width: 20%;
  top: 40px;
  right: 5vw;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #lunch_01 {
    padding-bottom: 16vw;
  }

  #lunch_01 .gradation {
    background-image: linear-gradient(180deg, #63030a, rgba(0, 0, 0, 1));
  }

  #lunch_01 .content_textWrap {
    max-width: 1080px;
    gap: 40px;
  }

  #lunch_01 .content_imgWrap {
    max-width: 1600px;
    margin: 120px auto;
    gap: 2vw 2%;
  }

  #lunch_01 .content_img {
    width: calc(98%/ 2);
  }

  #lunch_01 .deco01 {
    width: 14%;
    top: 0;
    right: auto;
    left: 2%;
  }

  #lunch_01 .deco02 {
    width: 14%;
    top: 15%;
    right: 2%;
    transform: scaleX(-1);
  }
}

#dinner_01 .gradation {
  height: 120px;
  top: 0;
  bottom: auto;
}

#dinner_01 .content_textWrap {
  width: 90%;
  margin: 0 auto;
}

#dinner_01 .content_textWrap>* {
  width: 100%;
}

#dinner_01 .section_lead {
  font-size: min(6.2vw, 5.0rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#dinner_01 .section_lead span {
  text-wrap: nowrap;
}

#dinner_01 .border_text {
  width: 90%;
  margin: 60px auto;
  padding: 10px 20px;
  border: 1px solid #ffffff;
}

#dinner_01 .border_text p {
  padding-left: 24px;
  position: relative;
}

#dinner_01 .border_text p::before {
  content: "※";
  font-size: 2.0rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#dinner_01 .content_imgWrap {
  width: 90%;
  margin: 0 auto 120px;
  gap: 12px;
}

#dinner_01 .content_img {
  width: calc((100% - 12px)/ 2);
}

#dinner_01 .deco {
  width: 20%;
  top: 40px;
  right: 5vw;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #dinner_01 {
    padding-bottom: 16vw;
  }

  #dinner_01 .gradation {
    background-image: linear-gradient(180deg, #63030a, rgba(0, 0, 0, 1));
  }

  #dinner_01 .section_lead {
    max-width: 700px;
  }

  #dinner_01 .section_lead span {
    margin: 0;
  }

  #dinner_01 .content_textWrap {
    max-width: 1000px;
    gap: 40px;
  }

  #dinner_01 .content_imgWrap {
    max-width: 1600px;
    margin: 120px auto;
    gap: 2vw 2%;
  }

  #dinner_01 .content_img {
    width: calc(98%/ 2);
  }

  #dinner_01 .deco01 {
    width: 14%;
    top: 0;
    right: auto;
    left: 2%;
  }

  #dinner_01 .deco02 {
    width: 14%;
    top: 15%;
    right: 2%;
    transform: scaleX(-1);
  }
}

#store_01 {
  background: #63030a;
  color: #ffffff;
  overflow: hidden;
  padding-top: 20vw;
}

#store_01 .section_inner {
  width: 90%;
  margin: 0 auto;
}

#store_01 .content_textWrap {
  margin-bottom: 40px;
}

#store_01 .content_textWrap>* {
  width: 100%;
  margin: 0;
}

#store_01 .section_lead {
  font-size: min(6.25vw, 4.0rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

#store_01::before {
  content: "";
  width: 45vw;
  height: 1px;
  background-color: #ffffff3f;
  position: absolute;
  top: 10vw;
  left: 5vw;
  z-index: 1;
}

#store_01 .content_imgWrap {
  padding-bottom: 60vw;
}

#store_01 .deco01 {
  width: 90%;
  top: 0;
  right: -10vw;
}

#store_01 .deco02 {
  width: 120%;
  bottom: 30vw;
  left: -25%;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #store_01 {
    padding-top: 120px;
  }

  #store_01 .content_textWrap {
    max-width: 810px;
    margin: 0 auto;
    gap: 40px;
  }

  #store_01::before {
    top: 80px;
  }

  #store_01 .content_imgWrap {
    max-width: 1280px;
    margin: 80px auto;
    gap: 1vw 6%;
    padding-bottom: 20vw;
  }

  #store_01 .content_img {
    width: calc(94%/ 2);
  }

  #store_01 .deco01 {
    width: 30%;
    right: 0vw;
  }

  #store_01 .deco02 {
    width: 25%;
    bottom: 70%;
    left: -5%;
  }

  #store_01 .deco03 {
    width: 20%;
    bottom: 5vw;
    right: 2%;
    transform: scale(-1, -1);
  }

  /* pcスタイル */
  @media screen and (min-width: 1200px) {
    #store_01::before {
      width: calc((90% - 800px) / 2);
      top: 155px;
      left: 2%;
    }
  }
}

#information_01 {
  background-image: url(../img/sp_info_bg.png);
  background-size: cover;
}

#information_01 .section_inner {
  width: 90%;
  margin: 0 auto;
}

#information_01 .section_inner dl {
  width: 100%;
}

#information_01 .content {
  width: 100%;
  padding-bottom: 120px;
}

#information_01 .deco01 {
  width: 90%;
  left: 5%;
  bottom: 600px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #information_01 {
    background-image: url(../img/info_bg.png);
    container-type: inline-size;
    container-name: information;
  }

  #information_01 h2.section_ttl::after {
    width: 450px;
    top: 50%;
    right: auto;
    left: calc(100% + 40px);
  }

  #information_01 .content {
    width: 90%;
    max-width: 1280px;
    margin: 80px auto 0;
    flex-direction: row-reverse;
    gap: 8%;
  }

  #information_01 .text_Wrap {
    width: 50%;
  }

  #information_01 .img_wrap {
    gap: 20px;
  }

  @container information (max-width: 1300px) {
    #top_information .content {
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }
  }

  #information_01 .deco01 {
    width: 70%;
    left: 0;
    bottom: 600px;
  }

  #information_01 .deco02 {
    width: 10%;
    right: 0;
    top: 0;
  }
}