@charset "utf-8";
/*=========================
  Common
=========================*/
/* font import, define */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

/* color */
:root {
  --black: #333333;
  --white: #ffffff;
}

/* variables */
:root {
  --section-padding: 5rem 0;
}
@media (max-width: 960px) {
  :root {
    --section-padding: 3rem 0;
  }
}

html {
  scroll-behavior: smooth;
  background-color: #131114;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  font-size: 1.125rem; /* 18px */
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.5;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 2;
  text-align: justify;
  @media (max-width: 960px) {
    font-size: 1rem;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
}

.pc-only {
  display: initial;
}
.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: initial;
  }
}

.flex {
  display: flex;
  /* align-items: center; */
}

.container {
  width: calc(100% - 2rem);
  max-width: 1400px;
  margin-inline: auto;
}

/* button */
.button {
  /* --bg-color: pink;
  --color: #333333;
  --bg-color-lighten: color-mix(in srgb, var(--bg-color), white 25%);
  --color-lighten: color-mix(in srgb, var(--color), white 25%); */
  /* background-color: var(--bg-color);
  color: var(--color); */
  border: #ffffff 1px solid;
  padding: 0.5rem 1rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  position: relative;
  transition: 0.3s ease;
  * {
    transition: 0.3s ease;
  }
  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
      background-color: #ffffff;
      color: #131114;
      border: #131114 1px solid;
      .arrow {
        background-color: #131114;
      }
    }
    /* &::before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    } */
  }
  .icon {
    margin-right: 0.5rem;
  }
  .arrow {
    background-color: #ffffff;
    width: 60px;
    height: 8px;
    clip-path: polygon(0 40%, 80% 40%, 80% 0, 80% 0, 100% 40%, 100% 55%, 0 55%);
    margin-inline: 1rem;
  }
}

/*=========================
  header
=========================*/
.header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  height: 120px;
  padding: 0 2rem;
  color: #ffffff;
  .header-left {
  }
  .header-right {
  }
  .tel {
    border: 1px solid #ffffff;
    padding: 1rem;
    align-items: center;
    gap: 10px;
    .tel-link {
      font-size: 1.875rem;
      .icon {
        margin-right: 10px;
      }
    }
  }
  .pc-nav {
    .nav-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
    }
  }
  .sp-hamburger {
    background-color: #131114;
    display: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 40px;
    height: fit-content;
    aspect-ratio: 1/1;
    .line {
      height: 1px;
      width: 30%;
      background-color: #ffffff;
      content: '';
      transition: 0.3s;
    }
  }
  .sp-hamburger.active {
    .line {
      background-color: #ffffff;
    }
    .line:nth-child(1) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 40%;
      rotate: -45deg;
    }
    .line:nth-child(2) {
      opacity: 0;
    }
    .line:nth-child(3) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 40%;
      rotate: 45deg;
    }
  }
  .sp-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -120%;
    width: 90vw;
    height: 100dvh;
    background-color: #131114;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    .nav-items {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      .nav-items__item a {
        text-align: center;
        text-wrap: balance;
        font-size: 1.2rem;
      }
    }
  }
  .sp-nav.active {
    right: 0;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: #000;
    opacity: 0.75;
  }
  .overlay.active {
    display: block;
  }
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1120px) {
  .header {
    position: fixed;
    height: 60px;
    padding: 1rem;
    .header-left * {
      display: none;
    }
    .pc-nav {
      display: none;
    }
    .sp-hamburger {
      display: flex;
    }
  }
}

/*=========================
  mv
=========================*/
section.top_mv {
  position: relative;
  .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #000;
    opacity: 0.4;
  }
  .logo-wrapper {
    position: absolute;
    top: 55%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .logo {
    .logo-icon {
      margin-bottom: 2rem;
    }
  }
  .splide.pc-mv {
    .splide__track {
    }
    .slide-img {
      width: 100%;
      min-height: 800px;
      object-fit: cover;
    }
  }
  .splide.sp-mv {
    display: none;
    .slide-img {
      width: 100%;
      height: 600px;
      object-fit: cover;
    }
  }
}
@media (max-width: 960px) {
  section.top_mv {
    .logo-wrapper {
      top: 50%;
    }
    .logo {
      width: calc(70 / 430 * 100vw);
      max-width: 100px;
    }
    .pc-mv {
      display: none;
    }
    .sp-mv {
      display: initial !important;
    }
  }
}

