@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');


:root {
    --tfb-charcoal: #2C2C2C;
    --tfb-charcoal-deep: #181818;
    --tfb-off-white: #F4F4F2;
    --tfb-warm-white: #ECE6DA;
    --tfb-gold: #C8A86B;
    --tfb-gold-dark: #9B7A3E;
    --tfb-ink-soft: rgba(44, 44, 44, 0.72);
    --tfb-line: rgba(200, 168, 107, 0.28);
    --tfb-shadow: 0 18px 44px rgba(24, 24, 24, 0.16);
}
html {
    font-size: 62.5%;
    min-height: 100%;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}

body {
    margin: 0;
    padding: 0;
    background: #F4F4F2;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: clamp(15px, 1.45rem + 0.08vw, 17px);
    min-height: 100vh;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

a {
    display: block;
    color: #222;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    outline: none;
}

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

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
form {
    margin: 0;
    padding: 0;
}

p {
    text-align: left;
    line-height: 1.75;
}

p + p {
    margin-top: 1em;
}

button,
input,
select,
textarea {
    font: inherit;
}

select {
    -webkit-appearance: auto;
    appearance: auto;
}

textarea {
    resize: vertical;
}

/*===================================
section
===================================*/
.section {
    position: relative;
    padding-top: clamp(64px, 8vw, 100px);
    padding-bottom: clamp(64px, 8vw, 100px);
    z-index: 1;
}

.section:not(._bg) + .section:not(._bg) {
    padding-top: 0;
}

._bg {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/*===================================
wrap
===================================*/
._container {
    width: min(1600px, 92%);
    margin: 0 auto;
}

._container + ._container {
    margin-top: 5em;
}

._box + ._box {
    margin-top: 3em;
}

._box_child + ._box_child {
    margin-top: 2em;
}

/*===================================
heading
===================================*/
.heading01,
.heading02,
.heading03 {
    font-weight: 400;
}

.heading01 {
    line-height: 1.2;
}

.heading01 span {
    display: block;
    font-size: 0.5em;
    opacity: 0.5;
}

.heading02 {
    font-size: clamp(3rem, 5vw, 5.8rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.heading03 {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.2;
}

/*===================================
btn
===================================*/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

* + .btns {
    margin-top: 2em;
}

.btn {
    border: 1px solid #222;
    background: transparent;
    color: #222;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 1.3rem + 0.25vw, 1.6rem);
    letter-spacing: 0.08em;
    line-height: 1.4;
    position: relative;
    padding: 12px 28px;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    text-align: center;
    user-select: none;
    vertical-align: middle;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible,
#header .nav_openbtn:focus-visible,
#nav a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

.btn_type01 {
    background-color: #1F2423;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 100vh;
}

.btn_type01:hover {
    background-color: #d5e1c2;
    color: #1F2423;
    border-color: #d5e1c2;
}

.btn_type02 {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100vh;
}

.btn_type02:hover {
    background-color: #d5e1c2;
    color: #1F2423;
    border-color: #d5e1c2;
}

/*===================================
header
===================================*/
#header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    background: rgba(31, 36, 35, 0.84);
    border-radius: 6px;
    width: auto;
    height: 64px;
    z-index: 999;
    transition: top 0.35s ease, left 0.35s ease, right 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
}

body.nav-open #header {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(31, 36, 35, 0.98);
}

#header .header-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
}

#header .header-container .logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: auto;
}

#header .header-container .logo a {
    font-size: clamp(1.8rem, 4.4vw, 2.6rem);
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}

#header #pc_menu_list {
    display: none;
}

#header .nav_openbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    cursor: pointer;
    width: 48px;
    height: 48px;
    transition: all 0.4s;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

#header .nav_openbtn .openbtn_area {
    position: relative;
    width: 22px;
    height: 14px;
}

#header .nav_openbtn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    height: 2px;
    border-radius: 2px;
    width: 100%;
    background: #fff;
    transition: transform 0.4s ease, top 0.4s ease, opacity 0.4s ease;
    transform: translateX(-50%);
}

#header .nav_openbtn span:nth-of-type(1) {
    top: 1px;
}

#header .nav_openbtn span:nth-of-type(2) {
    top: 11px;
}

#header .nav_openbtn.active span:nth-of-type(1) {
    top: 6px;
    transform: translateX(-50%) rotate(45deg);
}

#header .nav_openbtn.active span:nth-of-type(2) {
    top: 6px;
    transform: translateX(-50%) rotate(-45deg);
}

#nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(43, 53, 55, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: calc(88px + env(safe-area-inset-top)) 24px max(32px, env(safe-area-inset-bottom)) 24px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    z-index: 1000;
}

#nav.panelactive {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#nav .menu-logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.1;
    padding-bottom: 1.2rem;
    opacity: 1;
}

#nav #menu_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 0 0;
    width: 100%;
}

#nav #menu_list ._item {
    width: 100%;
    min-height: auto;
}

#nav #menu_list ._item a {
    color: #fff;
    font-size: clamp(2.6rem, 8vw, 4.6rem);
    font-weight: 400;
    line-height: 1.08;
    padding: 0.15em 0;
}

#nav .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: auto;
    padding-top: 32px;
    opacity: 1;
}

#nav .header-actions a {
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100vh;
    color: #fff;
    padding: 1rem 1.8rem;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
}

@media screen and (min-width: 768px) {
    #header {
        height: 68px;
    }

    #header .header-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #header .header-container .logo a {
        font-size: clamp(2rem, 2.1vw, 2.6rem);
    }

    #nav {
        padding-left: 40px;
        padding-right: 40px;
    }

    #nav #menu_list {
        gap: 16px;
    }

    #nav #menu_list ._item a {
        font-size: clamp(3rem, 5vw, 4.8rem);
    }
}

@media screen and (min-width: 960px) {
    #header {
        top: 16px;
        left: 16px;
        right: 16px;
        height: 72px;
        border-radius: 6px;
    }

    body.nav-open #header {
        top: 16px;
        left: 16px;
        right: 16px;
        border-radius: 6px;
        background: rgba(31, 36, 35, 0.84);
    }

    #header .header-container {
        padding-right: 32px;
        gap: 24px;
    }

    #header .nav_openbtn {
        display: none;
    }

    #header #pc_menu_list {
        display: block;
        margin-left: auto;
    }

    #header #pc_menu_list ._list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(8px, 1.4vw, 20px);
    }

    #header #pc_menu_list ._list ._item {
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.3s ease;
    }

    #header #pc_menu_list ._list ._item a {
        color: #fff;
        font-size: clamp(1.3rem, 1rem + 0.35vw, 1.6rem);
        padding: 0.4rem 0.2rem;
        white-space: nowrap;
    }

    #header #pc_menu_list ._list ._item:first-child {
        border-bottom: 1px solid #fff;
    }

    #header #pc_menu_list ._list:hover ._item:first-child {
        border-bottom: 1px solid transparent;
    }

    #header #pc_menu_list ._list ._item:hover {
        border-bottom: 1px solid #fff;
    }

    #nav {
        display: none;
    }
}

/*===================================
main
===================================*/
#main {
    overflow: hidden;
}

/*===================================
footer
===================================*/
#footer {
    background: #1F2423;
    padding: clamp(32px, 4vw, 56px) 4%;
}

#footer ._container .footer_link ._list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

#footer ._container .footer_link ._list ._item {
    width: calc((100% - 24px) / 2);
}

#footer ._container .footer_link ._list ._item a {
    color: #fff;
    font-weight: 400;
    padding: 6px 0;
    font-size: clamp(1.3rem, 1rem + 0.35vw, 1.6rem);
}

#footer ._container .footer_logo {
    margin-top: 24px;
}

#footer ._container .footer_logo a {
    color: rgba(255, 255, 255, 0.12);
    font-size: clamp(4.8rem, 12vw, 12rem);
    font-weight: 200;
    letter-spacing: clamp(2px, 0.5vw, 8px);
    line-height: 0.98;
}

#footer ._container .footer_logo a span {
    display: block;
    color: #fff;
    font-size: clamp(1.2rem, 1rem + 0.35vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-top: 12px;
}

#footer ._container .footer_bottom_link {
    margin-top: 2em;
}

#footer ._container .footer_bottom_link ._list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
}

#footer ._container .footer_bottom_link ._list ._item {
    width: calc((100% - 24px) / 2);
}

#footer ._container .footer_bottom_link ._list ._item a {
    color: #fff;
    font-size: clamp(1.2rem, 0.95rem + 0.35vw, 1.5rem);
    font-weight: 400;
}

#footer ._container #small {
    color: #fff;
    display: block;
    font-size: clamp(1.2rem, 0.95rem + 0.35vw, 1.5rem);
    font-weight: 400;
    margin-top: 2em;
}

@media screen and (min-width: 768px) {
    #footer ._container .footer_link ._list ._item {
        width: calc((100% - 48px) / 3);
    }
}

