@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

/* =========================
Reset
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

/* ========================================
   Header
======================================== */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom:1px solid #ececec;
    z-index:9999;
    transition:.35s;
}

.header-inner{
    width:min(92%,1400px);
    height:100%;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-logo{
    display:flex;
    align-items:center;
}

.header-logo img{
    width:180px;
    height:auto;
    display:block;
}

.header-right{
    display:flex;
    align-items:center;
    gap:34px;
}


.header-btn:hover{

    opacity:.6;
    color:#f0d28c;


}
/* ========================================
   Header Scroll
======================================== */

.header{

    background:transparent;
    border-bottom:none;

}

.header.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid #ececec;

}

.header-logo{

    position:relative;

}

.header-logo img{

    display:block;

    transition:.35s;

}

.logo-black{

    position:absolute;

    left:0;
    top:0;

    opacity:0;

}

.header.scrolled .logo-black{

    opacity:1;

}

.header.scrolled .logo-white{

    opacity:0;

}
/* ========================================
   Hamburger
======================================== */

.hamburger{
    width:42px;
    height:42px;

    border:none;
    background:transparent;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:7px;

    cursor:pointer;

    padding:0;
}

.hamburger span{

    display:block;

    width:32px;
    height:2px;

    border-radius:10px;

    transition:.35s;

}

/* Hover */

.hamburger:hover span{

    background:#f0d28c;

}

/* Active */

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}
/* ========================================
   Responsive Header
======================================== */

@media screen and (max-width: 768px){

    .header{
        height:72px;
    }

    .header-inner{
        width:92%;
    }

    .header-logo img{
        width:170px;
    }

    .header-right{
        gap:20px;
    }

    .header-btn{
        display:none;
    }

    .hamburger{
        width:38px;
        height:38px;
    }

    .hamburger span{
        width:30px;
    }

}
/* ========================================
   Global Menu
======================================== */

.global-menu {
    position: fixed;

    top: 0;
    right: -420px;

    width: 420px;
    max-width: 88%;

    height: 100vh;

    background: #0b0b0b;
    color: #fff;

    z-index: 9998;

    transition:
        right .65s cubic-bezier(.77, 0, .18, 1);

    padding: 90px 70px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(212, 176, 106, .18);
}


.global-menu.active {
    right: 0;
}


/* ========================================
   Menu List
======================================== */

.global-menu ul {
    width: 100%;

    list-style: none;

    margin: 0;
    padding: 0;
}


.global-menu li {
    margin: 0 0 24px;

    opacity: 0;

    transform: translateX(35px);

    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1);
}


.global-menu.active li {
    opacity: 1;
    transform: translateX(0);
}


/* ========================================
   Menu Link
======================================== */

.global-menu a {
    display: block;

    color: #fff;

    text-decoration: none;

    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 400;

    letter-spacing: .08em;

    transition:
        color .3s ease,
        transform .3s ease;
}


.global-menu a:hover {
    color: #d4b06a;

    transform: translateX(6px);
}


/* ========================================
   Delay
======================================== */

.global-menu.active li:nth-child(1) {
    transition-delay: .08s;
}

.global-menu.active li:nth-child(2) {
    transition-delay: .14s;
}

.global-menu.active li:nth-child(3) {
    transition-delay: .20s;
}

.global-menu.active li:nth-child(4) {
    transition-delay: .26s;
}

.global-menu.active li:nth-child(5) {
    transition-delay: .32s;
}

.global-menu.active li:nth-child(6) {
    transition-delay: .38s;
}

.global-menu.active li:nth-child(7) {
    transition-delay: .44s;
}

.global-menu.active li:nth-child(8) {
    transition-delay: .50s;
}

.global-menu.active li:nth-child(9) {
    transition-delay: .56s;
}


/* ========================================
   Reserve / Contact
======================================== */

.global-menu .sp-menu {
    margin-top: 18px;
}


.global-menu .sp-menu a {
    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;

    font-size: 18px;

    color: #d4b06a;

    letter-spacing: .18em;
}


.global-menu .sp-menu a:hover {
    color: #fff;
}


/* ========================================
   Overlay
======================================== */

.menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .68);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .5s ease,
        visibility .5s ease;

    z-index: 9997;
}


.menu-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* ========================================
   Body Lock
======================================== */

body.menu-open {
    overflow: hidden;
}


/* ========================================
   Smartphone
======================================== */

@media screen and (max-width: 768px) {

    .global-menu {

        right: -100%;

        width: 100%;
        max-width: 100%;

        padding: 90px 12%;

        border-left: none;

    }


    .global-menu.active {
        right: 0;
    }


    .global-menu a {
        font-size: 25px;
    }


    .global-menu li {
        margin-bottom: 22px;
    }


    .global-menu .sp-menu {
        margin-top: 14px;
    }


    .global-menu .sp-menu a {
        font-size: 17px;
    }

}
/* ========================================
Hero
======================================== */

.hero{
    position:relative;
    overflow:hidden;
    background:#000;
    padding-top:92px;

    width:100vw;
    margin-left:calc(50% - 50vw);
}

/* -------------------------
Image Layout
------------------------- */

.hero-grid{
    display:grid;
    grid-template-columns:45% 55%;
}

.hero-grid-left,
.hero-grid-right{

    position:relative;

    overflow:hidden;

}

/* 左：人物 */

.hero-grid-left img{

    display:block;

    width:100%;

    height:auto;

}

/* 右：内観 */

.hero-grid-right img{

    display:block;

    width:100%;

    height:auto;

}

/* -------------------------
Copy
------------------------- */
.hero-copy{

    position:absolute;

    top:80px;

    left:6%;

    max-width:620px;

    z-index:10;

}
.hero-copy p,
.hero-copy h2{
    color:#fff;
}
/* English */

.hero-sub{

    font-size:16px;

    letter-spacing:.35em;

    margin-bottom:30px;

    text-transform:uppercase;

}

/* Main */

.hero-title{
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
}
.hero-title-sp{
    display:none;
}

/* Japanese */

.hero-text{

    font-size:22px;

    line-height:2;

    font-weight:300;

}


/* ハンバーガー */

.hamburger span{

    background:#fff;

}

/* スクロール後 */

