@charset "utt-8";

/* コピペ用コード */
.font-size-dummy {
    /* 12px */
    font-size: 0.75rem;
    /* 13px */
    font-size: 0.8125rem;
    /* 14px */
    font-size: 0.875rem;
    /* 16px */
    font-size: 1rem;
    /* 18px */
    font-size: 1.125rem;
    /* 20px */
    font-size: 1.25rem;
    /* 24px */
    font-size: 1.5rem;
    /* 28px */
    font-size: 1.75rem;
    /* 32px */
    font-size: 2rem;
    /* 36px */
    font-size: 2.25rem;
    /* 40px */
    font-size: 2.5rem;
    /* 48px */
    font-size: 3rem;
    /* 56px */
    font-size: 3.5rem;
    /* 64px */
    font-size: 4rem;
}

:root {
    --black: #0D0D0D;
    --dark: #3a3a3a;
    --offwhite: #D9D9D9;
    --white: #ffffff;
    --gold: #D4AF37;
    --gold-hover: #e8c452;
    --font-jp: 'Noto Serif JP', serif;
    --font-en: 'Playfair Display', serif;
}

html {
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--offwhite);
    line-height: 1.6;
    letter-spacing: 0.08em;
    font-family: var(--font-jp);
    overflow-x: hidden;
}

p:not([class]) {
    margin-bottom: 1em;
}

a {
    transition: .2s;
}

@media (hover: hover) and (pointer: fine) {
    a:hover {
        color: var(--gold);
    }
}

/* フェードイン */
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadein.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bg {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: max(60vw, 800px);
    aspect-ratio: 3 / 2;
    background: url(../img/bg.webp) center center / cover;
    z-index: -20;
    opacity: .6;
}


#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    margin-bottom: 120px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding-left: 14px;
    background: rgba(13, 13, 13, 0.6);
}

.header-logo {
    width: 74px;
    aspect-ratio: 1 / 1;
}

.header-logo a {
    padding: 0.2em;
}

.header-logo img {
    width: 100%;
    height: auto;
}

.header-nav__list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: var(--font-en);
}

.header-nav__item a {
    padding: 0.6em;
    font-weight: bold;
}

.contact-sp {
    display: none;
}

.header-nav__item.contact-pc {
    margin-left: 24px;
}

.header-nav__item.contact-pc a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 80px;
    aspect-ratio: 1 / 1;
    line-height: 1;
    padding: 0;
    background: var(--gold);
    font-size: 15px;
    color: var(--white);
}

.header-nav__item.contact-pc a::before {
    content: "";
    display: block;
    width: 34%;
    aspect-ratio: 1 / 1;
    background: url(../img/mail-icon.png) center center / contain no-repeat;
}

@media (hover: hover) and (pointer: fine) {
    .header-nav__item.contact-pc a:hover {
        background: var(--gold-hover);
    }
}

.header-sns__icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-sns__icon a {
    width: 36px;
    padding: 0.4em;
    aspect-ratio: 1 / 1;
}

@media (hover: hover) and (pointer: fine) {
    .header-sns__icon a:hover {
        opacity: .6;
    }
}

.hamburger {
    display: none;
}


/* フッター */
.footer-contact {
    position: relative;
    padding: 90px 0;
    background: #d4af3766
}

.footer-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/contact-bg.png) center center / cover no-repeat;
    opacity: .07;
    z-index: 0;
}

.footer-contact__inner {
    position: relative;
    z-index: 2;
}

.footer-contact__head.t-h2 {
    text-align: center;
    color: var(--offwhite);
}

.footer .more-btn {
    color: var(--offwhite);
}

.footer-container {
    padding: 40px 0;
}

