@charset "UTF-8";

:root {
    --brand: #D4AF37;
    /* Gold */
    --brand-2: #c9a43f;
    --brand-3: #d8c672;
    /* Darker gold (hover, shadows) */
    --bg: #181d24;
    /* Black */
    --bg-2: #0f0f0f;
    /* Section alt */
    --bg-3: #e1e1e1;
    --card: #2a2b2f;
    /* Card background */
    --border: #2a2a2a;
    /* Border */
    --text: #ffffff;
    --text2: #000;
    --text3: #ab8955;
    --text4: #d0a667;
    /* Primary text */
    --muted: #bdbdbd;
    /* Secondary text */
}

html,
body {
    background: #fff;
    color: var(--text2);
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.font_min,
h1,
.section-title {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media (max-width:576px) {
    p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.bg_dark {
    background-color: var(--bg) !important;
}

.text_brand {
    color: var(--text3) !important;
}

.bg_dark .text_brand {
    color: var(--text4) !important;
}

/* NAV */
.navbar {
    background: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1020;
}

#origin-header.change-color {
    background: #181d24;
    backdrop-filter: saturate(150%) blur(6px);
}

#origin-header:has(.navbar-collapse.show) {
    background: #181d24;
    backdrop-filter: saturate(150%) blur(6px);
}

li.nav-item {
    text-align: center;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: var(--text);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand);
}

.navbar .nav-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 15px;
}


.navbar .nav-link span:nth-child(1) {
    position: absolute;
    display: none;
}

.navbar .nav-link:hover span:nth-child(1) {
    display: inline-block;
}

.navbar .nav-link:hover span:nth-child(2) {
    opacity: 0;
}

.logo-placeholder {
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: .5px;
}

.logo-placeholder img {
    height: auto;
    width: 100%;
}

footer .logo-placeholder {
    width: 200px;
    height: auto;
}

.logo-catch {
    display: none;
}

@media (min-width:576px) {
    .logo-catch {
        display: inline-block;
        font-weight: 500;
        color: #c6b55f;
        /* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
        letter-spacing: -0.1em;
        transform: scale(0.97, 1.0);
        padding-top: 0.1em;
    }
}

.logo-catch {
    font-weight: 500;
    color: #c6b55f;
    /* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
    letter-spacing: -0.1em;
    transform: scale(0.97, 1.0);
    padding-top: 0.1em;
}

/* BUTTONS & LINKS */
/*.btn-brand {
    background: var(--brand);
    color: #000;
    border: none;
}

.btn-brand:hover {
    background: var(--brand-2);
    color: #000;
}*/

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.link-brand {
    color: var(--brand);
    text-decoration: none;
}

.link-brand:hover {
    text-decoration: underline;
}

.badge-brand {
    background: rgba(212, 175, 55, .12);
    color: var(--brand);
    border: 1px solid rgba(212, 175, 55, .3);
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
}



.kv {
    font-size: clamp(25px, 4vw, 48px);
    line-height: 1.8;
    font-weight: 700;
}

.kv-sub {
    font-size: clamp(16px, 2.1vw, 18px);
    color: var(--muted);
}

/* SECTIONS */
.section {
    padding: 4.8rem 0;
    position: relative;
}

.section.alt {
    background: var(--bg-2);
}

.section-title {
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.7;
    font-size: 2.0rem;
    letter-spacing: 0.2em;
}

@media (min-width:576px) {

    .section-title {
        font-size: 2.2rem;
    }

}

@media (min-width:992px) {

    .section-title {
        font-size: 2.5rem;
    }

    .section-title.big {
        font-size: 3rem;
    }
}

.section-title .text_brand {
    font-size: 110%;
}

.section-sub {
    color: #111;
    margin-bottom: 2rem;
    line-height: 2.2em;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.section.alt .section-sub {
    color: #fff;
}

/* CARDS / TABLE */
.card {
    background: #ffffffe6;
    border: none;
    box-shadow: 0 15px 15px rgba(0, 0, 0, .10);
    border-radius: 2px;
}

.icon-round {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #32353d;
    color: var(--brand);
}

.table {
    --bs-table-bg: transparent;
}

.table th,
.table td {
    color: var(--text);
    border-color: var(--border);
}

.ratio img {
    object-fit: cover;
}

/* GALLERY */
.gallery img {
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    background: #1f1f1f;
    overflow-x: hidden;
}

.footer a {
    white-space: nowrap;
}

.footeraddress {
    color: #d8c672;
    line-height: 2.0;
    font-size: 0.9em;
}


.footernavi a {
    color: #FFF;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .footernavi a {
        transition: none;
    }
}

.footernavi a:focus,
.footernavi a:hover {
    color: var(--brand);
}

.footernavi a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.footernavi a.disabled,
.footernavi a:disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}

/* Smooth scroll offset */
:target {
    scroll-margin-top: 90px;
}

/* カード本文のフォントカラーを .section-sub と同じ var(--muted) に統一 */
.card p,
.card li,
.card small,
.card .text-muted {
    color: #232323 !important;
    font-size: 1em;
}

.card li {
    font-size: 0.95em;
}

/* 見出しは白のまま強調 */
.card h3,
.card .h6 {
    color: #232323 !important;
}

.card .h5 {
    color: #ffffff !important;
    /*    background: #212427;*/
    padding: 5px;
    text-align: center;
    font-size: 1.1rem;
}

/* リンクボタン */
.btn_box {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 0;
    outline: none;
    color: #fff;
    background: #c9af50;
    position: relative;
    border-radius: 3px;
    transition: color 0.3s ease;
    margin: auto;
    font-weight: 600;
    padding: 1.5em 3em;
    font-size: 0.95em;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
}

.btn_box:hover {
    background: #d4af3700;
    color: #c9af50;
}

.btn_box:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn_box::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff00;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.3s ease;
    transition-property: transform;
    border: 1px solid #c9af50;
    border-radius: 3px;
}