.header.scrolled .header__link{

    color:#222;

}

.header.scrolled .header__link:hover{

    color:#222;

}

.header.scrolled .hamburger span{

    background:#222;

}
/* ========================================
Header Hero Color
======================================== */

/* Hero表示中 */

.header-btn{

    color:#d4b06a;
    transition:.3s;

}

.header-btn:hover{

    color:#f0d28c;
}

/* Hamburger */

.hamburger span{

    background:#d4b06a;

}

/* Scroll後 */

.header.scrolled .header-btn{

    color:#222;

}

.header.scrolled .hamburger span{

    background:#222;

}

@media screen and (max-width:768px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-copy{
        top:70px;
        left:7%;
        right:7%;
    
    }

    .hero-sub{
        font-size:14px;
        letter-spacing:.22em;
    }

    .hero-title{
        font-size:34px;
        line-height:1.1;
        margin-bottom:18px;
    }

    .hero-text{
        font-size:16px;
        line-height:1.8;
    }

      .hero-title-pc{
        display:none;
    }

    .hero-title-sp{
        display:block;
    }

}

/* ========================================
   INSTAGRAM
======================================== */

.instagram-section{
    width:100%;
    background:#0a0a0a;
    padding:140px 0 100px;
    color:#fff;
}

.instagram-inner{
    width:min(88%,1200px);
    margin:0 auto;
}


/* -------------------------
   Heading
------------------------- */

.instagram-heading{
    margin-bottom:55px;
}

.instagram-label{
    font-family:"Cormorant Garamond",serif;
    font-size:18px;
    letter-spacing:.28em;
    font-weight:500;
    color:#b78b2e;
    margin:0 0 20px;
}

.instagram-title{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(36px,4vw,60px);
    line-height:1;
    font-weight:400;
    letter-spacing:.03em;
    color:#fff;
    margin:0 0 18px;
}


/* -------------------------
   Instagram Feed
------------------------- */

.instagram-feed{
    width:100%;
    overflow:hidden;
    line-height:0;
}

/*
   Instagram Feed固定ページを表示
   縦スクロールバーが出ないようにする
*/

.instagram-feed iframe{
    display:block;
    width:100%;
    height:340px;
    border:0;
    overflow:hidden;
}

/* -------------------------
   View Instagram
------------------------- */

.instagram-more{
    display:flex;
    justify-content:flex-end;
    margin-top:32px;
}

.instagram-more-link{
    display:inline-flex;
    align-items:center;
    gap:22px;

    font-family:"Cormorant Garamond",serif;
    font-size:15px;
    letter-spacing:.16em;

    color:#fff;
    text-decoration:none;

    transition:.35s ease;
}

.instagram-more-link:hover{
    color:#b78b2e;
}

.instagram-more-link span:last-child{
    font-size:22px;
    transition:.35s ease;
}

.instagram-more-link:hover span:last-child{
    transform:translateX(6px);
}


/* ========================================
   INSTAGRAM Responsive
======================================== */

@media screen and (max-width:768px){

    .instagram-section{
        padding:90px 0 70px;
    }

    .instagram-inner{
        width:86%;
    }

    .instagram-heading{
        margin-bottom:40px;
    }

    .instagram-label{
        font-size:15px;
        margin-bottom:18px;
    }

    .instagram-title{
        font-size:40px;
    }

    /* Instagram Feed */
    .instagram-feed{
        height:180px;
        overflow:hidden;
    }

    .instagram-feed iframe{
        height:180px !important;
        overflow:hidden;
    }

    /* View Instagram */
    .instagram-more{
        margin-top:28px;
    }

}
/* ========================================
   About Leonardo
======================================== */

.about{
    position:relative;
    width:100%;
    background:#0d0d0d;
    color:#fff;
    overflow:hidden;
}


/* ----------------------------------------
   Common
---------------------------------------- */

.about-block{
    width:100%;
    max-width:1600px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    min-height:720px;
}


/* ----------------------------------------
   Image
---------------------------------------- */

.about-image{
    position:relative;
    overflow:hidden;
}

.about-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform 1.2s ease;
}

.about-image:hover img{
    transform:scale(1.025);
}


/* ----------------------------------------
   About 01
---------------------------------------- */

.about-block-01{
    padding-top:80px;
}

.about-image-01{
    min-height:680px;
}

.about-image-01 img{
    object-position:center center;
}


/* ----------------------------------------
   Content
---------------------------------------- */

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content-01{
    padding:100px 8% 100px 9%;
}

.about-label{
    margin:0 0 38px;

    font-family:"Cormorant Garamond", serif;
    font-size:16px;
    font-weight:500;

    letter-spacing:.38em;
    color:#d4b06a;
}


/* ----------------------------------------
   Main Title
---------------------------------------- */

.about-title{
    margin:0;

    font-family:"Noto Serif JP", serif;
    font-size:clamp(42px,4.2vw,72px);
    font-weight:300;

    line-height:1.35;
    letter-spacing:.04em;

    color:#fff;
}


/* ----------------------------------------
   Gold Line
---------------------------------------- */

.about-line{
    width:54px;
    height:1px;

    margin:42px 0 38px;

    background:#c9a45b;
}


/* ----------------------------------------
   Text
---------------------------------------- */

.about-lead{
    margin:0 0 34px;

    font-family:"Noto Serif JP", serif;
    font-size:20px;
    font-weight:400;

    line-height:2;
    letter-spacing:.08em;

    color:#fff;
}

.about-text{
    margin:0 0 26px;

    font-family:"Noto Serif JP", serif;
    font-size:16px;
    font-weight:300;

    line-height:2.3;
    letter-spacing:.08em;

    color:#e8e8e8;
}

.about-text:last-child{
    margin-bottom:0;
}


/* ----------------------------------------
   About 02
---------------------------------------- */

.about-block-02{
    margin-top:0;

    grid-template-columns:1fr 1fr;

    align-items:stretch;
}


/* Text Left */

.about-content-02{
    order:1;

    padding:100px 9% 100px 9%;
}


/* Image Right */

.about-image-02{
    order:2;
    min-height:680px;
}

.about-image-02 img{
    object-position:center center;
}


/* ----------------------------------------
   Subtitle
---------------------------------------- */