.footer-inner {
    width: min(800px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    padding: 0 36px;
    margin-bottom: 40px;
}

.footer-block {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info {
    width: fit-content;
    font-size: 14px;
}

.footer-logo {
    width: 110px;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}

.footer-address {
    font-size: 14px;
}

.footer-nav {
    width: fit-content;
    flex-shrink: 0;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: bold;
    font-family: var(--font-en);
    font-size: 18px;
}

.footer-nav__item a {
    display: inline-block;
    padding: .2em .6em;
}

.footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-sns__icon {}


.footer-sns__icon a {
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 8px;
    background: var(--offwhite);
    transition: .4s;
}

@media (hover: hover) and (pointer: fine) {
    .footer-sns__icon a:hover {
        opacity: .6;
    }
}

.footer-sns__icon img {}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(800px, calc(100% - 48px));
    padding: 0 36px;
    margin: 0 auto;
}

.footer-bottom__inner {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 30px;
    font-size: 13px;
}

.footer-bottom__inner a {
    width: fit-content;
}

.footer-copyright {
    font-size: 11px;
    text-align: center;
}

/* ───────────────────────────────────
// front
───────────────────────────────────*/
/* 共通 */
.t-h2,
.subpage-h2 {
    color: var(--gold);
    font-size: 70px;
    font-family: var(--font-en);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1.15em;
    line-height: 1.2;
}

.t-h2.right {
    text-align: right;
}

.t-h2 span {
    display: inline-block;
}

.subpage-h2.center {
    text-align: center;
}

.more-btn {
    font-family: var(--font-en);
    color: var(--gold);
    transition: padding 0.3s ease;
    will-change: padding;
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    height: 44px;
    margin-top: 40px;
    padding-right: 22px;
    transition: 0.3s ease;
}

.footer-contact__inner .more-btn {
    margin: 0 auto;
}

@media (hover: hover) and (pointer: fine) {
    a.more-btn:hover {
        margin-right: -26px;
        padding-left: 26px;
    }

    a.footer-contact:hover .more-btn {
        padding-left: 26px;
    }
}



.more-btn::before {
    position: relative;
    content: "";
    width: 53px;
    height: 7px;
    border-bottom: 1px solid var(--gold);
    border-right: 2px solid var(--gold);
    margin-top: -4px;
    transform: skew(60deg);
    z-index: 1;
    transition: 0.3s ease;
}

.more-btn span {
    position: relative;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    order: -1;
    z-index: 1;
    transition: 0.3s ease;
}



.more-btn::after {
    border-radius: 22px;
    transition: width 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    will-change: width;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    width: 44px;
    border: 2px solid #707070;
}

@media (hover: hover) and (pointer: fine) {

    a.more-btn:hover::before,
    a.footer-contact:hover .more-btn::before {
        border-color: var(--black);
    }

    a.more-btn:hover span,
    a.footer-contact:hover .more-btn span {
        color: var(--black);
    }

    a.more-btn:hover::after,
    a.footer-contact:hover .more-btn::after {
        border-color: var(--offwhite);
        background-color: var(--offwhite);
        width: 100%;
    }
}


.fv-container {
    width: min(1420px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.fv-inner {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.services-page .fv-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.fv-head {
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.fv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.fv-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.fv-head h1 {
    padding: 60px 40px;
    color: var(--gold);
    font-family: var(--font-en);
    font-size: 70px;
    line-height: 1;

    word-break: keep-all;
    overflow-wrap: break-word;
}

.fv-mokuji {
    font-size: 18px;
    max-width: 360px;
    flex: 1;
}

.fv-mokuji li {
    border-top: 1px solid var(--offwhite);
}

.fv-mokuji li:last-of-type {
    border-bottom: 1px solid var(--offwhite);
}

.fv-mokuji a {
    position: relative;
    padding: .6em 1.6em .6em .4em;
}

.fv-mokuji a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}


.fv-block {
    max-width: 620px;
}

.fv-subhead {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 1em;
    font-weight: bold;
}

.fv-text {
    font-size: 18px;
}


@media (max-width: 1000px) {
    .services-page .fv-inner {
        flex-direction: column-reverse;
        gap: 120px;
    }

    .fv-block {
        max-width: 100%;
    }

    .fv-mokuji {
        max-width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .fv-mokuji li {
        border-bottom: 1px solid var(--offwhite);
    }
}


/* mv */
.mv {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.mv-wrap {
    padding: 120px 0 30px;
}

.catch {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
}


.catch h1 {
    color: var(--gold);
    font-family: var(--font-en);
    font-size: max(74px, 6vw);
    line-height: 1;
    flex-shrink: 0;
}

.catch__br {
    display: none;
}

.catch span {
    display: inline-block;
}

.catch-sub {
    font-size: max(16px, 1.1vw);
}

@media (max-width: 1160px) {
    .catch {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .catch-sub__br {
        display: none;
    }
}

@media (max-width: 940px) {
    .catch h1 {
        font-size: min(7.86vw, 74px);
    }
}

.mv-img {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    background: url(../img/mv.webp) center center / cover no-repeat;
}

.mv-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

section {
    padding: 120px 0;
}

section>div:not(.fv-container) {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

#sub-page section:first-of-type {
    padding-top: 120px;
}

/* t-about */
.t-about {
    padding-top: 160px;
}

.t-about-head {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 1em;
    font-weight: bold;
}

.t-about-box {
    max-width: 500px;
    margin-left: auto;
}

.t-about-box p {
    font-size: 18px;
}

.t-about-box p span {
    display: inline-block;
}

.more-btn.right {
    margin-left: auto;
}

.t-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 2.8vw, 30px);
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.t-services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 2.8vw, 30px);
    background: var(--dark);
    text-align: center;
}

.t-services-item__icon {
    width: 70%;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    background: #fff;
    margin-bottom: 10px;
}

.t-services-item__icon.-consulting {
    background: url(../img/consulting-icon.svg) 33% 56% / 104% no-repeat;
}

.t-services-item__icon.-data {
    background: url(../img/data-icon.svg) 12% 85% / 86% no-repeat;
}

.t-services-item__icon.-live {
    background: url(../img/live-icon.svg) 50% -38% / 85% no-repeat;
}

.t-services-item__icon.-sns {
    background: url(../img/sns-icon.svg) 50% 50% / 100% no-repeat;
}


.t-services-item__icon.-recruit {
    background: url(../img/recruit-icon.svg) 50% 45% / 97% no-repeat;
}

.t-services-item__icon.-backoffice {
    background: url(../img/backoffice-icon.svg) 50% 50% / 70% no-repeat;
}

.t-services-item p {
    margin-bottom: 0;
    font-size: clamp(16px, 2vw, 20px);
}

.t-services-item p span {
    display: inline-block;
}

.t-voices-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 1.8vw, 30px);
}

@media (max-width: 1000px) {
    .t-voices-list {
        display: grid;
        margin-right: auto;
        margin-left: auto;
        grid-template-columns: 1fr;
    }
}

.t-voices-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(20px, 3vw, 40px);
    border: 2px solid var(--gold);
    background: var(--dark);
}

.t-voices-item>:last-of-type {
    margin-bottom: 0;
}

.t-voices-item span {
    display: block;
    text-align: right;
}

.t-voices-item p {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

/* aboutページ */
.vision-head {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 1em;
    font-weight: bold;
}

.vision-text {
    font-size: 18px;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px clamp(20px, 7vw, 100px);
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    aspect-ratio: 1 / 1;
    padding: 60px 0;
    border: 2px solid var(--gold);
    background: var(--dark);
    border-radius: 50%;
    width: 100%;
    box-sizing: border-box;
}

.value-item:first-child {
    grid-column: 1 / -1;
    width: calc((100% - clamp(20px, 7vw, 100px)) / 2);
    margin: 0 auto;
}

.value-item__ttl {
    font-size: 26px;
    color: var(--gold);
    text-align: center;
    max-width: 60%;
    margin: 0 auto .8em;
    font-weight: bold;
}

.value-item__ttl span {
    display: inline-block;
}

.value-item p {
    width: 77%;
    margin: 0 auto;
}


@media (max-width: 1000px) {


    .value-list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 700px;
    }

    .value-item {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }

    .value-item:first-child {
        margin: 0;
        width: 100%;
        max-width: 400px;
    }

    .value-item:nth-child(odd) {
        align-self: flex-start;
    }

    .value-item:nth-child(even) {
        align-self: flex-end;
    }


}

/* strengths */
.strengths-list {
    counter-reset: strengths-item;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-right: auto;
    margin-left: auto;
}

.strengths-item {
    --gap: clamp(70px, 14vw, 200px);
    --num-width: 84px;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--gap);
    counter-increment: strengths-item;
}

