:root {
    --ink: #262321;
    --soft: #68615b;
    --paper: #fff;
    --off: #faf9f7;
    --line: #e6e0d8;
    --line-dark: #cfc5b9;
    --gold: #a18450;
    --gold-dark: #76531e;
    --serif: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    --sans: "Noto Sans CJK JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
    --header: 76px;
    --shadow: 0 18px 55px rgba(52, 40, 27, .09);
}


* {
    box-sizing: border-box;
}

.in_block {
    display: inline-block;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 16px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.9;
    letter-spacing: .045em;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 9px 14px;
    background: #111;
    color: #fff;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.container {
    width: min(1000px, calc(100% - 48px));
    margin: auto;
}

.narrow {
    width: min(820px, calc(100% - 48px));
    margin: auto;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header);
    border-bottom: 1px solid rgba(38, 35, 33, .08);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    transition: .25s;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 25px rgba(50, 40, 30, .07);
    background: rgba(255, 255, 255, .99);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    padding: 0 34px;
}

.brand-logo {
    width: 150px;
    display: inline-flex;
    /* width: max-content; */
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-logo-main {
    padding-left: .28em;
    font-family: Georgia, serif;
    font-size: 25px;
    letter-spacing: .28em;
}

.brand-logo-sub {
    margin-top: 7px;
    padding-left: .43em;
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: .43em;
}

.global-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 44px);
}

.global-nav a {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: .08em;
}

.global-nav a:hover {
    color: var(--gold-dark);
}

.header-reserve {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 30px;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
}

.menu-toggle {
    display: none;
}

.breadcrumb {
    margin-top: var(--header);
    border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
    display: flex;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 13px 0;
    gap: 12px;
    list-style: none;
    color: #8f877f;
    font-size: 10px;
    letter-spacing: .12em;
}

.breadcrumb li+li:before {
    content: "/";
    margin-right: 12px;
    color: #bbb3ab;
}

.page-hero {
    display: grid;
    height: 400px;
    min-height: 0;
    grid-template-columns: 58% 42%;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.page-hero-image {
    background: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, .22)), url("https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/bridal/assets/images/bridallist/hero-hands.webp") center/cover no-repeat;
}

.page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px clamp(34px, 4.5vw, 72px);
    background: #fff;
}

.page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(30px,3.2vw,40px);
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: .08em;
}

.page-hero-copy>p:not(.eyebrow) {
    margin: 16px 0 18px;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .09em;
    transition: .2s;
}

.text-link:hover {
    gap: 22px;
    color: var(--gold-dark);
}

.intro-section {
    padding: 110px 0;
    text-align: center;
}

.intro-section h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(28px,3.2vw,36px);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: .08em;
}

.intro-section .narrow>p:last-child {
    margin: 28px 0 0;
    color: var(--soft);
    font-size: 14px;
}

.brand-list-section {
    padding: 110px 0;
    background: var(--off);
    border-top: 1px solid var(--line);
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 400;
    letter-spacing: .13em;
}

.section-heading>p:last-child {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 14px;
}

.brand-list2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 74px 44px;
    margin-top: 72px;
}

.brand-entry {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 410px;
    padding: 36px 32px 28px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    transition: .3s;
    gap: 3em 0;
}
.brand-entry > div:last-child {
    grid-column: 1 / -1;
}

.brand-entry:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.brand-image {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
    transition: all .3s;
}

.brand-image:hover {
    opacity: .8;
}

.brand-image:active {
    opacity: .95;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-entry:hover .brand-image img {
    transform: scale(1.025);
}

.brand-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 28px;
}

.brand-no {
    position: absolute;
    top: 18px;
    right: 22px;
    margin: 0;
    color: #d8d0c7;
    font-family: Georgia, serif;
    font-size: 28px;
}
.brand-list2 {
	counter-reset: brand-number;
}

.brand-entry {
	counter-increment: brand-number;
}

.brand-no::before {
	content: counter(brand-number, decimal-leading-zero);
}

.brand-en {
    margin: 0 0 7px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: .14em;
}

.brand-copy h3 {
    margin: 0;
    padding-right: 32px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .05em;
}

.brand-copy>p:not(.brand-no):not(.brand-en) {
    margin: 20px 0;
    color: var(--soft);
    font-size: 13px;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2%;
    margin: 2px 0 18px;
}

.product-row > a {
    height: 0;
    padding-top: 100%;
    position: relative;
    transition: all .3s;
}

.product-row > a:hover {
    opacity: .8;
    box-shadow: 1px 2px 4px var(--line);
}

.product-row > a:active {
    opacity: .95;
    box-shadow: .5px 1px 2px var(--line);
}

.product-row > a img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--line);
}


.detail-link {
    display: flex;
    margin-top: auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.detail-link:hover {
    color: var(--gold-dark);
}

.brand-note {
    margin: 52px 0 0;
    color: #777069;
    font-size: 11px;
    text-align: center;
}

.comparison-section {
    padding: 120px 0;
    background: #fff;
}

.comparison-inner {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    min-height: 520px;
    margin: auto;
    grid-template-columns: 48% 52%;
    border: 1px solid var(--line);
}

.comparison-image {
    overflow: hidden;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 80px);
}

.comparison-copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(25px,3vw,42px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .07em;
}

.comparison-copy>p:not(.eyebrow) {
    margin: 25px 0 31px;
    color: var(--soft);
    font-size: 14px;
}

.comparison-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
}

.button {
    display: inline-flex;
    min-width: 220px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .11em;
    transition: .2s;
}