.about-subtitle{
    margin:0;

    font-family:"Noto Serif JP", serif;
    font-size:clamp(28px,2.4vw,42px);
    font-weight:300;

    line-height:1.7;
    letter-spacing:.08em;

    color:#d4b06a;
}


/* ----------------------------------------
   Closing Message
---------------------------------------- */

.about-message{
    position:relative;

    width:100%;
    min-height:420px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:100px 30px;

    background:#0d0d0d;
}


/* subtle Leonardo watermark */

.about-message::after{
    content:"Leonardo";

    position:absolute;

    right:-40px;
    bottom:-70px;

    font-family:"Cormorant Garamond", serif;
    font-size:220px;
    font-style:italic;

    letter-spacing:-.04em;

    color:rgba(255,255,255,.025);

    pointer-events:none;
}


/* Message line */

.about-message-line{
    width:54px;
    height:1px;

    margin-bottom:38px;

    background:#c9a45b;
}


/* Message */

.about-message-text{
    position:relative;
    z-index:1;

    margin:0;

    font-family:"Noto Serif JP", serif;
    font-size:clamp(26px,2.8vw,42px);
    font-weight:300;

    line-height:1.8;
    letter-spacing:.12em;

    color:#fff;
}


/* Brand */

.about-message-brand{
    position:relative;
    z-index:1;

    margin:38px 0 0;

    font-family:"Cormorant Garamond", serif;
    font-size:16px;
    font-weight:500;

    letter-spacing:.45em;

    color:#d4b06a;
}


/* ========================================
   About Animation
======================================== */

.about-image,
.about-content,
.about-message{
    will-change:transform, opacity;
}


/* ========================================
   Tablet
======================================== */

@media screen and (max-width:1024px){

    .about-block{
        grid-template-columns:1fr 1fr;
    }

    .about-block-01{
        padding-top:50px;
    }

    .about-image-01,
    .about-image-02{
        min-height:580px;
    }

    .about-content-01,
    .about-content-02{
        padding:70px 7%;
    }

    .about-title{
        font-size:clamp(38px,4.5vw,58px);
    }

    .about-lead{
        font-size:18px;
    }

    .about-text{
        font-size:15px;
    }

}


/* ========================================
   Smartphone
======================================== */

@media screen and (max-width:768px){

    .about-block{
        display:flex;
        flex-direction:column;

        min-height:auto;
    }


    /* ------------------------------------
       About 01
    ------------------------------------ */

    .about-block-01{
        padding-top:0;
    }

    .about-image-01{
        width:100%;
        height:auto;
        min-height:0;

        aspect-ratio:4 / 3;
    }

    .about-image-01 img{
        height:100%;
    }


    .about-content-01{
        padding:75px 8% 85px;
    }


    .about-label{
        margin-bottom:28px;

        font-size:13px;
        letter-spacing:.3em;
    }


    .about-title{
        font-size:36px;
        line-height:1.5;
        letter-spacing:.04em;
    }


    .about-line{
        margin:32px 0 30px;
    }


    .about-lead{
        margin-bottom:28px;

        font-size:17px;
        line-height:2;
    }


    .about-text{
        font-size:14px;
        line-height:2.2;
        margin-bottom:22px;
    }


    /* ------------------------------------
       About 02
    ------------------------------------ */

    .about-block-02{
        margin-top:0;

        display:flex;
        flex-direction:column;
    }


    .about-image-02{
        order:1;

        width:100%;
        min-height:0;

        aspect-ratio:4 / 3;
    }


    .about-content-02{
        order:2;

        padding:70px 8% 85px;
    }


    .about-subtitle{
        font-size:27px;
        line-height:1.7;
    }


    /* ------------------------------------
       Closing
    ------------------------------------ */

    .about-message{
        min-height:340px;

        padding:80px 25px;
    }


    .about-message-line{
        margin-bottom:30px;
    }


    .about-message-text{
        font-size:24px;
        line-height:1.9;
        letter-spacing:.08em;
    }


    .about-message-brand{
        margin-top:30px;
        font-size:14px;
        letter-spacing:.35em;
    }


    .about-message::after{
        right:-20px;
        bottom:-30px;

        font-size:110px;
    }

}

/* =========================================================
   ABOUT READ MORE
   ========================================================= */

.about-readmore {
    display: inline-flex;
    align-items: center;
    gap: 24px;

    margin-top: 48px;
    padding-bottom: 10px;

    color: #c9a45c;
    text-decoration: none;

    border-bottom: 1px solid rgba(201, 164, 92, .75);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: .12em;

    transition:
        color .3s ease,
        border-color .3s ease;
}

.about-readmore-arrow {
    font-size: 26px;
    line-height: 1;

    transition: transform .3s ease;
}

.about-readmore:hover {
    color: #fff;
    border-color: #fff;
}

.about-readmore:hover .about-readmore-arrow {
    transform: translateX(8px);
}


/* =========================================================
   ABOUT READ MORE / SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

    .about-readmore {
        margin-top: 38px;
        gap: 18px;

        font-size: 13px;
    }

    .about-readmore-arrow {
        font-size: 18px;
    }

}
/* =========================================================
   MENU SECTION
   ========================================================= */

#menu {
  background: #0b0b0b;
  color: #fff;
  padding: 180px 0 160px;
}

#menu .lp-section__inner {
  width: min(1400px, 90%);
  margin: 0 auto;
}

/* MENU heading */
#menu .lp-section__heading {
  margin-bottom: 80px;
}

#menu .lp-section__heading .en {
  display: block;
  margin-bottom: 22px;
  color: #c9a45c;
  font-family: serif;
  font-size: 14px;
  letter-spacing: .35em;
}

#menu .lp-section__heading h2 {
  margin: 0;
  color: #fff;
  font-family: serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.25;
}

/* card list */
#menu .lp-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

#menu .lp-card {
  flex: 0 0 380px;
  width: 380px;
  min-width: 380px;
}

/* card */
#menu .lp-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #111;
}

/* link */
#menu .lp-card__link {
  position: relative;
  display: block;
  height: 560px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

/* image */
#menu .lp-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

#menu .lp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

