@charset "UTF-8";
/*******************************************************************  
* リセットcss
*******************************************************************/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure,
span,
picture,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

header,
footer,
nav,
section,
article,
aside,
picture,
figure,
figcaption {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  vertical-align: -webkit-baseline-middle;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/* コンテンツ幅管理用の変数 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*******************************************************************  
* utility
*******************************************************************/
.u_sm-dn {
  display: none;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .u_sm-dn {
    display: block;
  }
}

.u_lg-dn {
  display: block;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .u_lg-dn {
    display: none;
  }
}

/*******************************************************************  
* layout
*******************************************************************/
.container-sm,
.container-lg,
.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 892px;
}

.container-lg {
  max-width: 1112px;
}

.contents {
  padding: 120px 0;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .contents {
    padding: 80px 0;
  }
}

/*******************************************************************  
* html
*******************************************************************/
/* Lenis導入時は、CSSの smooth と競合させない（念のため明示） */
html {
  scroll-behavior: auto;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/*******************************************************************  
* body
*******************************************************************/
body {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  z-index: -100;
}

/*******************************************************************  
* ヘッダー  
*******************************************************************/
.header {
  padding-top: 16px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
  }
}

.header__inner {
  height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__inner {
    width: 100%;
    height: 32px;
    justify-content: space-between;
  }
}

.header__logo {
  z-index: 50;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__logo {
    width: 32px;
    height: 32px;
  }
}

.header__logo-link {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.header__logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  display: block;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.header__insta {
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__insta {
    display: none;
  }
}
.header__insta img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* header インスタ（ホバーで白リング表示：回転なし／浮かない／薄くならない） */
.header__insta {
  position: relative;
  border-radius: 50%;
  overflow: visible;
}
.header__insta::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
@media (any-hover: hover) {
  .header__insta:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

.header__menu-item {
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.header__menu-link {
  display: inline-block;
  position: relative;
  padding: 4px 2px;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    color: #aaaaaa;
  }
  .header__menu-link:hover::after {
    transform: scaleX(1);
  }
}

/*******************************************************************  
* ハンバーガーメニュー  
*******************************************************************/
.header__hamburger {
  display: none;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__hamburger {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid #ffffff;
    border-radius: 99px;
    z-index: 50;
  }
}

@media screen and (min-width: 375px) and (max-width: 1079px) {
  .header__hamburger-bar {
    width: 12px;
    height: 1px;
    position: absolute;
    background: #ffffff;
    border-radius: 9999px;
    left: 50%;
  }
}

.header__hamburger-bar:first-child {
  top: 11px;
  transform: translate(-50%, 0);
}

.header__hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburger-bar:last-child {
  bottom: 11px;
  transform: translate(-50%, 0);
}

/*******************************************************************
* ハンバーガーメニュー（表示/非表示）
*******************************************************************/
.hamburger {
  display: none;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .hamburger {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(12, 12, 12, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding-top: 120px;
  }
}

@media screen and (min-width: 375px) and (max-width: 1079px) {
  .hamburger.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.hamburger__menu-item {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
}
.hamburger__menu-item:not(:first-child) {
  margin-top: 60px;
}

.hamburger__sns-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 95px;
  gap: 25px;
}

.hamburger__sns-img {
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.hamburger__sns-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*******************************************************************  
* フッター  
*******************************************************************/
.footer {
  background: url("../img/footer/footer.png") no-repeat center center/cover; /* JPG or PNG (デフォルト) */
}

@supports (background-image: url("test.webp")) {
  .footer {
    background: url("../img/footer/footer.webp") no-repeat center center/cover;
  }
}
.footer-contetns {
  padding: 40px 0;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer-contetns {
    padding: 40px 0 25px 0;
  }
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__wrapper {
    display: block;
  }
}

.footer__logo-link {
  margin-left: 80px;
  display: block;
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__logo-link {
    width: 150px;
    margin: 0 auto;
  }
}
.footer__logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__sns-box {
  display: flex;
  align-items: center;
  margin-top: 46px;
  margin-left: 50px;
  gap: 20px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__sns-box {
    margin: 50px 0 0;
    justify-content: center;
    gap: 25px;
  }
}

.footer__sns-img {
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__sns-img {
    width: 40px;
  }
}
.footer__sns-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SNSアイコン：ホバーで白リング表示（回転なし／ホバー中は消えない） */
.footer__sns-img {
  position: relative;
  border-radius: 50%;
  overflow: visible;
}
.footer__sns-img::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  /* リング色を白に */
  background: #ffffff;
  /* 輪っかにする（中央を抜く） */
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.footer__sns-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .footer__sns-img:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__nav {
    margin-top: 50px;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  color: #ffffff;
  padding: 4px 2px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    color: #aaaaaa;
  }
  .footer__nav-link:hover::after {
    transform: scaleX(1);
  }
}

.footer__pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__pagetop {
    bottom: -90px;
  }
}
.footer__pagetop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #0c0c0c 0%, #aaaaaa 80%, #dcca87 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
}

@keyframes footerRingSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (any-hover: hover) {
  .footer__pagetop:hover::before {
    animation: footerRingSpin 1.2s linear infinite;
  }
}
.footer__pagetop-arrows {
  display: flex;
  flex-direction: column;
}

.footer__pagetop-arrow {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 6px;
}
.footer__pagetop-arrow::before, .footer__pagetop-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #ffffff;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 9.6px;
  transform-origin: 50% 0.5px;
}
.footer__pagetop-arrow::before {
  transform: rotate(54.45deg);
}
.footer__pagetop-arrow::after {
  transform: rotate(-54.45deg);
}