@media screen and (min-width: 960px) {
    #footer ._container .footer_link ._list ._item {
        width: calc((100% - 72px) / 4);
    }

    #footer ._container .footer_bottom_link ._list ._item {
        width: auto;
    }
}

/*===================================
page top
===================================*/
#page_top {
    position: fixed;
    right: 10px;
    bottom: 16px;
    z-index: 90;
    opacity: 0;
    transform: translateY(100px);
}

#page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(30, 39, 43, 0.8);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
}

#page_top a:hover {
    background: #1F2423;
}

#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}


/*===================================
current navigation state
===================================*/
@media screen and (min-width: 960px) {
    #header #pc_menu_list ._list ._item:first-child {
        border-bottom-color: transparent;
    }

    #header #pc_menu_list ._list ._item.is-current {
        border-bottom-color: #fff;
    }

    #header #pc_menu_list ._list:hover ._item.is-current {
        border-bottom-color: #fff;
    }
}

#nav #menu_list ._item.is-current a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.admin-bar #header {
    top: calc(16px + 32px);
}

body.admin-bar.nav-open #header {
    top: calc(16px + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar #header {
        top: calc(16px + 46px);
    }
}

/*===================================
True Form Build Co. brand alignment
===================================*/
body {
    background: var(--tfb-off-white);
    color: var(--tfb-charcoal);
    font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: var(--tfb-charcoal);
}

.heading01,
.heading02,
.heading03 {
    color: inherit;
    font-family: "EB Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.btn {
    border-color: var(--tfb-charcoal);
    color: var(--tfb-charcoal);
    border-radius: 100vh;
    font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.btn:hover,
.btn_type01:hover,
.btn_type02:hover {
    background-color: var(--tfb-gold);
    border-color: var(--tfb-gold);
    color: var(--tfb-charcoal);
}

.btn_type01 {
    background-color: var(--tfb-charcoal);
    color: var(--tfb-off-white);
}

.btn_type02 {
    color: var(--tfb-off-white);
    border-color: var(--tfb-gold);
}

#header {
    background: rgba(44, 44, 44, 0.9);
    border: 1px solid rgba(200, 168, 107, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

body.nav-open #header {
    background: rgba(24, 24, 24, 0.98);
}

#header .header-container .logo a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    font-size: 0;
    line-height: 1;
}

#header .site-logo-img {
    width: auto;
    height: clamp(28px, 3.2vw, 38px);
    max-width: min(260px, 55vw);
}

#nav {
    background: rgba(24, 24, 24, 0.92);
}

#nav .menu-logo {
    border-bottom-color: rgba(200, 168, 107, 0.42);
    padding-bottom: 1.6rem;
}

#nav .menu-logo .site-logo-img {
    width: auto;
    height: clamp(38px, 9vw, 56px);
    max-width: min(360px, 82vw);
}

#nav #menu_list ._item a,
#nav .header-actions a,
#header #pc_menu_list ._list ._item a {
    color: var(--tfb-off-white);
    font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}

#header .nav_openbtn span {
    background: var(--tfb-gold);
}

#nav .header-actions a {
    border-color: var(--tfb-gold);
}

@media screen and (min-width: 960px) {
    body.nav-open #header {
        background: rgba(44, 44, 44, 0.9);
    }

    #header #pc_menu_list ._list ._item:first-child,
    #header #pc_menu_list ._list ._item.is-current,
    #header #pc_menu_list ._list:hover ._item.is-current,
    #header #pc_menu_list ._list ._item:hover {
        border-bottom-color: var(--tfb-gold);
    }
}

#footer {
    background: var(--tfb-charcoal);
    border-top: 1px solid rgba(200, 168, 107, 0.3);
}

#footer ._container .footer_link ._list ._item a,
#footer ._container .footer_bottom_link ._list ._item a,
#footer ._container #small {
    color: var(--tfb-off-white);
}

#footer ._container .footer_logo a {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0;
    letter-spacing: 0;
    line-height: 1;
}

#footer .footer-logo-img {
    width: min(420px, 82vw);
    height: auto;
    opacity: 1;
}

#footer ._container .footer_logo a span {
    color: var(--tfb-gold);
    font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.1rem, 0.95rem + 0.3vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0;
}

#page_top a {
    background: rgba(44, 44, 44, 0.86);
    color: var(--tfb-off-white);
    border: 1px solid rgba(200, 168, 107, 0.45);
}

#page_top a:hover {
    background: var(--tfb-gold);
    color: var(--tfb-charcoal);
}