/* dark overlay */
#menu .lp-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.12) 20%,
      rgba(0,0,0,.25) 45%,
      rgba(0,0,0,.88) 100%
    );
}

/* content */
#menu .lp-card__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 34px;
  z-index: 3;
}

/* number */
#menu .lp-card__number {
  margin: 0 0 18px;
  color: #c9a45c;
  font-family: serif;
  font-size: 13px;
  letter-spacing: .25em;
}

/* title */
#menu .lp-card__title span {
  display: block;
  margin-bottom: 8px;
  color: #c9a45c;
  font-family: serif;
  font-size: 11px;
  letter-spacing: .2em;
}

#menu .lp-card__title h3 {
  margin: 0;
  color: #fff;
  font-family: serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}

/* text */
#menu .lp-card__text {
  margin: 22px 0 28px;
  color: rgba(255,255,255,.88);
  font-family: serif;
  font-size: 14px;
  line-height: 2;
}

/* button */
#menu .lp-card__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #c9a45c;
  color: #c9a45c;
  font-family: serif;
  font-size: 13px;
  letter-spacing: .08em;
}

#menu .lp-card__button span {
  font-size: 18px;
  line-height: 1;
}

/* hover */
#menu .lp-card:hover .lp-card__image img {
  transform: scale(1.05);
}

#menu .lp-card:hover .lp-card__overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.08) 20%,
      rgba(0,0,0,.22) 45%,
      rgba(0,0,0,.9) 100%
    );
}


/* =========================================================
   COMING SOON
   ========================================================= */

#menu .lp-card--coming {
  background: #111;
}

#menu .lp-card--coming .lp-card__image {
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(201,164,92,.16),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #171717 0%,
      #090909 100%
    );
}

#menu .lp-card--coming .lp-card__overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.1),
      rgba(0,0,0,.72)
    );
}

#menu .lp-card--coming .lp-card__title h3 {
  color: #c9a45c;
}

#menu .lp-card__button--coming {
  border-bottom: 1px solid rgba(201,164,92,.55);
  color: rgba(201,164,92,.8);
  letter-spacing: .18em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  #menu {
    padding: 140px 0 120px;
  }

 #menu .lp-list {
  display: flex;
  gap: 20px;
}

#menu .lp-card {
  flex: 0 0 calc((100% - 20px) / 2);
}

  #menu .lp-card__link {
    height: 560px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  #menu {
    padding: 100px 0 90px;
  }

  #menu .lp-section__inner {
    width: 84%;
  }

  #menu .lp-section__heading {
    margin-bottom: 45px;
  }

  #menu .lp-section__heading .en {
    font-size: 11px;
    letter-spacing: .28em;
  }

  #menu .lp-section__heading h2 {
    font-size: 34px;
  }

  #menu .lp-list {
  display: flex;
  gap: 16px;

  /* iPhone / Safariで横スクロールを有効化 */
  overflow-x: auto;
  overflow-y: hidden;

  /* タッチ操作 */
  touch-action: pan-x;

  /* iOSの慣性スクロール */
  -webkit-overflow-scrolling: touch;

  /* スクロールバーを非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#menu .lp-list::-webkit-scrollbar {
  display: none;
}

  #menu .lp-card {
  flex: 0 0 78%;
  }

  #menu .lp-card__link {
    height: 460px;
  }

  #menu .lp-card__content {
    left: 25px;
    right: 25px;
    bottom: 28px;
  }

  #menu .lp-card__title h3 {
    font-size: 27px;
  }

  #menu .lp-card__text {
    font-size: 13px;
    line-height: 1.9;
  }

}
/* =========================================================
   PRICE PAGE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080808;
  color: #fff;
  font-family: "Times New Roman", "Noto Serif JP", serif;
}


/* =========================================================
   HEADER
   ========================================================= */

.price-header {
  position: relative;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 110px;
  padding: 0 6%;

  background: #080808;
  border-bottom: 1px solid rgba(201, 164, 92, .45);
}


/* logo */

.price-header__logo {
  display: flex;
  flex-direction: column;

  color: #fff;
  text-decoration: none;
}

.price-header__logo-mark {
  font-size: 38px;
  font-style: italic;
  line-height: 1;
  letter-spacing: .02em;
}

.price-header__logo-sub {
  margin-top: 5px;

  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-align: center;
}


/* navigation */

.price-header__nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.price-header__nav > a {
  color: #c9a45c;
  font-size: 16px;
  letter-spacing: .08em;
  text-decoration: none;
}


/* hamburger */

.price-header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;

  width: 42px;
  height: 42px;
  padding: 0;

  background: none;
  border: 0;

  cursor: pointer;
}

.price-header__menu span {
  display: block;

  width: 100%;
  height: 2px;

  background: #c9a45c;
}


/* =========================================================
   PRICE MENU
   ========================================================= */

.price-menu {
  position: relative;

  min-height: calc(100vh - 110px);
  padding: 80px 6% 100px;

  background:
    radial-gradient(
      circle at 12% 80%,
      rgba(201, 164, 92, .08),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #0a0a0a 0%,
      #080808 55%,
      #050505 100%
    );
}


/* inner */

.price-menu__inner {
  display: grid;
  grid-template-columns: 36% 64%;

  width: min(1400px, 100%);
  margin: 0 auto;
}


/* =========================================================
   LEFT / INTRO
   ========================================================= */

.price-menu__intro {
  position: relative;

  padding: 70px 70px 50px 20px;
}


/* gold vertical line */

.price-menu__intro::before {
  content: "";

  position: absolute;
  top: 72px;
  left: 0;

  width: 3px;
  height: 95px;

  background: #c9a45c;
}


/* Price */

.price-menu__label {
  margin-bottom: 28px;

  color: #c9a45c;

  font-size: 32px;
  font-style: italic;
  letter-spacing: .08em;
}


/* heading */

.price-menu__intro h1 {
  margin: 0;

  color: #d6b878;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4vw, 70px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
}


/* subtitle */

.price-menu__subtitle {
  margin: 25px 0 0;

  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  letter-spacing: .12em;
}


/* lead */

.price-menu__lead {
  margin: 55px 0 0;

  color: rgba(255, 255, 255, .9);

  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: .08em;
}


/* read more */

