/* ================================================================
   ヘッダー共通
   ================================================================ */
body.lc-site-header-v2-active .ec-layoutRole__header {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 0 rgba(82, 58, 49, 0);
    overflow-anchor: none;
    transition: box-shadow 180ms ease;
}

body.lc-site-header-v2-active[data-lc-header-stuck="true"] .ec-layoutRole__header {
    box-shadow: 0 6px 19px rgba(82, 58, 49, 0.08);
}

body.lc-site-header-v2-active .ec-layoutRole__header,
body.lc-site-header-v2-active .ec-layoutRole__header *,
.lc-site-announcement-v2,
.lc-site-announcement-v2 *,
.lc-site-drawer-v2,
.lc-site-drawer-v2 * {
    box-sizing: border-box;
}

.lc-site-announcement-v2,
.lc-site-header-v2,
.lc-site-gnav-v2,
.lc-site-drawer-v2 {
    --lc-header-v2-ink: #2e2724;
    --lc-header-v2-muted: #786b65;
    --lc-header-v2-brand: #8c513c;
    --lc-header-v2-dark: #523a31;
    --lc-header-v2-paper: #fff;
    --lc-header-v2-soft: #faf5f1;
    --lc-header-v2-line: #eadbd3;
    color: var(--lc-header-v2-ink);
    font-family: inherit;
}

.lc-site-header-v2 a,
.lc-site-gnav-v2 a,
.lc-site-announcement-v2 a,
.lc-site-drawer-v2 a {
    color: inherit;
    text-decoration: none;
}

:where(.lc-site-header-v2, .lc-site-gnav-v2, .lc-site-drawer-v2) :where(button, input) {
    font: inherit;
}

.lc-site-header-v2 button,
.lc-site-gnav-v2 button,
.lc-site-drawer-v2 button {
    cursor: pointer;
}

.lc-site-header-v2 :focus-visible,
.lc-site-gnav-v2 :focus-visible,
.lc-site-announcement-v2 :focus-visible,
.lc-site-drawer-v2 :focus-visible {
    outline: 2px solid var(--lc-header-v2-brand);
    outline-offset: 3px;
}

.lc-site-header-v2__announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 34px;
    padding: 6px 20px;
    overflow: hidden;
    color: #fff;
    background: var(--lc-header-v2-dark);
    font-size: 13px;
    line-height: 1.5;
}

.lc-site-header-v2__announcement-label {
    white-space: nowrap;
}

.lc-site-header-v2__announcement-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.lc-site-header-v2__desktop {
    max-height: 96px;
    overflow: hidden;
    background: var(--lc-header-v2-paper);
    opacity: 1;
    /* 表示時は高さを先に戻し、透明度だけを変化させる。 */
    transition:
        opacity 180ms ease,
        max-height 0s linear;
}