@keyframes footerArrowBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (any-hover: hover) {
  .footer__pagetop:hover .footer__pagetop-arrow {
    animation: footerArrowBounce 0.8s ease-in-out infinite;
  }
  .footer__pagetop:hover .footer__pagetop-arrow::before,
  .footer__pagetop:hover .footer__pagetop-arrow::after {
    background: #aaaaaa;
  }
}
.footer__pagetop-text {
  font-size: 12px;
  margin-top: 10px;
}

@media (any-hover: hover) {
  .footer__pagetop:hover .footer__pagetop-text {
    color: #aaaaaa;
  }
}
.footer__copyright {
  display: block;
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.5;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .footer__copyright {
    margin-top: 120px;
  }
}

/*******************************************************************  
* section__title
*******************************************************************/
.section__title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section__title {
  font-family: "DM Serif Display", serif;
  text-transform: capitalize;
  font-style: italic;
  font-size: 50px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .section__title {
    font-size: 36px;
  }
}
.section__title--concept {
  text-align: center;
}
.section__title--location {
  text-align: center;
}
.section__title--menu {
  text-align: center;
}

.section__title-logo {
  width: 74px;
  aspect-ratio: 74/12;
  overflow: hidden;
}
.section__title-logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*******************************************************************  
*opening
*******************************************************************/
body.is-opening {
  overflow: hidden;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: #0c0c0c;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.opening.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening__inner {
  display: grid;
  justify-items: center;
  color: #ffffff;
  animation: openingContent 1.2s ease both;
}

.opening__logo {
  width: 64px;
  aspect-ratio: 1/1;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(220, 202, 135, 0.18));
  animation: openingLogo 1.1s ease 0.12s both;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .opening__logo {
    width: 52px;
  }
}
.opening__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.opening__brand {
  margin-top: 24px;
  font-family: "DM Serif Display", serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: openingText 0.9s ease 0.38s both;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .opening__brand {
    margin-top: 20px;
    font-size: 34px;
  }
}

.opening__sub {
  margin-top: 14px;
  color: #aaaaaa;
  font-size: 15px;
  letter-spacing: 0.24em;
  opacity: 0;
  animation: openingText 0.9s ease 0.56s both;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .opening__sub {
    margin-top: 12px;
    font-size: 13px;
  }
}

.opening__line {
  display: block;
  width: 112px;
  height: 1px;
  margin-top: 30px;
  background: #dcca87;
  transform: scaleX(0);
  transform-origin: center;
  animation: openingLine 1s ease 0.72s both;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .opening__line {
    width: 88px;
    margin-top: 26px;
  }
}