.price-menu__readmore {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 245px;
  margin-top: 100px;
  padding-bottom: 13px;

  color: #d6b878;
  text-decoration: none;

  border-bottom: 1px solid #c9a45c;

  transition:
    color .3s ease,
    border-color .3s ease;
}

.price-menu__readmore span:first-child {
  font-size: 20px;
  letter-spacing: .03em;
}

.price-menu__readmore .arrow {
  font-size: 30px;
  line-height: 1;

  transition: transform .3s ease;
}

.price-menu__readmore:hover {
  color: #fff;
  border-color: #fff;
}

.price-menu__readmore:hover .arrow {
  transform: translateX(8px);
}


.price-menu__readmore-text {
  margin: 12px 0 0;

  color: rgba(255, 255, 255, .7);

  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: .06em;
}


/* =========================================================
   RIGHT / LIST
   ========================================================= */

.price-menu__list {
  width: 100%;
  padding-top: 5px;
}


/* item */

.price-menu__item {
  position: relative;

  display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center;

  min-height: 108px;

  color: #fff;
  text-decoration: none;

  border-top: 1px solid rgba(201, 164, 92, .45);

  transition:
    background-color .3s ease,
    padding-left .3s ease;
}

.price-menu__item:last-child {
  border-bottom: 1px solid rgba(201, 164, 92, .45);
}


/* number */

.price-menu__number {
  color: #c9a45c;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .04em;
}


/* vertical divider */

.price-menu__number::after {
  content: "";

  display: inline-block;

  width: 1px;
  height: 34px;

  margin-left: 25px;

  vertical-align: middle;

  background: rgba(201, 164, 92, .5);
}


/* name */

.price-menu__name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-menu__name strong {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .08em;
}

.price-menu__name small {
  color: #c9a45c;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: .1em;
}


/* arrow */

.price-menu__arrow {
  color: #d6b878;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  text-align: right;

  transition: transform .3s ease;
}


/* hover */

.price-menu__item:hover {
  padding-left: 12px;
  background: rgba(201, 164, 92, .04);
}

.price-menu__item:hover .price-menu__arrow {
  transform: translateX(10px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .price-header {
    height: 90px;
    padding: 0 5%;
  }

  .price-header__logo-mark {
    font-size: 32px;
  }

  .price-menu {
    padding: 60px 5% 80px;
  }

  .price-menu__inner {
    grid-template-columns: 38% 62%;
  }

  .price-menu__intro {
    padding: 50px 40px 40px 18px;
  }

  .price-menu__intro::before {
    top: 52px;
  }

  .price-menu__intro h1 {
    font-size: 48px;
  }

  .price-menu__lead {
    font-size: 15px;
  }

  .price-menu__readmore {
    margin-top: 70px;
  }

  .price-menu__item {
    grid-template-columns: 70px 1fr 45px;
    min-height: 95px;
  }

  .price-menu__name strong {
    font-size: 21px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .price-header {
    height: 76px;
    padding: 0 6%;
  }

  .price-header__logo-mark {
    font-size: 28px;
  }

  .price-header__logo-sub {
    font-size: 9px;
  }

  .price-header__nav {
    gap: 0;
  }

  .price-header__nav > a {
    display: none;
  }

  .price-header__menu {
    width: 34px;
    height: 34px;
  }


  /* price */

  .price-menu {
    min-height: auto;
    padding: 60px 6% 80px;
  }

  .price-menu__inner {
    display: block;
  }


  /* intro */

  .price-menu__intro {
    padding: 30px 0 55px 18px;
  }

  .price-menu__intro::before {
    top: 31px;
    height: 75px;
  }

  .price-menu__label {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .price-menu__intro h1 {
    font-size: 43px;
  }

  .price-menu__subtitle {
    margin-top: 18px;
    font-size: 17px;
  }

  .price-menu__lead {
    margin-top: 35px;
    font-size: 14px;
    line-height: 2;
  }

  .price-menu__readmore {
    width: 210px;
    margin-top: 55px;
  }

  .price-menu__readmore span:first-child {
    font-size: 17px;
  }

  .price-menu__readmore .arrow {
    font-size: 25px;
  }


  /* list */

  .price-menu__list {
    padding-top: 0;
  }

  .price-menu__item {
    grid-template-columns: 55px 1fr 35px;
    min-height: 88px;
  }

  .price-menu__number {
    font-size: 18px;
  }

  .price-menu__number::after {
    height: 28px;
    margin-left: 15px;
  }

  .price-menu__name {
    gap: 5px;
  }

  .price-menu__name strong {
    font-size: 18px;
    letter-spacing: .04em;
  }

  .price-menu__name small {
    font-size: 9px;
  }

  .price-menu__arrow {
    font-size: 23px;
  }

}

/* =========================================================
   FLOW SECTION
   ========================================================= */

#flow {
    position: relative;

    padding: 160px 0 150px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 164, 92, .08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0a0a0a 0%,
            #080808 60%,
            #050505 100%
        );

    color: #fff;
    overflow: hidden;
}


#flow .flow-inner {
    position: relative;

    width: min(1400px, 88%);
    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

#flow .flow-intro {
    position: absolute;

    top: 0;
    left: 0;

    width: 32%;

    padding-left: 25px;
}


#flow .flow-intro::before {
    content: "";

    position: absolute;

    top: 5px;
    left: 0;

    width: 3px;
    height: 100px;

    background: #c9a45c;
}


#flow .flow-label {
    margin: 0 0 25px;

    color: #c9a45c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-style: italic;
    letter-spacing: .08em;
}


#flow .flow-title {
    margin: 0;

    color: #d6b878;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .04em;
}


#flow .flow-line {
    width: 55px;
    height: 1px;

    margin: 35px 0;

    background: #c9a45c;
}


#flow .flow-lead {
    margin: 0;

    color: rgba(255,255,255,.82);

    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: .08em;
}


/* =========================================================
   STEPS
   ========================================================= */

#flow .flow-steps {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    width: 65%;
    margin-left: auto;

    border-top: 1px solid rgba(201,164,92,.45);
}


#flow .flow-step {
    position: relative;

    display: flex;

    min-height: 190px;

    padding: 32px 35px;

    border-bottom: 1px solid rgba(201,164,92,.45);

    transition:
        background-color .3s ease,
        transform .3s ease;
}