/*=========================
  concept
=========================*/
section.top_concept {
  background: url(../img/top/concept-bg.jpg) no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 8rem 0 0 0;
  .section-flex {
    width: 100%;
    display: flex;
    margin: 0 auto 0 0;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section-title {
    font-size: 3rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    &::before {
      content: '';
      display: block;
      width: 30%;
      height: 1px;
      background-color: #ffffff;
      margin-right: 1rem;
    }
  }
  .texts {
    padding: 2rem;
    padding-top: 3rem;
    .text {
      max-width: 550px;
      width: fit-content;
      margin-inline: auto;
    }
  }
}
@media (max-width: 960px) {
  section.top_concept {
    padding: 3rem 0 0 0;
    .section-flex {
      flex-direction: column;
      gap: 2rem;
      .flex-left {
        width: 100%;
        padding-right: 1rem;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .section-img {
      max-width: 600px;
    }
    .section-title {
      justify-content: center;
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      &::before {
        display: none;
      }
    }
    .texts {
      padding: 0;
      .text {
      }
    }
  }
}

/*=========================
  food
=========================*/
section.top_food {
  background: url(../img/top/food-bg.jpg) no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 8rem 0 0 0;
  .section-flex {
    width: 100%;
    display: flex;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
      margin-right: 2rem;
    }
  }
  .section-title {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 2rem;
    &::before {
      content: '';
      display: block;
      width: 30%;
      height: 1px;
      background-color: #ffffff;
      margin-inline: 1rem;
    }
  }
  .texts {
    margin: auto;
    padding: 2rem;
    padding-top: 3rem;
    .text {
      width: fit-content;
      margin-inline: auto;
      margin-bottom: 2rem;
    }
    .button {
      margin-inline: auto;
    }
  }
  .food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    .food-grid__img {
      aspect-ratio: 1/1;
      width: 100%;
      height: fit-content;
      object-fit: cover;
    }
  }
}
@media (max-width: 960px) {
  section.top_food {
    padding: 6rem 0 0 0;
    .section-flex {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      .flex-left {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .section-title {
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      &::before {
        display: none;
      }
    }
    .texts {
      padding: 0;
      .text {
      }
      .button {
      }
    }
    .food-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
}

/*=========================
  drink
=========================*/
section.top_drink {
  padding: 8rem 0 8rem 0;
  background: url(../img/top/drink-bg.jpg) no-repeat;
  background-size: cover;
  .section-flex {
    width: 100%;
    display: flex;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .section-title {
    font-size: 3rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    &::before {
      content: '';
      display: block;
      width: 30%;
      height: 1px;
      background-color: #ffffff;
      margin-inline: 1rem;
    }
  }
  .texts {
    margin: auto;
    padding: 2rem;
    padding-top: 3rem;
    .text {
      width: fit-content;
      margin-inline: auto;
      margin-bottom: 2rem;
    }
    .button {
      margin-inline: auto;
    }
  }
}
@media (max-width: 960px) {
  section.top_drink {
    padding: 6rem 0 6rem 0;
    .section-flex {
      flex-direction: column-reverse;
      gap: 2rem;
      .flex-left {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .section-title {
      justify-content: center;
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      &::before {
        display: none;
      }
    }
    .section-img {
      width: 100%;
      max-width: 500px;
      margin-inline: auto;
    }
    .texts {
      padding: 0;
      .text {
      }
      .button {
      }
    }
  }
}

/*=========================
  store_inside
=========================*/
section.top_store_inside {
  padding: 0 0 8rem 0;
  background: url(../img/top/inside-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
  .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 60%;
    object-fit: cover;
  }
  .flex {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    gap: 2rem;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .section-title {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 2rem;
    &::before {
      content: '';
      display: block;
      width: 30%;
      height: 1px;
      background-color: #ffffff;
      margin-inline: 1rem;
    }
  }
  .texts {
    padding-top: 3rem;
    .text {
      max-width: 400px;
      margin-inline: auto;
      margin-bottom: 2rem;
    }
    .button {
      margin-inline: auto;
    }
  }
  .flex:nth-of-type(2) {
    margin: 2rem auto 0 0;
    .texts {
    }
  }
  .inside-img {
    width: 100%;
  }
  .button.sp-only {
    display: none;
  }
}
@media (max-width: 960px) {
  section.top_store_inside {
    padding: 0 0 4rem 0;
    .bg-img {
      width: 90%;
      height: 40%;
    }
    .flex {
      flex-direction: column;
      gap: 2rem;
      .flex-left {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .section-title {
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      &::before {
        display: none;
      }
    }
    .texts {
      padding-top: 2rem;
      .text {
        margin-bottom: 0;
      }
    }
    .inside-img {
      max-width: 500px;
      margin-inline: auto;
    }
    .flex:nth-of-type(2) {
      flex-direction: column-reverse;
      .texts {
        padding-top: 0;
      }
    }
    .button.pc-only {
      display: none;
    }
    .button.sp-only {
      margin-top: 2rem;
      margin-inline: auto;
    }
  }
}

/*=========================
  recruit
=========================*/
section.top_recruit {
  background: url(../img/top/recruit-bg.jpg) no-repeat;
  background-size: cover;
  padding: 4rem 0 4rem 0;
  .box {
    width: 80%;
    max-width: 1200px;
    margin-inline: auto;
    position: relative;
    .bg-img-pc {
      position: relative;
      inset: 0;
      width: 100%;
      object-fit: contain;
    }
    .bg-img-sp {
      display: none;
      position: relative;
      inset: 0;
      width: 100%;
      object-fit: cover;
    }
    .overlay {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-color: #000;
      opacity: 0.6;
    }
    .box-inner {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      outline: 1px solid #ffffff;
      outline-offset: -10px;
    }
    .flex {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      .flex-left {
        /* width: 60%; */
      }
      .flex-right {
        /* width: 40%; */
      }
    }
    .section-title {
      font-size: 2.75rem;
      margin-bottom: 1.5rem;
    }
    .copy {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
    .list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }
    .button {
      border-radius: 50px;
      font-size: 1.125rem;
      span {
        margin-left: 1rem;
      }
    }
  }
}
@media (max-width: 960px) {
  section.top_recruit {
    padding: 4rem 0 4rem 0;
    .box {
      width: 85%;
      .bg-img-pc {
        display: none;
      }
      .bg-img-sp {
        display: initial;
        position: absolute;
      }
      .box-inner {
        position: relative;
        padding: 2rem;
      }
      .flex {
        flex-direction: column;
        .flex-left {
          width: 100%;
        }
        .flex-right {
          width: 100%;
        }
      }
      .section-title {
        text-align: center;
        font-size: 2.25rem;
      }
      .copy {
        text-align: center;
        text-wrap: balance;
        font-size: 1.25rem;
      }
      .list {
        flex-wrap: wrap;
        font-size: 1rem;
        .list__item {
        }
      }
      .button {
        margin-inline: auto;
      }
    }
  }
}

/*=========================
  overview
=========================*/
section.top_overview {
  padding: 8rem 0 4rem 0;
  background: url(../img/top/overview-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
  .bg-black {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #131114;
    width: 30%;
    height: 100%;
  }
  .section-flex {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .section-title {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 4rem;
    &::before {
      content: '';
      display: block;
      width: 30%;
      height: 1px;
      background-color: #ffffff;
      margin-inline: 1rem;
    }
  }
  .section-title.sp-only {
    display: none;
  }
  .section-img {
    margin-bottom: 4rem;
  }
  .cancel-policy {
    border: #ffffff 1px solid;
    width: 80%;
    margin-inline: auto;
    padding: 2rem;
    margin-bottom: 4rem;
    .title {
      text-align: center;
      font-size: 1.5rem;
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }
  }
  .table {
    max-width: 600px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
    margin-bottom: 4rem;
    .row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
    }
  }
  .button {
    margin-inline: auto;
  }
}
@media (max-width: 960px) {
  section.top_overview {
    padding: 4rem 0 4rem 0;
    .bg-black {
    }
    .section-flex {
      flex-direction: column-reverse;
      gap: 4rem;
      .flex-left {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
      .flex-right {
        width: calc(100% - 2rem);
        margin-inline: auto;
      }
    }
    .section-title {
      &::before {
        display: none;
      }
    }
    .section-title.pc-only {
      display: none;
    }
    .section-title.sp-only {
      display: flex;
      border-bottom: #ffffff 1px solid;
      padding-bottom: 1rem;
      margin-bottom: 4rem;
    }
    .section-img {
    }
    .cancel-policy {
      width: 100%;
      padding: 1rem;
      .title {
        font-size: 1rem;
      }
      .text {
        font-size: 0.8rem;
      }
    }
    .table {
      font-size: 1rem;
      grid-template-columns: 1fr;
      .row {
      }
    }
  }
}

/*=========================
  map
=========================*/
section.top_map {
  .iframe-wrapper {
    iframe {
      width: 100%;
      height: 400px;
    }
  }
}

/*=========================
  footer
=========================*/
footer {
  background: url(../img/footer-bg.jpg) no-repeat;
  padding: var(--section-padding);
  padding-inline: 5%;
  background-size: cover;
  color: #ffffff;
  justify-content: space-between;
  display: flex;
  align-items: center;
  .footer-left {
  }
  .footer-right {
    margin-right: 5%;
  }
  .row {
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .tel {
    border: 1px solid #ffffff;
    padding: 1rem;
    align-items: center;
    gap: 10px;
    .tel-link {
      font-size: 1.875rem;
      .icon {
        margin-right: 10px;
      }
    }
  }
  .footer-nav {
    .nav-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
    }
  }
}
@media (max-width: 1120px) {
  footer {
    flex-direction: column;
    .footer-left {
    }
    .footer-right {
      margin: 0;
    }
    .logo {
      max-width: 260px;
      margin-bottom: 3rem;
    }
    .row {
      flex-direction: column;
      margin-bottom: 4rem;
    }
    .tel {
      flex-direction: column;
    }
    .footer-nav {
      .nav-items {
        flex-wrap: wrap;
      }
    }
  }
}

.copyright {
  background-color: #131114;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* scroll top button */
.scroll-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  a {
    --radius: 100vmax;
    .block {
      border-radius: var(--radius);
      width: 50px;
      height: 50px;
      background: #fe0000;
      display: flex;
      justify-content: center;
      align-items: center;
      .triangle {
        display: block;
        width: 50%;
        height: 50%;
        clip-path: polygon(100% 60%, 100% 75%, 50% 45%, 0 75%, 0 60%, 50% 25%);
        background: #ffffff;
      }
    }
  }
  a::before {
    border-radius: var(--radius);
    content: '';
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  a:hover {
    opacity: 1;
  }
  a:hover::before {
    opacity: 0.25;
  }
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .scroll-top {
    bottom: 5%;
    right: 5%;
    a::before {
      display: none;
    }
  }
}