/* 再表示時は高さだけを先に復元し、次の描画で透明度を変化させる。 */
body[data-lc-header-state="revealing"] .lc-site-header-v2__desktop {
    max-height: 96px;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.lc-site-header-v2__inner {
    display: grid;
    grid-template-columns: clamp(120px, 16vw, 210px) minmax(160px, 1fr) auto;
    align-items: center;
    gap: clamp(8px, 1.5vw, 22px);
    width: min(1200px, calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
}

.lc-site-header-v2__logo,
.lc-site-header-v2__mobile-logo,
.lc-site-gnav-v2__condensed-logo {
    display: block;
}

.lc-site-header-v2__logo img,
.lc-site-header-v2__mobile-logo img,
.lc-site-gnav-v2__condensed-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.lc-site-header-v2__logo {
    width: min(100%, 190px);
}

.lc-site-header-v2__search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    height: 44px;
    border: 1px solid #cdbeb7;
    border-radius: 999px;
    background: #fff;
}

.lc-site-header-v2__search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lc-site-header-v2__search input {
    min-width: 0;
    flex: 1 1 auto;
    height: 42px;
    padding: 0 8px 0 20px;
    border: 0;
    border-radius: 999px;
    color: var(--lc-header-v2-ink);
    background: transparent;
    font-size: 14px;
    outline: 0;
}

.lc-site-header-v2__search button {
    display: grid;
    flex: 0 0 48px;
    place-items: center;
    height: 42px;
    padding: 0;
    border: 0;
    color: var(--lc-header-v2-brand);
    background: transparent;
}

.lc-site-header-v2__search svg,
.lc-site-header-v2__utility svg,
.lc-site-header-v2__mobile-action svg,
.lc-site-gnav-v2__action svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.lc-site-header-v2__utilities {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: clamp(6px, 1.25vw, 28px);
}

.lc-site-header-v2__utility {
    display: grid;
    grid-template-rows: 25px auto;
    justify-items: center;
    gap: 4px;
    min-width: clamp(40px, 5.75vw, 56px);
    color: var(--lc-header-v2-ink);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
}

.lc-site-header-v2__utility:hover,
.lc-site-header-v2__utility:focus-visible {
    color: var(--lc-header-v2-brand);
}

.lc-site-header-v2__cart-icon,
.lc-site-header-v2__mobile-action,
.lc-site-gnav-v2__action {
    position: relative;
}

.lc-site-header-v2__cart-count,
.lc-site-gnav-v2__cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    display: grid;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--lc-header-v2-brand);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.lc-site-header-v2__mobile,
.lc-site-header-v2__mobile-search {
    display: none;
}

.lc-site-header-v2__sticky-sentinel {
    display: block;
    width: 100%;
    height: 0;
    pointer-events: none;
}

body[data-lc-header-state="condensed"] .lc-site-header-v2__desktop {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    /* フェードアウト完了後に高さを一度で収納する。 */
    transition:
        opacity 180ms ease,
        max-height 0s linear 180ms;
}

/* ================================================================
   グローバルナビ
   ================================================================ */
.lc-site-gnav-v2 {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--lc-header-v2-line);
    border-bottom: 1px solid var(--lc-header-v2-line);
    background: var(--lc-header-v2-paper);
}

.lc-site-gnav-v2__bar {
    position: relative;
    width: 100%;
}

.lc-site-gnav-v2__nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: min(1120px, calc(100% - 32px));
    min-height: 48px;
    margin: 0 auto;
}

.lc-site-gnav-v2__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 0 clamp(8px, 1.5vw, 20px);
    border: 0;
    color: var(--lc-header-v2-ink);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex: 1 1 0;
}

.lc-site-gnav-v2__item:hover,
.lc-site-gnav-v2__item:focus-visible,
.lc-site-gnav-v2__item[aria-expanded="true"] {
    color: var(--lc-header-v2-brand);
    background: transparent;
}

.lc-site-gnav-v2__item::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 2px;
    content: "";
    background: var(--lc-header-v2-brand);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 180ms ease, transform 180ms ease;
}