/* vertical divider */

#flow .flow-step:nth-child(odd) {
    border-right: 1px solid rgba(201,164,92,.45);
}


/* number */

#flow .flow-number {
    flex: 0 0 58px;

    color: #c9a45c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    letter-spacing: .05em;
}


/* content */

#flow .flow-content {
    padding-left: 20px;
}


#flow .flow-step-title {
    margin: 0 0 18px;

    color: #fff;

    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .06em;
}


#flow .flow-text {
    margin: 0;

    color: rgba(255,255,255,.72);

    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    line-height: 2;
    letter-spacing: .04em;
}


/* hover */

#flow .flow-step:hover {
    background: rgba(201,164,92,.035);
}

#flow .flow-step:hover .flow-number {
    color: #fff;
}


/* =========================================================
   READ MORE
   ========================================================= */

#flow .flow-readmore-wrap {
    width: 65%;
    margin-left: auto;

    padding-top: 45px;
}


#flow .flow-readmore {
    display: inline-flex;
    align-items: center;
    gap: 24px;

    padding-bottom: 10px;

    color: #c9a45c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: .12em;

    text-decoration: none;

    border-bottom: 1px solid rgba(201,164,92,.75);

    transition:
        color .3s ease,
        border-color .3s ease;
}


#flow .flow-readmore-arrow {
    font-size: 24px;
    line-height: 1;

    transition: transform .3s ease;
}


#flow .flow-readmore:hover {
    color: #fff;

    border-color: #fff;
}


#flow .flow-readmore:hover .flow-readmore-arrow {
    transform: translateX(8px);
}


#flow .flow-readmore-text {
    margin: 12px 0 0;

    color: rgba(255,255,255,.6);

    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: .06em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    #flow {
        padding: 130px 0 120px;
    }


    #flow .flow-inner {
        width: 90%;
    }


    #flow .flow-intro {
        width: 34%;
    }


    #flow .flow-steps,
    #flow .flow-readmore-wrap {
        width: 62%;
    }


    #flow .flow-step {
        padding: 28px 24px;
    }


    #flow .flow-number {
        flex-basis: 45px;
    }


    #flow .flow-content {
        padding-left: 10px;
    }


    #flow .flow-step-title {
        font-size: 17px;
    }


    #flow .flow-text {
        font-size: 12px;
    }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

    #flow {
        padding: 100px 0 90px;
    }


    #flow .flow-inner {
        width: 88%;
    }


    /* intro */

    #flow .flow-intro {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        padding: 0 0 55px 18px;
    }


    #flow .flow-intro::before {
        top: 3px;

        height: 78px;
    }


    #flow .flow-label {
        margin-bottom: 18px;

        font-size: 24px;
    }


    #flow .flow-title {
        font-size: 40px;
    }


    #flow .flow-line {
        margin: 25px 0;
    }


    #flow .flow-lead {
        font-size: 13px;
        line-height: 2;
    }


    /* steps */

    #flow .flow-steps {
        display: block;

        width: 100%;
        margin-left: 0;
    }


    #flow .flow-step {
        min-height: auto;

        padding: 28px 5px;
    }


    #flow .flow-step:nth-child(odd) {
        border-right: 0;
    }


    #flow .flow-number {
        flex: 0 0 48px;

        font-size: 17px;
    }


    #flow .flow-content {
        padding-left: 5px;
    }


    #flow .flow-step-title {
        margin-bottom: 12px;

        font-size: 17px;
        line-height: 1.5;
    }


    #flow .flow-text {
        font-size: 12px;
        line-height: 1.9;
    }


    /* read more */

    #flow .flow-readmore-wrap {
        width: 100%;
        margin-left: 0;

        padding-top: 40px;
    }


    #flow .flow-readmore {
        gap: 18px;

        font-size: 17px;
    }


    #flow .flow-readmore-arrow {
        font-size: 23px;
    }


    #flow .flow-readmore-text {
        font-size: 11px;
    }

}
/* =========================================================
   FAQ / RESERVE
   ========================================================= */

.faq-reserve {
  background: #0b0b0b;
  padding: 100px 0 120px;
}

.faq-reserve__inner {
  width: min(1400px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


/* item */

.faq-reserve__item {
  position: relative;
  display: block;

  overflow: hidden;

  color: #fff;
  text-decoration: none;

  background: #111;
}


/* image */

.faq-reserve__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;

  overflow: hidden;
}

.faq-reserve__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform .8s ease;
}


/* dark overlay */

.faq-reserve__image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .12);

  transition: background .5s ease;
}


/* content */

.faq-reserve__content {
  position: absolute;
  left: 38px;
  bottom: 32px;

  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;
}


/* English */

.faq-reserve__en {
  color: #c9a45c;

  font-family: serif;
  font-size: 28px;
  letter-spacing: .08em;
}


/* Japanese */

.faq-reserve__ja {
  color: #fff;

  font-family: serif;
  font-size: 15px;
  letter-spacing: .12em;
}


/* arrow */

.faq-reserve__arrow {
  margin-left: 8px;

  color: #c9a45c;

  font-size: 24px;
  line-height: 1;

  transition: transform .4s ease;
}


/* hover */

.faq-reserve__item:hover .faq-reserve__image img {
  transform: scale(1.04);
}

.faq-reserve__item:hover .faq-reserve__image::after {
  background: rgba(0, 0, 0, .25);
}