@keyframes openingLogo {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes openingContent {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes openingText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes openingLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .opening,
  .opening__inner,
  .opening__logo,
  .opening__brand,
  .opening__sub,
  .opening__line {
    animation: none;
    transition: none;
  }
  .opening__logo,
  .opening__brand,
  .opening__sub {
    opacity: 1;
  }
  .opening__line {
    transform: scaleX(1);
  }
}
/*******************************************************************  
*top-kv 
*******************************************************************/
.top-kv {
  height: 100vh;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-kv {
    height: 667px;
  }
}

.top-kv__title-wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.top-kv__title {
  font-size: 64px;
  font-family: "DM Serif Display", serif;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-kv__title {
    font-size: 40px;
  }
}

.top-kv__sub-title {
  font-size: 24px;
  margin-top: 20px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-kv__sub-title {
    font-size: 20px;
  }
}

.top-kv__scrool-box {
  position: absolute;
  z-index: 10;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.top-kv__scrool-txt {
  font-family: "DM Serif Display", serif;
}

/* scroolテキストは固定のまま、画像だけ上下運動 */
.top-kv__scrool-img {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  will-change: transform;
  animation: kvScissorsBounce 1.6s ease-in-out infinite;
}

@keyframes kvScissorsBounce {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.top-kv__video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.top-kv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
  transform: translateZ(0);
}

.top-kv__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
}

/*******************************************************************  
*top-concept
*******************************************************************/
.top-concept {
  background: url("../img/concept/concept-bg.png") no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept {
    background: url("../img/concept/concept-bg-sp.png") no-repeat center center/cover;
  }
}

@supports (background-image: url("test.webp")) {
  .top-concept {
    background: url("../img/concept/concept-bg.webp") no-repeat center center/cover;
  }
  @media screen and (min-width: 375px) and (max-width: 1079px) {
    .top-concept {
      background: url("../img/concept/concept-bg-sp.webp") no-repeat center center/cover;
    }
  }
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept .container-sm {
    position: relative;
    width: 375px;
  }
}

.top-concept__logo {
  margin: 24px auto 0;
  width: 146px;
  aspect-ratio: 146/12;
  overflow: hidden;
}
.top-concept__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-concept__img {
  position: absolute;
  left: 50%;
  top: 195px;
  transform: translateX(-50%);
  width: 400px;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__img {
    width: 300px;
    left: 60%;
    top: 195px;
  }
}
.top-concept__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.top-concept__txt-main {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  text-align: center;
  font-size: 24px;
  margin-top: 60px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__txt-main {
    font-size: 20px;
    text-align: left;
    margin-left: 15px;
    line-height: 2;
  }
}

@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__line {
    display: inline-block;
  }
  .top-concept__line--2 {
    transform: translateX(1em);
  }
  .top-concept__line--3 {
    transform: translateX(2em);
  }
}

.top-concept__txt-sub {
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__txt-sub {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
  }
}
.top-concept__txt-sub:first-child {
  margin-top: 80px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__txt-sub:first-child {
    margin-top: 50px;
  }
}
.top-concept__txt-sub:not(:first-child) {
  margin-top: 35px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__txt-sub:not(:first-child) {
    margin-top: 30px;
  }
}
.top-concept__txt-sub:last-child {
  margin-top: 80px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__txt-sub:last-child {
    margin-top: 50px;
  }
}

/* ========== concept animation（追加） ========== */
/* 画像：ぼけ→くっきり（transformは既存があるので触らない） */
.top-concept__img {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 2s ease, filter 1.5s ease;
}

.top-concept__img.is-show {
  opacity: 1;
  filter: blur(0);
}

/* メイン3行：Xずらしは維持しつつ、Yだけ動かす（CSS変数で合成） */
.top-concept__line {
  display: inline-block;
  --shift-x: 0em;
  --shift-y: 10px;
  transform: translateX(var(--shift-x)) translateY(var(--shift-y));
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.top-concept__line.is-show {
  --shift-y: 0px;
  opacity: 1;
}

@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-concept__line--2 {
    --shift-x: 1em;
  }
  .top-concept__line--3 {
    --shift-x: 2em;
  }
}
/* サブ文：下からふわっと（opacityを薄くする目的ではなく、表示演出） */
.top-concept__txt-sub {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.top-concept__txt-sub.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*******************************************************************  
*top-location
*******************************************************************/
.top-location {
  background: rgba(12, 12, 12, 0.95);
}

.top-location__sub-txt {
  text-align: center;
  line-height: 1.8;
  margin-top: 40px;
  color: #aaaaaa;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-location__sub-txt {
    font-size: 14px;
  }
}

.top-location__img-box {
  margin-top: 50px;
  width: 100%;
  aspect-ratio: 2160/1856;
  overflow: hidden;
}
.top-location__img-box picture {
  display: block;
  width: 100%;
  height: 100%;
}
.top-location__img-box picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*******************************************************************  
*top-menu
*******************************************************************/
.top-menu {
  background: url("../img/menu/menu-background.png") no-repeat center center/cover; /* JPG or PNG (デフォルト) */
}

@supports (background-image: url("test.webp")) {
  .top-menu {
    background: url("../img/menu/menu-background.webp") no-repeat center center/cover;
  }
}
.top-menu__lead {
  text-align: center;
  margin-top: 30px;
  color: #aaaaaa;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-menu__lead {
    font-size: 14px;
    line-height: 1.7;
  }
}

.top-menu__grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 73px;
  align-items: start;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-menu__grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
    gap: 50px;
  }
}

.menu-group + .menu-group {
  margin-top: 40px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-group + .menu-group {
    margin-top: 50px;
  }
}

.menu-group__title {
  margin: 0 0 30px;
  font-family: "DM Serif Display", serif;
  letter-spacing: 0.04em;
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-group__title {
    font-size: 32px;
  }
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 26px;
  }
}
.menu-item:not(:first-child) {
  margin-top: 30px;
}

.menu-item__label {
  width: 210px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item__label {
    width: 157px;
  }
}

.menu-item__jp {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  letter-spacing: 0.09em;
  line-height: 1.3;
  color: #dcca87;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item__jp {
    font-size: 18px;
  }
}

