@charset "UTF-8";

:root {
    --space-0: 16px;
    --space-1: 32px;
    --space-2: 64px;
    --space-3: 128px;
    /* PC など広い画面のとき */
    --main-color: #212121;
    --sub-color: #B2A072;
    --bg-color: #F4F4F4;
    --content-color: #FFF;
}

/* PCトップ */
@media (min-width: 1073px) {
    :root {
        --space-0: 18px;
        --space-1: 36px;
        --space-2: 72px;
        --space-3: 144px;
    }
}

body {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    line-height: 2;
    color: #212121;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);

    /* ===== 初期表示演出 ===== */
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ===== 初期表示演出 ===== */
body.is-loaded {
    opacity: 1;
}

/* ===== スクロール演出 ===== */
section,
footer {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.is-visible {
    opacity: 1;
}

.shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

button {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    border: none;
    background-color: unset;
}

section {
    margin-bottom: 128px;
}

h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.h3-en {
    writing-mode: horizontal-tb;
}

h4 {
    font-size: 24px;
    margin-bottom: 32px;
}

h5 {
    font-size: 20px;
}

small {
    font-size: 12px;
}

@media (min-width: 1073px) {
    body {
        font-size: 18px;
    }

    section {
        margin-bottom: 144px;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 28px;
    }

    button {
        font-size: 18px;
    }

}

.link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link img {
    height: 1em;
    width: auto;
}

/* ===== コンテンツ ===== */
#page {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.show-loading #page {
    opacity: 0;
}

/* ===== ローディング ===== */
#loading {
    position: fixed;
    inset: 0;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

#loading.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ロゴ */
.loading-logo {
    width: 180px;
    /* ロゴサイズ */
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: translateX(16px);
    /* ← 右に少し寄せる */
}

/* ローディング表示中のロゴ */
#loading.is-visible .loading-logo {
    opacity: 1;
    transform: translateX(16px);
}

/* 読み込み失敗時 */
.no-result {
  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(8px);

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* 読み込み失敗時 */
.no-result.is-show {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  text-align: center;
  padding-top: var(--space-3);
}

/* SPヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    /* 左右の要素を端に寄せる */
    align-items: center;
    /* 縦位置を中央に揃える（任意） */
    width: 100%;
    /* 親要素の幅いっぱい */
    padding: var(--space-0);
}

/* ぼかしレイヤー */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    /* ↓ 境界をぼかすためのグラデーション */
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 70%,
            rgba(0, 0, 0, 0) 100%);

    pointer-events: none;
}

#headr-nav-sp {
    display: flex;
    align-items: flex-end;
}

#headr-nav-sp p {
    color: var(--sub-color);
    margin-right: var(--space-0);
    line-height: 1;
}

.img-logo {
    width: 128px;
    height: auto;
}

/* ロゴ（通常描画） */
.logo-wrap {
    position: fixed;
    top: 24px;
    left: 16px;
    z-index: 1001;
}

.logo-wrap img {
    display: block;
}

.logo-wrap.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.headr-nav {
    display: none;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.divider {
    color: rgba(255, 255, 255, 0.5);
    z-index: 1000;
}

.menu-button {
    width: 40px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
}

/* ハンバーガーアイコン */
.hamburger {
    width: 40px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ハンバーガーの線 */
.hamburger div {
    width: 100%;
    height: 1px;
    background-color: var(--sub-color);
    transition: all .4s;
}

.menu-text {
    font-size: 12px;
    line-height: 1;
    text-align: center;
    color: var(--sub-color);
    z-index: 9999;
}


.menu-button.is-open .hamburger div:nth-child(1) {
    transform: translateY(14px) rotate(42deg);
}

.menu-button.is-open .hamburger div:nth-child(2) {
    opacity: 0;
}

.menu-button.is-open .hamburger div:nth-child(3) {
    transform: translateY(-13px) rotate(-42deg);
}

/* 初期表示：Menuだけ */
.menu-text .menu {
    opacity: 1;
    transform: translateY(0);
}

/* Closeは最初 完全に消す（display:none相当） */
.menu-text .close {
    display: none;
}

/* 開いた状態 */
#headr-nav-sp.is-open .menu-text .menu {
    display: none;
    opacity: 0;
    transform: translateY(-4px);
}

#headr-nav-sp.is-open .menu-text .close {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.language-menu {
    margin-right: var(--space-0);
    color: var(--bg-color);
}

.global-menu {
    position: fixed;
    height: 100vh;
    inset: 0;
    background: var(--main-color);
    z-index: 9998;
    padding: var(--space-2);

    display: grid;
    place-items: center;
    align-items: center;
    justify-content: left;

    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.global-menu.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.global-menu ul {
    list-style: none;
    text-align: left;
}

.global-menu li {
    margin: var(--space-1) 0;
}

.global-menu a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

.global-menu a.active {
    color: var(--sub-color);
}

.global-menu .global-menu-language {
    margin-top: var(--space-2);
    margin-bottom: 0;
}

/* メニュー表示中はスクロールを停止する */
body.is-menu-open {
    overflow: hidden;
}

/* PCヘッダー */
@media (min-width: 1073px) {
    header a {
        font-size: 16px;
        color: rgba(178, 160, 114, 0.6);
        /* ← 数字を下げるほど透明 */
        display: inline-block;
        /* 重要 */
        position: relative;
    }

    .divider {
        color: rgba(178, 160, 114, 0.6);
        z-index: 1000;
    }

    header nav a.active {
        color: var(--sub-color);
    }

    header a.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -0.1px;
        transform: translateX(-50%);
        width: 100%;
        height: 0.5px;
        background: currentColor;
    }

    #headr-nav-pc {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .headr-nav {
        display: flex;
        gap: 72px;
    }

    .headr-nav li {
        vertical-align: middle;
    }

    #headr-nav-sp {
        display: none;
    }

    .img-logo {
        width: 144px;
        height: auto;
    }

    .headr-nav ul {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .logo-wrap {
        top: 16px;
        left: 36px;
    }
}