.faq-reserve__item:hover .faq-reserve__arrow {
  transform: translateX(8px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .faq-reserve {
    padding: 90px 0 100px;
  }

  .faq-reserve__inner {
    width: 90%;
    gap: 18px;
  }

  .faq-reserve__content {
    left: 28px;
    bottom: 25px;
  }

  .faq-reserve__en {
    font-size: 24px;
  }

  .faq-reserve__ja {
    font-size: 13px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .faq-reserve {
    padding: 70px 0 80px;
  }

  .faq-reserve__inner {
    width: 88%;

    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-reserve__image {
    aspect-ratio: 16 / 8;
  }

  .faq-reserve__content {
    left: 22px;
    bottom: 22px;

    gap: 10px;
  }

  .faq-reserve__en {
    font-size: 22px;
  }

  .faq-reserve__ja {
    font-size: 12px;
    letter-spacing: .08em;
  }

  .faq-reserve__arrow {
    font-size: 20px;
  }

}
/* =========================================================
   SHOP INFORMATION
   ========================================================= */

.shop-info {
  position: relative;

  padding: 150px 0 140px;

  background:
    radial-gradient(
      circle at 15% 80%,
      rgba(201, 164, 92, .07),
      transparent 28%
    ),
    #080808;

  color: #fff;
}


.shop-info__inner {
  width: min(1600px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 28% 42% 30%;
  align-items: start;
}


/* =========================================================
   HEADING
   ========================================================= */

.shop-info__heading {
  position: relative;

  padding: 10px 30px 0 25px;
  min-width: 0;
}


.shop-info__heading::before {
  content: "";

  position: absolute;
  top: 12px;
  left: 0;

  width: 3px;
  height: 100px;

  background: #c9a45c;
}


.shop-info__label {
  display: block;

  margin-bottom: 25px;

  color: #c9a45c;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .22em;
}


.shop-info__title {
  margin: 0;

  color: #d6b878;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35%, 3.0vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;

  word-break: keep-all;
}

.shop-info__subtitle {
  margin: 28px 0 0;

  color: rgba(255,255,255,.8);

  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: .1em;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.shop-info__content {
  border-top: 1px solid rgba(201,164,92,.45);
}


.shop-info__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;

  min-height: 92px;

  border-bottom: 1px solid rgba(201,164,92,.35);
}


.shop-info__name {
  color: #c9a45c;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: .1em;
}


.shop-info__name span {
  display: block;

  margin-top: 6px;

  color: rgba(255,255,255,.55);

  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  letter-spacing: .08em;
}


.shop-info__text {
  color: rgba(255,255,255,.9);

  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .05em;
}


.shop-info__text a {
  color: #fff;
  text-decoration: none;

  transition: color .3s ease;
}


.shop-info__text a:hover {
  color: #c9a45c;
}


/* =========================================================
   GOOGLE MAP
   ========================================================= */

.shop-info__map {
  grid-column: auto;

  width: 100%;
  margin-top: 0;

  overflow: hidden;

  border: 1px solid rgba(201,164,92,.35);
}


.shop-info__map iframe {
  display: block;

  width: 100%;
  height: 400px;

  filter: grayscale(100%) contrast(.9);

  transition: filter .4s ease;
}


.shop-info__map:hover iframe {
  filter: grayscale(70%) contrast(.95);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .shop-info {
    padding: 120px 0;
  }


  .shop-info__inner {
    width: 90%;

    grid-template-columns: 32% 68%;
  }


  .shop-info__heading {
    padding-right: 40px;
  }


  .shop-info__title {
    font-size: 46px;
  }


  .shop-info__row {
    grid-template-columns: 120px 1fr;
  }


  .shop-info__map {
    margin-top: 55px;
  }

}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 767px) {

  .shop-info {
    padding: 100px 0 90px;
  }


  .shop-info__inner {
    width: 88%;

    display: block;
  }


  /* heading */

  .shop-info__heading {
    padding: 0 0 55px 18px;
  }


  .shop-info__heading::before {
    top: 3px;

    height: 78px;
  }


  .shop-info__label {
    margin-bottom: 18px;

    font-size: 12px;
    letter-spacing: .18em;
  }


  .shop-info__title {
    font-size: 40px;
  }


  .shop-info__subtitle {
    margin-top: 20px;

    font-size: 13px;
  }


  /* information */

  .shop-info__content {
    border-top: 1px solid rgba(201,164,92,.45);
  }


  .shop-info__row {
    grid-template-columns: 100px 1fr;

    min-height: 82px;
  }


  .shop-info__name {
    font-size: 11px;
  }


  .shop-info__name span {
    font-size: 9px;
  }


  .shop-info__text {
    font-size: 13px;
    line-height: 1.8;
  }


  /* map */

  .shop-info__map {
    margin-top: 40px;
  }


  .shop-info__map iframe {
    height: 320px;
  }

}
/* ========================================
   Footer
======================================== */

.footer {
    position: relative;
    overflow: hidden;

    background: #0b0b0b;
    color: #f5f2eb;

    padding: 0 5.5% 30px;
}


/* ========================================
   Footer Inner
======================================== */

.footer-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 80px 0 70px;

    display: grid;
    grid-template-columns: 30% 70%;

    border-top: 1px solid rgba(201, 164, 92, 0.65);
}


/* ========================================
   Brand
======================================== */

.footer-brand {
    position: relative;

    display: flex;
    align-items: center;

    padding-left: 40px;
}


.footer-brand-line {
    position: absolute;

    left: 0;
    top: 50%;

    width: 2px;
    height: 140px;

    background: #c9a45c;

    transform: translateY(-50%);
}


.footer-logo {
    display: block;
}


.footer-logo img {
    display: block;

    width: 220px;
    height: auto;
}


/* ========================================
   Navigation
======================================== */

.footer-nav {
    padding-left: 40px;
}


.footer-nav ul {
    list-style: none;

    margin: 0;
    padding: 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 55px;
    row-gap: 30px;
}


.footer-nav li {
    margin: 0;
    padding: 0;

    min-width: 0;
}


.footer-nav a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    color: #f5f2eb;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    letter-spacing: 0.04em;

    transition:
        color 0.3s ease;
}


.footer-nav a:hover {
    color: #c9a45c;
}


.footer-arrow {
    color: #c9a45c;

    font-size: 18px;

    margin-left: 12px;

    transition:
        transform 0.3s ease;
}


.footer-nav a:hover .footer-arrow {
    transform: translateX(5px);
}


/* ========================================
   Watermark
======================================== */

.footer-watermark {
    position: absolute;

    z-index: 1;

    left: 0;
    bottom: -70px;

    width: 100%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(170px, 19vw, 300px);

    font-style: italic;
    font-weight: 400;

    line-height: 0.8;

    white-space: nowrap;

    color: rgba(255, 255, 255, 0.035);

    pointer-events: none;

    user-select: none;
}


/* ========================================
   Footer Bottom
======================================== */

.footer-bottom {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding-top: 25px;

    border-top: 1px solid rgba(201, 164, 92, 0.65);

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.footer-privacy {
    display: flex;

    align-items: center;

    gap: 25px;

    color: #c9a45c;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    letter-spacing: 0.05em;

    transition:
        color 0.3s ease;
}


.footer-privacy span {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.footer-privacy:hover {
    color: #f5f2eb;
}


.footer-privacy:hover span {
    transform: translateX(5px);
}


.footer-bottom p {
    margin: 0;

    color: #c9a45c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    letter-spacing: 0.05em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

    .footer {
        padding: 0 24px 25px;
    }


    /* Footer Inner */

    .footer-inner {
        display: block;

        padding: 55px 0 50px;
    }


    /* Brand */

    .footer-brand {
        padding-left: 20px;

        margin-bottom: 55px;
    }


    .footer-brand-line {
        width: 2px;
        height: 70px;
    }


    .footer-logo img {
        width: 160px;
    }


    /* Navigation */

    .footer-nav {
        padding-left: 0;
    }


    .footer-nav ul {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 20px;
        row-gap: 28px;
    }


    .footer-nav a {
        font-size: 14px;
    }


    .footer-arrow {
        font-size: 15px;

        margin-left: 5px;
    }


    /* Watermark */

    .footer-watermark {
        bottom: -20px;

        font-size: 100px;

        left: 0;
    }


    /* Bottom */

    .footer-bottom {
        padding-top: 22px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .footer-privacy {
        font-size: 13px;

        gap: 15px;
    }


    .footer-bottom p {
        font-size: 13px;
    }

}
/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* 少し遅れて表示 */

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}


/* =========================================================
   SP
   ========================================================= */

@media (max-width: 767px) {

  .reveal {
    transform: translateY(25px);
    transition-duration: 0.8s;
  }

}
/* =========================================================
   FLOW REVEAL
========================================================= */

.flow-reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.flow-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Delay */

.flow-reveal-1 {
    transition-delay: 0.05s;
}

.flow-reveal-2 {
    transition-delay: 0.15s;
}

.flow-reveal-3 {
    transition-delay: 0.25s;
}

.flow-reveal-4 {
    transition-delay: 0.35s;
}

.flow-reveal-5 {
    transition-delay: 0.45s;
}


/* Smartphone */

@media (max-width: 767px) {

    .flow-reveal {
        transform: translateY(25px);

        transition-duration: 0.7s;
    }

}
/* =========================================================
   HERO OPENING ANIMATION
   ========================================================= */

/* -------------------------
   Hero Image
------------------------- */

.hero-animate {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.hero-animate.is-loaded {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------
   Main Image Zoom
------------------------- */

.hero-image {
    transform: scale(1.06);
    transition:
        transform 1.8s cubic-bezier(.22, 1, .36, 1);
}

.hero-animate.is-loaded .hero-image {
    transform: scale(1);
}


/* -------------------------
   Right Image Delay
------------------------- */

.hero-animate-delay {
    transition-delay: .25s;
}

.hero-animate-delay .hero-image {
    transition-delay: .25s;
}


/* -------------------------
   Hero Copy
------------------------- */

.hero-fade {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .9s ease,
        transform .9s ease;
}


.hero-fade.is-loaded {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------
   Copy Timing
------------------------- */

.hero-fade-1 {
    transition-delay: .45s;
}

.hero-fade-2 {
    transition-delay: .65s;
}

.hero-fade-3 {
    transition-delay: .9s;
}


/* -------------------------
   Smartphone
------------------------- */

@media screen and (max-width: 768px) {

    .hero-animate {
        transform: translateY(15px);
        transition-duration: 1s;
    }

    .hero-image {
        transform: scale(1.04);
        transition-duration: 1.5s;
    }

    .hero-fade {
        transform: translateY(18px);
        transition-duration: .8s;
    }

}
/* =========================================================
   HERO OPENING — BLACK COVER
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}


/* -------------------------
   Black Opening Cover
------------------------- */

.hero-cover {
    position: absolute;
    inset: 0;
    z-index: 100;

    background: #000;

    transform: translateY(0);

    transition:
        transform 1.2s cubic-bezier(.77, 0, .18, 1);

    pointer-events: none;
}


/* -------------------------
   Opening
------------------------- */

.hero.is-loaded .hero-cover {
    transform: translateY(-100%);
}


/* -------------------------
   Hero Images
------------------------- */

.hero-image {
    transform: translateY(0) scale(1.08);

    transition:
        transform 2s cubic-bezier(.22, 1, .36, 1);
}

.hero.is-loaded .hero-image {
    transform: translateY(0) scale(1);
}



/* -------------------------
   Hero Copy
------------------------- */

.hero-copy {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity .9s ease,
        transform .9s ease;

    transition-delay: .8s;
}


.hero.is-loaded .hero-copy {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------
   Text Timing
------------------------- */

.hero-sub {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .7s ease,
        transform .7s ease;

    transition-delay: 1s;
}


.hero.is-loaded .hero-sub {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    transition-delay: 1.15s;
}


.hero.is-loaded .hero-title {
    opacity: 1;
    transform: translateY(0);
}


.hero-text {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .7s ease,
        transform .7s ease;

    transition-delay: 1.4s;
}


.hero.is-loaded .hero-text {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------
   Smartphone
------------------------- */

@media screen and (max-width: 768px) {

    .hero-cover {
        transition-duration: 1s;
    }

    .hero-image {
        transform: scale(1.05);
    }

    .hero.is-loaded .hero-image {
        transform: scale(1);
    }

    .hero-copy {
        transform: translateY(25px);
    }

}
/* =========================================================
   ABOUT SIDE REVEAL
========================================================= */

/* 初期状態 */

.about-side-reveal {
    opacity: 0;
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22, 1, .36, 1);
}


/* 左から */

.about-from-left {
    transform: translateX(-60px);
}


/* 右から */

.about-from-right {
    transform: translateX(60px);
}


/* 表示 */

.about-side-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 768px) {

    .about-from-left {
        transform: translateX(-30px);
    }

    .about-from-right {
        transform: translateX(30px);
    }

}
/* Footer Privacy Policy */
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}