.btn_text {
    position: relative;
}

.btn-brand {
    position: relative;
    border: 1px solid #c9af50;
    border-radius: 1px;
    transition: color 0.3s ease;
    color: #fff;
    background: #c9af50;
    padding: 0.5rem 1.5rem;
}

.btn-brand:hover {
    color: #c9af50 !important;

}

.btn-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-brand::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff00;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.3s ease;
    transition-property: transform;
    border: 1px solid #D4AF37;
    border-radius: 3px;
}

#gotocontact a {
    right: 0;
    bottom: calc(50vh - 10em);
    position: relative;
    border-radius: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #c9af50;
    color: #fff;
    padding: 7px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-feature-settings: initial;
    font-size: 0.8em;
    text-align: center;
    transition: color 0.3s ease;
    z-index: 10;
}

#gotocontact a:hover {
    background: #d4af3700;
    color: #c9af50;
}

#gotocontact a:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

#gotocontact a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff00 !important;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.3s ease;
    transition-property: transform;
    border: 1px solid #c9af50;
    border-radius: 3px;
}

#gotocontact .btn_text {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
}

#gotocontact .btn_text i {
    padding-left: 3px;
}

a.backtotop {
    right: 16px;
    bottom: 16px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (orientation: portrait) {

    #gotocontact,
    #gotocontact a {
        display: none;
    }

    a.backtotop {
        display: none;
    }
}

.copyright {
    color: var(--muted);
    padding-right: 6rem;
    font-size: 0.8em;
}

.imgbox img {
    max-width: 100%;
    max-height: 100%;
}

.pagetop {
    height: 50dvh;
    position: relative;
}

@media screen and (orientation: portrait) {

    .pagetop {
        height: 40dvh;
    }
}

.pagetoptitle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: radial-gradient(rgb(0 0 0 / 28%), rgb(0 0 0 / 57%));
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.pagetoptitle h1 {
    font-size: 2.5rem;
    line-height: 1.7;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pagetoptitle h1 span {
    display: block;
    font-size: 1.3rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    letter-spacing: 0;
}

@media (min-width:576px) {
    .pagetoptitle h1 {
        font-size: 3.5rem;
    }

    .pagetoptitle h1 span {
        font-size: 1.6rem;
    }
}

#contact_wrap {
    width: 100%;
    height: 50vh;
    height: 50dvh;
    position: relative;
    background-image: url(../img/topimg__1.jpg);
    background-size: cover;
    background-position: 50% 40%;
}

@media screen and (orientation: portrait) {
    #contact_wrap {
        height: 30vh;
        height: 30dvh;
    }

}

.contact_conts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.contact_conts .container {
    height: 100%;
}

.contact_conts .container>div {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    line-height: 3.0;
}

.contact_conts .container>div:nth-child(1) {
    align-items: center;
}

.contact_conts .container>div:nth-child(2) {
    align-items: end;
    justify-content: end;
}

@media screen and (orientation: portrait) {
    .contact_conts .container>div:nth-child(2) {
        align-items: center;
        justify-content: center;
    }


}

.contact_conts .container h3 {
    font-size: 1.4rem;
    background: #1111114f;
    padding: 1rem 4rem;
    border: 1px solid #ffffff;
}

.contact_conts .container h3 span {
    font-size: 1.0rem;
}

@media (min-width:992px) {
    .contact_conts .container h3 {
        font-size: 2.5rem;
    }

    .contact_conts .container h3 span {
        font-size: 1.2rem;
    }
}

.contact_conts .container p {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.contact_conts .container p span {
    font-size: 1.0rem;
    letter-spacing: 0.1em;
}

@media (min-width:992px) {
    .contact_conts .container p {
        font-size: 2.5rem;
    }

    .contact_conts .container p span {
        font-size: 1.2rem;
    }
}

#contact_wrap a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #181d2487;
    background-blend-mode: hue;
    transition: color 0.3s ease;
}

#contact_wrap a:hover {
    background-color: #181d2442;
    background-blend-mode: hue;
}

.section_heading {
    font-weight: 700;
    font-size: 1.3rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    letter-spacing: 0.05em;
}

.section_heading span span {
    font-size: 3.5rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    top: 0.2rem;
    font-style: italic;
}