.strengths-item::before {
    content: counter(strengths-item, decimal-leading-zero);
    color: var(--gold);
    font-family: var(--font-en);
    font-variant-numeric: tabular-nums;
    font-size: 80px;
    line-height: 1;
    text-align: right;
    vertical-align: middle;
    min-width: var(--num-width);
    margin-bottom: 0.4em;
    flex: 1;
    white-space: nowrap;
}

.strengths-item::after {
    position: absolute;
    top: 50%;
    right: calc(min(700px, 100% - var(--gap) - var(--num-width)) + var(--gap) / 2);
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 2px;
    height: 80px;
    background: var(--gold);
}

.strengths-item__inner {
    width: 100%;
    max-width: 700px;
}


.strengths-item__ttl {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: .8em;
    font-weight: bold;
}

.strengths-item__inner p {
    font-size: 18px;
}


.strengths-item__inner>:first-child {
    margin-top: 0;
}

.strengths-item__inner>:last-child {
    margin-bottom: 0;
}

/* message */
.message-inner {
    display: flex;
    justify-content: space-between;
    gap: min(6vw, 100px);
}

.message-block {}


.message-text>p {
    margin-bottom: 60px;
}

.message-profile {
    width: fit-content;
    margin: 0 0 0 auto;
}

.message-position {
    font-size: .88em;
}

.message-name {
    font-size: 1.25em;
}