.lc-site-gnav-v2__item:hover::after,
.lc-site-gnav-v2__item:focus-visible::after,
.lc-site-gnav-v2__item[aria-expanded="true"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.lc-site-gnav-v2__condensed-logo,
.lc-site-gnav-v2__condensed-actions {
    display: none;
}

body[data-lc-header-state="condensed"] .lc-site-gnav-v2__nav {
    justify-content: flex-start;
    width: min(1200px, calc(100% - 32px));
}

body[data-lc-header-state="condensed"] .lc-site-gnav-v2__condensed-logo {
    display: flex;
    align-items: center;
    width: clamp(108px, 15vw, 150px);
    margin-right: auto;
    padding: 8px 12px 8px 0;
}

body[data-lc-header-state="condensed"] .lc-site-gnav-v2__item {
    min-width: 0;
    padding-inline: clamp(6px, 1vw, 12px);
    font-size: 12px;
}

body[data-lc-header-state="condensed"] .lc-site-gnav-v2__condensed-actions {
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

.lc-site-gnav-v2__action {
    display: grid;
    width: clamp(38px, 4vw, 46px);
    padding: 0;
    place-items: center;
    border: 0;
    color: var(--lc-header-v2-ink);
    background: transparent;
}

.lc-site-gnav-v2__action:hover,
.lc-site-gnav-v2__action:focus-visible,
.lc-site-gnav-v2__action[aria-expanded="true"] {
    color: var(--lc-header-v2-brand);
    background: var(--lc-header-v2-soft);
}

.lc-site-gnav-v2__compact-search {
    position: absolute;
    top: 100%;
    right: max(24px, calc((100% - 1200px) / 2));
    z-index: 4;
    width: min(460px, calc(100% - 48px));
    padding: 14px;
    border: 1px solid var(--lc-header-v2-line);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(46, 39, 36, 0.14);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.lc-site-gnav-v2__compact-search[data-state="open"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.lc-site-gnav-v2__compact-search form,
.lc-site-header-v2__mobile-search form,
.lc-site-drawer-v2__search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid #cdbeb7;
    border-radius: 999px;
    background: #fff;
}

.lc-site-gnav-v2__compact-search label,
.lc-site-header-v2__mobile-search label,
.lc-site-drawer-v2__search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lc-site-gnav-v2__compact-search input,
.lc-site-header-v2__mobile-search input,
.lc-site-drawer-v2__search input {
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    border: 0;
    color: var(--lc-header-v2-ink);
    background: transparent;
    outline: 0;
}

.lc-site-gnav-v2__compact-search button,
.lc-site-header-v2__mobile-search button,
.lc-site-drawer-v2__search button {
    align-self: stretch;
    min-width: 64px;
    padding: 0 15px;
    border: 0;
    color: #fff;
    background: var(--lc-header-v2-brand);
    font-weight: 700;
}

.lc-site-gnav-v2__mega-layer {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.lc-site-gnav-v2__mega {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--lc-header-v2-line);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 20px 32px rgba(46, 39, 36, 0.12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.lc-site-gnav-v2__mega[data-state="open"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.lc-site-gnav-v2__mega-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 26px 0 30px;
}

.lc-site-gnav-v2__mega-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.lc-site-gnav-v2__mega-head h2 {
    display: block;
    margin: 0;
    color: var(--lc-header-v2-ink);
    font-size: 22px;
    line-height: 1.35;
}

.lc-site-gnav-v2__mega-head h2::before,
.lc-site-drawer-v2 h2.lc-site-drawer-v2__heading::before {
    margin: 0;
    content: none;
}

.lc-site-gnav-v2__mega-head > a {
    border-bottom: 1px solid var(--lc-header-v2-brand);
    color: var(--lc-header-v2-brand);
    font-size: 13px;
}

.lc-site-gnav-v2__category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 30px;
}

.lc-site-gnav-v2__category-title {
    display: block;
}

.lc-site-gnav-v2__category-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
}

.lc-site-gnav-v2__category-main > span {
    color: #a27c6d;
    font-size: 9.6px;
    font-weight: 400;
    white-space: nowrap;
}

.lc-site-gnav-v2__category-main:hover > span {
    color: var(--lc-header-v2-brand);
}

.lc-site-gnav-v2__category ul,
.lc-site-gnav-v2__needs-group ul {
    display: grid;
    gap: 7px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.lc-site-gnav-v2__sub-link,
.lc-site-gnav-v2__foot-link {
    color: var(--lc-header-v2-muted);
    font-size: 13px;
}

.lc-site-gnav-v2__category-main:hover,
.lc-site-gnav-v2__sub-link:hover,
.lc-site-gnav-v2__foot-link:hover,
.lc-site-gnav-v2__brand:hover {
    color: var(--lc-header-v2-brand);
}

.lc-site-gnav-v2__mega-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
    margin-top: 24px;
    padding-top: 17px;
    border-top: 1px solid var(--lc-header-v2-line);
}

.lc-site-gnav-v2__mega-foot strong {
    color: var(--lc-header-v2-ink);
}

.lc-site-gnav-v2__needs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lc-site-gnav-v2__needs-group {
    min-height: 140px;
    padding: 0 30px;
}

.lc-site-gnav-v2__needs-group:first-child {
    padding-left: 0;
}

.lc-site-gnav-v2__needs-group + .lc-site-gnav-v2__needs-group {
    border-left: 1px solid var(--lc-header-v2-line);
}

.lc-site-gnav-v2__needs-group h3 {
    margin: 0;
    color: var(--lc-header-v2-brand);
    font-size: 14px;
}

.lc-site-gnav-v2__brand-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.lc-site-gnav-v2__brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
    aspect-ratio: 164 / 100;
    padding: 0;
    border: 1px solid var(--lc-header-v2-line);
    background: #fff;
    font-weight: 700;
}

.lc-site-gnav-v2__brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lc-site-gnav-v2__brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lc-site-gnav-v2__brand-label {
    color: var(--lc-header-v2-text);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.lc-site-gnav-v2__brand:hover,
.lc-site-gnav-v2__brand:focus-visible {
    border-color: var(--lc-header-v2-brand);
}

/* 未作成の遷移先がなくなったら、data-lc-link-status="pending"の項目とこの指定を一緒に削除する。 */
.lc-site-gnav-v2 [data-lc-link-status="pending"],
.lc-site-drawer-v2 [data-lc-link-status="pending"] {
    color: #a54c2f !important;
    background: #fff3ec;
    cursor: not-allowed;
}

.lc-site-gnav-v2__item[data-lc-link-status="pending"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* ================================================================
   SPドロワー
   ================================================================ */
body.lc-site-header-v2-active > .ec-drawerRole {
    position: static !important;
    z-index: auto !important;
    width: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    transform: none !important;
    background: transparent !important;
}

.lc-site-drawer-v2 {
    position: relative;
    z-index: 1190;
}

.lc-site-drawer-v2__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1180;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(35, 28, 25, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.lc-site-drawer-v2__panel {
    position: fixed;
    top: var(--lc-header-v2-drawer-top, 58px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1190;
    width: auto;
    max-width: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--lc-header-v2-ink);
    background: var(--lc-header-v2-paper);
    box-shadow: 12px 0 32px rgba(35, 28, 25, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-1rem);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.lc-site-drawer-v2[data-state="open"] .lc-site-drawer-v2__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.lc-site-drawer-v2[data-state="open"] .lc-site-drawer-v2__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition: opacity 220ms ease, transform 220ms ease;
}

html.lc-site-drawer-v2-open,
html.lc-site-drawer-v2-open body {
    overflow: hidden;
}

.lc-site-drawer-v2__account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 54px;
    color: #fff;
    background: var(--lc-header-v2-dark);
}

.lc-site-drawer-v2__account a {
    padding: 16px 10px;
    text-align: center;
    font-size: 13px;
}

.lc-site-drawer-v2__account button {
    display: none;
}

.lc-site-drawer-v2__search {
    margin: 16px;
}

.lc-site-drawer-v2__section {
    padding: 5px 16px 18px;
}

.lc-site-drawer-v2__section + .lc-site-drawer-v2__section {
    padding-top: 18px;
    border-top: 8px solid var(--lc-header-v2-soft);
}

.lc-site-drawer-v2 h2.lc-site-drawer-v2__heading {
    display: block;
    margin: 0 0 8px;
    color: var(--lc-header-v2-brand);
    font-size: 14px;
    line-height: 1.5;
}

.lc-site-drawer-v2__row {
    border-bottom: 1px solid var(--lc-header-v2-line);
}

.lc-site-drawer-v2__direct,
.lc-site-drawer-v2__disclosure {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 55px;
    padding: 0 4px;
    border: 0;
    color: var(--lc-header-v2-ink);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

.lc-site-drawer-v2__mark {
    color: var(--lc-header-v2-brand);
    font-size: 20px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.lc-site-drawer-v2__disclosure[aria-expanded="true"] .lc-site-drawer-v2__mark {
    transform: rotate(45deg);
}

.lc-site-drawer-v2__subpanel {
    display: grid;
    grid-template-rows: 0fr;
    /* 展開内容は通常のドロワー背景へつなげ、色面を付けない。 */
    background: transparent;
    visibility: hidden;
    opacity: 0;
    transition: grid-template-rows 220ms ease, opacity 180ms ease, visibility 0s linear 220ms;
}

.lc-site-drawer-v2__subpanel[data-state="open"] {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.lc-site-drawer-v2__subpanel-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.lc-site-drawer-v2__subpanel[data-state="open"] > .lc-site-drawer-v2__subpanel-inner {
    padding: 10px 12px 14px;
}

.lc-site-drawer-v2__subpanel--trust {
    background: transparent;
}

.lc-site-drawer-v2__subpanel--trust[data-state="open"] > .lc-site-drawer-v2__subpanel-inner {
    padding: 0 4px 16px;
}

.lc-site-drawer-v2__links,
.lc-site-drawer-v2__link-group {
    display: grid;
}

.lc-site-drawer-v2__link-group + .lc-site-drawer-v2__link-group {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--lc-header-v2-line);
}

.lc-site-drawer-v2__all-link,
.lc-site-drawer-v2__group-link,
.lc-site-drawer-v2__group-label,
.lc-site-drawer-v2__child-link {
    display: block;
    padding: 8px 9px;
    border-radius: 4px;
    line-height: 1.45;
}

.lc-site-drawer-v2__group-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lc-site-drawer-v2__group-link > span:last-child {
    color: #a27c6d;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

.lc-site-drawer-v2__all-link,
.lc-site-drawer-v2__group-link,
.lc-site-drawer-v2__group-label {
    color: var(--lc-header-v2-brand);
    font-size: 13px;
    font-weight: 700;
}

.lc-site-drawer-v2__child-link {
    padding-left: 20px;
    color: var(--lc-header-v2-muted);
    font-size: 13px;
}

.lc-site-drawer-v2__trust {
    color: var(--lc-header-v2-muted);
    font-size: 13px;
    line-height: 1.75;
}

.lc-site-drawer-v2__trust p {
    margin: 0 0 10px;
}

.lc-site-drawer-v2__trust-diagram {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.lc-site-drawer-v2__trust-diagram span {
    display: grid;
    min-height: 42px;
    padding: 6px;
    place-items: center;
    border: 1px solid var(--lc-header-v2-line);
    color: var(--lc-header-v2-ink);
    background: #fff;
    font-size: 10px;
    text-align: center;
}

.lc-site-drawer-v2 h2.lc-site-drawer-v2__heading--guide {
    margin-top: 18px;
}

.lc-site-drawer-v2__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px 34px;
    color: var(--lc-header-v2-muted);
    background: var(--lc-header-v2-soft);
    font-size: 12px;
}

/* ================================================================
   SPヘッダー
   ================================================================ */
@media (max-width: 767.98px) {
    /*
     * ドロワーを開いた瞬間のSPヘッダー位置を固定する。告知帯が画面内に残る場合は
     * 実測した基準点の位置を使い、スクロールアウト後は0pxになる。
     */
    html.lc-site-drawer-v2-open body.lc-site-header-v2-active .ec-layoutRole__header {
        position: fixed;
        top: var(--lc-header-v2-drawer-header-top, 0px);
        right: 0;
        left: 0;
        width: 100%;
        transition: box-shadow 180ms ease;
    }

    html.lc-site-drawer-v2-open .lc-site-announcement-v2 {
        transform: translateY(0);
        opacity: 1;
    }

    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] body.lc-site-header-v2-active .ec-layoutRole__header {
        transition: top 180ms ease, box-shadow 180ms ease;
    }

    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] .lc-site-announcement-v2 {
        transition: transform 180ms ease, opacity 160ms ease;
    }

    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] .lc-site-drawer-v2[data-state="open"] .lc-site-drawer-v2__panel {
        transition: top 180ms ease, opacity 220ms ease, transform 220ms ease;
    }

    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-state="hidden"] .lc-site-announcement-v2 {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .lc-site-header-v2__announcement {
        flex-wrap: wrap;
        gap: 0 8px;
        min-height: 36px;
        padding: 5px 10px;
        font-size: 10px;
        text-align: center;
    }

    .lc-site-header-v2__announcement-link {
        display: none;
    }

    .lc-site-header-v2__desktop,
    .lc-site-gnav-v2 {
        display: none;
    }

    .lc-site-header-v2__mobile {
        display: grid;
        grid-template-columns: 46px minmax(120px, 1fr) 42px 42px;
        align-items: center;
        min-height: 58px;
        padding: 0 8px;
        border-bottom: 1px solid var(--lc-header-v2-line);
        background: #fff;
    }

    .lc-site-header-v2__mobile-logo {
        width: min(170px, 52vw);
        margin: 0 auto;
    }

    .lc-site-header-v2__drawer-toggle,
    .lc-site-header-v2__mobile-action {
        display: grid;
        width: 42px;
        height: 46px;
        padding: 0;
        place-items: center;
        border: 0;
        color: var(--lc-header-v2-brand);
        background: transparent;
    }

    .lc-site-header-v2__drawer-lines,
    .lc-site-header-v2__drawer-lines::before,
    .lc-site-header-v2__drawer-lines::after,
    .lc-site-header-v2__drawer-lines > span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 180ms ease, opacity 140ms ease;
    }

    .lc-site-header-v2__drawer-lines {
        position: relative;
        background: transparent;
    }

    .lc-site-header-v2__drawer-lines::before,
    .lc-site-header-v2__drawer-lines::after {
        position: absolute;
        left: 0;
        content: "";
    }

    .lc-site-header-v2__drawer-lines::before {
        top: -7px;
    }

    .lc-site-header-v2__drawer-lines::after {
        top: 7px;
    }

    .lc-site-header-v2__drawer-toggle[aria-expanded="true"] .lc-site-header-v2__drawer-lines::before {
        top: 0;
        transform: rotate(45deg);
    }

    .lc-site-header-v2__drawer-toggle[aria-expanded="true"] .lc-site-header-v2__drawer-lines > span {
        opacity: 0;
    }

    .lc-site-header-v2__drawer-toggle[aria-expanded="true"] .lc-site-header-v2__drawer-lines::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .lc-site-header-v2__mobile-search {
        padding: 10px 12px 12px;
        border-bottom: 1px solid var(--lc-header-v2-line);
        background: var(--lc-header-v2-soft);
    }

    .lc-site-header-v2__mobile-search:not([hidden]) {
        display: block;
    }

}

@media (min-width: 768px) {
    .lc-site-drawer-v2 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] body.lc-site-header-v2-active .ec-layoutRole__header,
    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] .lc-site-announcement-v2,
    html.lc-site-drawer-v2-open[data-lc-drawer-announcement-motion="true"] .lc-site-drawer-v2[data-state="open"] .lc-site-drawer-v2__panel,
    html.lc-site-drawer-v2-open body.lc-site-header-v2-active .ec-layoutRole__header,
    html.lc-site-drawer-v2-open .lc-site-announcement-v2,
    .lc-site-drawer-v2[data-state="open"] .lc-site-drawer-v2__panel,
    body.lc-site-header-v2-active .ec-layoutRole__header,
    .lc-site-header-v2__desktop,
    .lc-site-announcement-v2,
    .lc-site-gnav-v2__compact-search,
    .lc-site-gnav-v2__mega,
    .lc-site-drawer-v2__backdrop,
    .lc-site-drawer-v2__panel,
    .lc-site-drawer-v2__subpanel,
    .lc-site-drawer-v2__mark,
    .lc-site-header-v2__drawer-lines,
    .lc-site-header-v2__drawer-lines::before,
    .lc-site-header-v2__drawer-lines::after,
    .lc-site-header-v2__drawer-lines > span {
        transition: none;
    }
}