.button-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.button-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.site-footer {
    padding: 46px 0;
    border-top: 1px solid var(--line);
}

.site-footer-inner {
    display: flex;
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 11px;
}

.site-footer small {
    color: #918a83;
    font-size: 9px;
}

.mobile-reserve {
    display: none;
}

.page-top {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, .94);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: .2s;
}

.page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s, transform .7s;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.btn07 {
    width: 60%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    /* border-radius: 5px; */
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    background: linear-gradient(0deg, #94733e 0%, #e0c79e 100%);
    padding: 0;
    border: none;
    text-decoration: none;
}
.btn07::before,
.btn07::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #896327;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.btn07::before {
    height: 0%;
    width: 2px;
}
.btn07::after {
    width: 0%;
    height: 2px;
}
.btn07 .btn_inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.2em;
}
.btn07 .btn_inner::before,
.btn07 .btn_inner::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #896327;
    box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, .9), -4px -4px 5px 0px rgba(255, 255, 255, .9), 7px 7px 20px 0px rgba(0, 0, 0, .2), 4px 4px 5px 0px rgba(0, 0, 0, .3);
    transition: all 0.3s ease;
}
.btn07 .btn_inner::before {
    width: 2px;
    height: 0%;
}
.btn07 .btn_inner::after {
    height: 2px;
    width: 0%;
}
.btn07 .arrow {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    right: 1em;
    top: 50%;
    border-top: .6em solid transparent;
    border-bottom: .6em solid transparent;
    border-right: 1px solid transparent;
    border-left: .6em solid white;
    transition: all 0.3s ease;
}
.btn07:hover {
    color: #896327;
    background: white !important;
}
.btn07:hover::before {
    height: 100%;
}
.btn07:hover::after {
    width: 100%;
}
.btn07:hover .btn_inner::before {
    height: 100%;
}
.btn07:hover .btn_inner::after {
    width: 100%;
}
.btn07:hover .arrow {
    border-left: .6em solid #896327;
    right: .7em;
}

@media(max-width:1080px) {
    .brand-list2 {
        max-width: 450px;
        margin: 72px auto 0;
        gap: 32px;
    }

    .brand-entry {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .brand-image {
        height: 270px;
    }

    .brand-copy {
        min-height: 340px;
    }

    .global-nav {
        gap: 20px;
    }
    
    .btn07 {
        width: 100%;
    }
    
    .product-row {
        grid-template-columns: repeat(3, 2fr);
    }
}

@media screen and (max-width: 1000px) {
    .header-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
    }
}

@media(max-width:860px) {
    :root {
        --header: 66px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .header-reserve {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 48px;
        height: 56px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
    }

    .menu-toggle>span {
        display: flex;
        width: 23px;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle i {
        display: block;
        height: 1px;
        background: var(--ink);
    }

    .menu-toggle small {
        font-size: 7px;
        letter-spacing: .13em;
    }

    .global-nav {
        position: fixed;
        top: var(--header);
        left: 0;
        display: flex;
        width: 100%;
        height: calc(100vh - var(--header));
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 30px 27px 100px;
        background: rgba(255, 255, 255, .99);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .23s;
    }

    .global-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .global-nav a {
        padding: 18px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
    }

    .page-hero {
        height: auto;
        grid-template-columns: 1fr;
    }

    .page-hero-image {
        height: 220px;
        min-height: 0;
        background-image: url("https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/bridal/assets/images/bridallist/hero-hands.webp");
        background-position: center 62%;
        background-size: cover;
        background-repeat: no-repeat;
        order: -1;
    }

    .page-hero-copy {
        text-align: center;
        align-items: center;
        padding: 34px 28px 40px;
    }

    .brand-list2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-inner {
        grid-template-columns: 1fr;
    }

    .comparison-image {
        height: 380px;
    }

    .mobile-reserve {
        position: fixed;
        z-index: 999;
        left: 14px;
        right: 14px;
        bottom: 12px;
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: center;
        gap: 28px;
        background: var(--gold);
        color: #fff;
        box-shadow: 0 10px 30px rgba(67, 47, 18, .22);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .1em;
    }

    .page-top {
        bottom: 80px;
    }

    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .product-row {
        grid-template-columns: repeat(3, 2fr);
    }
}

@media(max-width:580px) {

    .container,
    .narrow {
        width: calc(100% - 34px);
    }

    .breadcrumb ol {
        width: calc(100% - 34px);
    }

    .page-hero-image {
        height: 190px;
        min-height: 0;
    }

    .page-hero-copy {
        padding: 30px 20px 36px;
    }

    .page-hero h1 {
        font-size: 28px;
        line-height: 1.5;
    }

    .page-hero-copy>p:not(.eyebrow) {
        margin: 14px 0 16px;
        font-size: 12px;
        line-height: 1.75;
    }

    .intro-section {
        padding: 82px 0;
    }

    .intro-section h2 {
        font-size: 26px;
    }

    .brand-list-section {
        padding: 82px 0;
    }

    .brand-list2 {
        margin-top: 46px;
    }

    .brand-image {
        height: 230px;
    }

    .brand-copy {
        min-height: 0;
        padding: 30px 23px 24px;
    }

    .brand-copy h3 {
        font-size: 21px;
    }

    .product-row img {
        height: 70px;
    }

    .comparison-section {
        padding: 82px 0;
    }

    .comparison-inner {
        width: calc(100% - 34px);
    }

    .comparison-image {
        height: 270px;
    }

    .comparison-copy {
        padding: 36px 23px;
    }

    .comparison-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .comparison-actions .button {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}