.message-name span {
    display: inline-block;
    margin-left: 14px;
    font-size: 11px;
}

.message-img {
    max-width: 400px;
    min-width: 340px;
    margin: auto 0 0 0;
}

/* company */

.company-inner {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.company-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company-list dd {
    width: 20%;
}

.company-list dt {
    width: 73%;
}

.company-list dd,
.company-list dt {
    padding: 10px;
    border-top: 1px solid var(--offwhite);
}


.company-list dd:last-of-type,
.company-list dt:last-of-type {
    border-bottom: 1px solid var(--offwhite);
}

/* Servicesページ */
.services {
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.services-container {
    display: flex;
    gap: min(4vw, 100px);
}

.services-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    width: calc(50% - min(6vw, 100px) / 2);
    min-width: 480px;
    flex-shrink: 0;
}


.services>div:nth-of-type(even) {
    flex-direction: row-reverse;
}

.services-ttl {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: .6em;
    font-weight: bold;
}

.services-text {
    font-size: 18px;
}

.services-block {
    margin-top: auto;
    margin-bottom: 0;
}

.services-subttl {
    font-size: 20px;
    margin-bottom: 0.8em;
    color: var(--gold);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .8em;
    font-size: clamp(14px, 1.2vw, 16px);
}

.services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--gold);
    padding: .6em;
    background: var(--dark);
}

.services-item span {
    display: inline-block;
}

.services-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .services {
        gap: 100px;
    }

    .services-page .fv-inner {
        gap: 60px;
    }

    .services-container,
    .services>div:nth-of-type(even) {
        flex-direction: column;
        gap: 40px;
    }

    .services-inner {
        width: 100%;
        min-width: auto;
    }

    .services-img {
        max-width: 500px;
        margin: 0 auto;
    }

}




/* legalページ */
.legal-page .fv-head {
    margin-bottom: 0;
}

.contents {
    padding: 0;
}

.contents-container {
    background: var(--white);
    color: var(--black);
    padding: 40px;
}

.contents-container>:first-child {
    margin-top: 0;
}

.contents-container>:last-child {
    margin-bottom: 0;
}

.contents-container h2 {
    color: var(--gold);
    padding-bottom: 0.4em;
    margin: 2em 0 1em;
    border-bottom: 1px dashed var(--dark);
    font-weight: bold;
}

.contents-container h3 {
    font-weight: bold;
    margin: 2em 0 1em;
}

.contents-container ul:not([class]) {
    list-style-type: disc;
    padding-left: 1.2em;
    margin-bottom: 2em;
}

.contents-container ul:not([class]) li {
    margin: 0.4em 0;
}

.contents-container .bold {
    font-weight: bold;
}

/* コンタクトページ */
.contact-page .fv-head {
    margin-bottom: 0;
}

.contact {
    padding: 0;
}

.contact .contact-container {
    width: min(900px, calc(100% - 48px));
}

.contact-dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    row-gap: 28px;
    column-gap: 24px;
}

.contact-dl dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--gold);
}

.contact-dl dd {
    margin: 0;
    display: flex;
    align-items: center;
}

.required {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #e23b3b;
    border-radius: 3px;
    flex-shrink: 0;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* 入力欄の共通スタイル */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.wpcf7-form-control.wpcf7-textarea {
    resize: vertical;
    min-height: 160px;
}

/* select矢印 */
.wpcf7-form-control.wpcf7-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 22px) center, calc(100% - 16px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.wpcf7-form-control::placeholder {
    color: #999;
}

/* 同意チェックボックス */
.acceptance-wrap {
    text-align: center;
    margin: 40px 0;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.wpcf7-list-item-label a {
    display: inline;
    color: var(--gold);
    text-decoration: underline;
    transition: .2s;
}


@media (hover: hover) and (pointer: fine) {
    .wpcf7-list-item-label a:hover {
        color: var(--gold-hover);
    }

}

/* 送信ボタン */
.wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--gold);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
}


.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--gold-hover);
}

.wpcf7-spinner {
    display: block;
    margin: 16px auto 0;
}

.cf-turnstile {
    text-align: center;
}

.wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    color: #000;
    background: #fff;
}

/* エラー表示 */
.wpcf7-not-valid-tip {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #ff9191;
}

.wpcf7-form-control.wpcf7-not-valid {
    border-color: #e23b3b;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: #2e7e32;
    color: #2e7e32;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
    border-color: #e23b3b;
    color: #e23b3b;
}

/* 404ページ */
.not-found-page h1 span {
    display: inline-block;
}

.not-found-page .fv-inner {
    max-width: 800px;
}