/* オンラインショップ準備中 */
.onlineshop-dececripton {
    background-color: #FFFFFF;
    margin-top: var(--space-2);
    padding: var(--space-1) var(--space-1);
}

.onlineshop-dececripton p {
    text-align: center;
}

.onlineshop-ready {
    margin-bottom: 16px;
}

/* SPフッター*/
.footer-resrve {
    padding: var(--space-3) var(--space-1) 0 var(--space-1);
    margin-bottom: 62px;
}

.footer-resrve-description {
    margin: 32px 0;
}

.footer-resrve-phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    background-color: #FFFFFF;
    padding: 16px;
    gap: 16px;
    width: 100%;
}

.footer-resrve-phoneimg {
    margin-top: -12px;
}

.footer-resrve-phonenum {
    display: flex;
    flex-direction: column;
}

.footer-resrve-phonenum h5 {
    line-height: 100%;
}

.footer-resrve-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 4px;
}

.footer-resrve-wrapper img {
    width: 24px;
    justify-content: center;
    align-items: center;
}

.footer-info {
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 62px 32px 32px;
}

.footer-info-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info-logo img {
    width: auto;
    height: 160px;
    margin-left: 50px;
}

.info-list {
    display: grid;
    grid-template-columns: 64px 1fr;
    /* 左:固定 / 右:可変 */
    column-gap: 32px;
    /* dt-dd 間の余白 */
    row-gap: 32px;
    /* 行間 */
    margin: 64px 0 32px;
}

.info-list-en {
    grid-template-columns: 88px 1fr;
}

.info-list-en dt {
    line-height: 1.5;
}

.info-list dt img {
    width: auto;
    height: 32px;
}

.info-list dd {
    margin: 0;
    /* 初期値のインデントを消す */
}

.info-list-sns {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.info-list-sns img {
    height: 24px;
    width: 24px;
}

.footer-info small {
    display: block;
    text-align: center;
}

.underline {
    border-bottom: 2px dotted #F4F4F4;
}

.underline-bk {
    border-bottom: 2px dotted #212121;
}

/* PCフッター */
@media (min-width: 740px) {
    .footer {
        max-width: 1224px;
        margin: 0 auto 144px;
        padding: 0 36px;
    }

    .footer-resrve {
        max-width: 1224px;
        margin: 0 auto 144px;
    }

    .footer-info-wrapper {
        max-width: 1224px;
        margin: 0 auto 0;
        padding: 0 36px;
    }

    .footer-info-logo img {
        margin-left: 0px;
    }

    .footer-resrve-items-img {
        aspect-ratio: 4 / 3;
        height: 284px;
    }

    .footer-resrve-items-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-resrve-description {
        display: flex;
        gap: 6.25%;
        margin: 0;
        margin-bottom: 36px;
    }

    .footer-resrve-items-wrapper {
        display: flex;
        gap: 6.25%;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-resrve-contacts {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-resrve-phone {
        flex: 1 1 340px;
        padding: 16px;
        margin: 0;
    }

    .footer-info {
        padding: 144px 0 36px;
    }

    .footer-info-menu-en {
        width: 60%;
    }

    .footer-info-items {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 144px;
    }

    .info-list {
        margin-top: 0;
        grid-template-columns: 72px 1fr;
    }

    .info-list-en {
        grid-template-columns: 142px 1fr;
    }

    .info-list-sns {
        margin-bottom: 0;
    }
}


/* サブページSPトップ */
#subpage-top {
    background-color: var(--main-color);
}

#subpage-top-en {
    background-color: var(--main-color);
}

.topvisual-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 128px 0 64px;
}

.topvisual-img-wrapper {
    width: 60vw;
    /* 横幅は画面の6割 */
    height: 50vh;
    /* 高さは画面の半分 */
    overflow: hidden;
    /* はみ出した部分を隠す */
    display: flex;
}

.topvisual-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像を枠いっぱいに収める */
}

.topvisual-txt-wrapper {
    width: 40%;
    /* 左エリアの幅決め */
    display: flex;
    justify-content: center;
    /* ← 左エリアの中で中央寄せ */
}

#topVisualTitle {
    color: var(--bg-color);
    line-height: 100%;
    writing-mode: vertical-rl;
    margin: auto;
    letter-spacing: 0.5em;
}

.subPage-en {
    text-orientation: mixed;
}

/* サブページPCトップ */
@media (min-width: 1073px) {
    .topvisual-wrapper {
        padding: 144px 0 144px;
    }

    #topVisualTitle.subPage-en {
        writing-mode: horizontal-tb;
    }
}