.menu-item__en {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  margin-top: 8px;
  letter-spacing: 0.04em;
  color: #aaaaaa;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item__en {
    font-size: 12px;
  }
}

.menu-item__line {
  width: 109px;
  height: 1px;
  transform: translateY(-0.45em);
  background: #ffffff;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item__line {
    flex: 1 1 auto;
    width: auto;
    min-width: 54px;
  }
}

.menu-item__price {
  width: 103px;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .menu-item__price {
    width: 76px;
    font-size: 16px;
  }
}

.top-menu__note {
  text-align: right;
  margin-top: 40px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-menu__note {
    font-size: 12px;
  }
}

/*******************************************************************  
*top-access
*******************************************************************/
.top-access {
  background: #0c0c0c;
}
.top-access .section__title-box {
  display: block;
  text-align: center;
}
.top-access .section__title-logo {
  display: none;
}

.top-access__layout {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-access__layout {
    margin-top: 52px;
    display: block;
  }
}

.top-access__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.top-access__info {
  flex: 0 1 600px;
}

.top-access__brand {
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #aaaaaa;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-access__brand {
    margin-top: 18px;
    font-size: 18px;
  }
}

.access-dl {
  width: 100%;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl {
    max-width: 560px;
    margin: 0 auto;
  }
}

.access-dl__row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(220, 202, 135, 0.35);
}
.access-dl__row:first-child {
  border-top: 0;
}
.access-dl__row:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__row {
    grid-template-columns: 116px minmax(0, 1fr);
  }
}
.access-dl__row:first-child .access-dl__dt,
.access-dl__row:first-child .access-dl__dd {
  padding-top: 4px;
  padding-bottom: 18px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__row:first-child .access-dl__dt,
  .access-dl__row:first-child .access-dl__dd {
    padding-bottom: 16px;
  }
}
.access-dl__row:not(:first-child) .access-dl__dt,
.access-dl__row:not(:first-child) .access-dl__dd {
  min-height: 66px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__row:not(:first-child) .access-dl__dt,
  .access-dl__row:not(:first-child) .access-dl__dd {
    min-height: 58px;
  }
}
.access-dl__row--address .access-dl__dt,
.access-dl__row--address .access-dl__dd {
  min-height: 124px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__row--address .access-dl__dt,
  .access-dl__row--address .access-dl__dd {
    min-height: 118px;
  }
}

.access-dl__dt,
.access-dl__dd {
  display: flex;
  align-items: center;
}

.access-dl__dt {
  gap: 16px;
  padding: 15px 14px 15px 22px;
  font-weight: bold;
  color: #dcca87;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__dt {
    gap: 10px;
    padding: 13px 10px 13px 0;
    font-size: 13px;
  }
}

.access-dl__icon {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__icon {
    flex-basis: 18px;
    width: 18px;
  }
}
.access-dl__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.access-dl__label {
  white-space: nowrap;
  font-weight: 500;
}

.access-dl__dd {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 15px 0 15px 18px;
  border-left: 1px solid rgba(220, 202, 135, 0.75);
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__dd {
    padding: 13px 0 13px 14px;
    font-size: 14px;
    border-left-width: 1px;
  }
}

.access-dl__note,
.access-dl__text {
  display: block;
}

.access-dl__zip,
.access-dl__addr {
  display: inline-block;
}

.access-dl__addr {
  line-height: 1.4;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .access-dl__addr {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
}

.access-dl__row--address .access-dl__dd {
  line-height: 1;
}
.access-dl__row--address .access-link--map {
  margin-top: 0;
}

.access-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.access-link--map {
  margin-top: 2px;
}
@media (any-hover: hover) {
  .access-link:hover {
    color: #dcca87;
  }
  .access-link:hover .access-link__text {
    text-decoration-color: #dcca87;
  }
}

.access-link__text {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  letter-spacing: 0;
}

.top-access__media {
  flex: 0 0 420px;
  width: 420px;
  border-radius: 50%;
  border: 1px solid #dcca87;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
}
@media screen and (min-width: 375px) and (max-width: 1079px) {
  .top-access__media {
    width: min(300px, 78vw);
    display: flex;
    margin: 52px auto 0;
    padding: 6px 8px;
  }
}

.top-access__img-box {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #dcca87;
}
.top-access__img-box picture {
  display: block;
  width: 100%;
  height: 100%;
}
.top-access__img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/*******************************************************************  
* js
*******************************************************************/
.js-body.is-active {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

.js-header.hide {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.header.is-hidden-scroll,
.header.hide {
  top: -100px;
}

.js-hamburger.is-active {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.js-hamburger.is-active .header__hamburger-bar {
  left: 50%;
}

.js-hamburger.is-active .header__hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: #ffffff;
}

.js-hamburger.is-active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active .header__hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background: #ffffff;
}/*# sourceMappingURL=style.css.map */
