@charset "utf-8";

/* ===== フォント系 ===== */
html,
body {
    /* font-family: "Noto Sans JP", serif; */
    /* font-weight: normal; */
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    letter-spacing: 0.1em;
    overflow-x: clip;
    background-color: #040000;
    color: #EAEAEA;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}

.sans {
    /* font-family: "Noto Sans JP", serif; */
}

.jose {
    /* font-family: "Josefin Sans", "Noto Sans JP", sans-serif; */
    font-optical-sizing: auto;
}

.shippori {
    /* font-family: "Shippori Mincho", serif; */
    /* font-weight: 400; */
}

/* ===== カラー系 ===== */
.fc-white {
    color: #EAEAEA !important;
}

.fc-gold {
    color: #ADA996 !important;
}

.fc-black {
    color: #040000 !important;
}

a {
    color: #EAEAEA;
    transition: all 0.3s;
    text-decoration: none;
}

a:hover {
    color: #EAEAEA;
    opacity: 0.8;
    cursor: pointer;
}

a.fc-gold {
    color: #ADA996 !important;
}

a.fc-gold:hover {
    color: #ADA996;
    opacity: 0.8;
}

/* ===== 共通ユーティリティ ===== */
.text-shadow {
    text-shadow: 2px 2px 4px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 4px #EAEAEA;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.bb-gold02 {
    border-bottom: 1px solid rgba(173, 169, 150, 0.2);
}
.bt-gold02 {
    border-top: 1px solid rgba(173, 169, 150, 0.2);
}

/* ===== 背景 ===== */
.bg-white {
    background-color: #EAEAEA;
}

.bg-black {
    background-color: #040000 !important;
}

.bg-black06 {
    background-color: rgba(0, 0, 0, 0.6);
}

/* ===== ボタン ===== */
.button {
    display: inline-block;
    font-optical-sizing: auto;
    padding: 3px 20px;
    line-height: normal;
    color: white;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #ADA996;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    background-color: rgba(0, 0, 0, 0.2);
}

.button:hover {
    color: #EAEAEA;
    background-color: rgba(0, 0, 0, 0);
    transform: translateY(-1px);
}

.button.jose {
    padding: 5px 20px 1px 20px;
}

@media (min-width:768px) {
    .button {
        font-size: 16px;
        padding: 3px 60px;
    }

    .button.jose {
        padding: 5px 60px 1px 60px;
    }
}

.button-gold-line {
    color: #EAEAEA;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    transition: all 0.3s;
}

.button-gold-line:hover {
    gap: 8px;
}

.button-gold-line::before {
    content: "";
    width: 48px;
    height: 2px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

.button-round {
    display: inline-flex;
    background-color: #ADA996;
    color: #FFF;
    width: 100px;
    height: 28px;
    border-radius: 28px;
    justify-content: center;
    align-items: center;
}

/* ===== ナビゲーションの開閉 ===== */
.a-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 9px;
    background-color: #040000;
    transform-origin: center;
    transition: all 0.3s;
}

.nav-gradient-line {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
    background-size: 200% auto;
    background-position: 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-cont {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px - 42px);
    margin-top: 64px;
    line-height: 1;
    background-color: #040000;
    z-index: 990;
}

.nav-cont-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-cont li a {
    position: relative;
    transition: all 0.3s;
}

.nav-cont li a::before {
    content: "";
    width: 42px;
    height: 2px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 15%,
            #f9f3e5 30%,
            #c78a03 50%,
            #f9f3e5 70%,
            #f4db8c 85%,
            #f0cc7e 100%);
    position: absolute;
    top: 45%;
    left: -50px;
    opacity: 0;
    transition: all 0.3s;
}

.nav-cont li a:hover::before {
    opacity: 1;
    transform: translateX(-5px);
}

@media (min-width: 992px) {
    .a-nav {
        height: auto;
    }

    .a-nav-container {
        height: 32px;
    }

    .nav-logo {
        height: 32px;
        width: auto;
    }

    .a-nav-linkbox {
        margin-top: 3px;
    }

    .a-nav-linkbox>li:not(:last-child) {
        margin-right: 1rem;
    }
}

.a-burger {
   position: relative;
   width: 30px;
   height: 40px;
   display: inline-flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 6px;
   transition: all 0.3s;
   z-index: 1100;
}
.a-burger > div {
    width: 30px;
    height: 2px;
    background-color: #a59c86;
    border-radius: 2px;
}
.a-burger.is-active {
    gap: 2px;
}
@media (min-width: 992px) {
    .a-burger {
        display: none;
    }
}
/* ===== スムーススクロール（アンカーリンク） ===== */

/* ===== スクロールアニメーション（左・右・下） ===== */

/* ===== 雲のスクロールアニメーション ===== */

/* ===== 固定ニュースの無限スクロール ===== */
.fixed-news {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    padding: 5px 0;
    background-color: #040000;
}

.fixed-news-container {
    height: 32px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.fixed-news-item {
    display: flex;
    align-items: baseline;
    margin-right: 50px;
    white-space: nowrap;
    line-height: 1;
    font-size: 12px;
}

.tag-news-cat {
    padding: 1px 8px;
    font-size: 10px;
    color: #ADA996;
    border-radius: 100px;
    border: 1px solid #ADA996;
    letter-spacing: 0;
}

.fixed-news-gradient-line {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 15%,
            #f9f3e5 30%,
            #c78a03 50%,
            #f9f3e5 70%,
            #f4db8c 85%,
            #f0cc7e 100%);
    background-size: 200% auto;
    background-position: 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== .main要素のナビ分マージン設定 ===== */
.main {
    position: relative;
    z-index: 10;
}

.full-height {
    height: calc(100vh - 64px - 42px);
}

@media (min-width: 1200px) {
    .full-height {
        height: calc(100vh - 50px - 42px);
    }
}

/* ===== RETURN TO TOP表示制御 ===== */
.return-top {
    position: fixed;
    bottom: 63px;
    right: 9px;
    writing-mode: sideways-lr;
    text-orientation: upright;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    line-height: 1.6;
    display: inline-block;
    z-index: 800;
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.return-top.show {
    opacity: 1;
    pointer-events: auto;
}

.return-top::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
    transform: translateX(-50%);
    margin: 0 auto 8px auto;
}

.return-top:hover {
    transform: translateY(-2px);
}

/* ===== グラデーションラインのアニメーション ===== */
.play {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.play::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(img/common/play.svg) center;
    background-size: contain;
    margin-left: 2px;
    background-repeat: no-repeat;
}

/* ===== フッター ===== */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.foot-logo {
    max-width: 240px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 280px;
    }
}

.footer ul li {
    margin-top: 0.75rem;
}

.footer ul li ul {
    margin-left: 1rem;
}

.footer .button {
    width: 100%;
    text-align: center;
}

.full-height {
    height: calc(100vh - 64px - 42px);
}

@media (min-width: 1200px) {
    .full-height {
        height: calc(100vh - 50px - 42px);
    }
}

/* ===== TOPページ ===== */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* ===== TOPミッション部分 ===== */
.mission-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-title-box {
    position: relative;
    writing-mode: sideways-lr;
    text-orientation: upright;
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.5em;
    color: white;
    padding: 0.5rem 8px;
    line-height: 1;
}

.mission-title-box::before {
    content: "";
    position: absolute;
    right: 0%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
    transform: translateX(-50%);
}

.mission-title {
    margin: 0;
    padding: 0 5px;
}

.mission-text {
    line-height: 2;
    font-weight: 500;
    padding-top: 0.3em;
    color: #EAEAEA;
}

.gold-title-box {
    padding: 20px 0 20px 20px;
    position: relative;
    line-height: 1;
}

.gold-title-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

.gold-title-box.less-space {
    padding: 0px 0 0px 20px;
}

.gold-title-box.less-space2 {
    padding: 5px 0px 5px 15px;
}

@media (min-width:768px) {
    .mission-container {
        gap: 20px;
    }

    .mission-title-box {
        font-size: 20px;
        padding: 0.5rem 16px;
    }
}

/* ===== ニュース ===== */
.news-tabs {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid #ADA996;
    letter-spacing: 0;
}

.news-tabs-inner {
    border-top: 1px solid #ADA996;
    border-left: 1px solid #ADA996;
    display: flex;
    padding: 7px 10px 0 20px;
    background-color: #000000;
    position: relative;
    bottom: -1px;
    flex-direction: column;
}

.news-tabs-inner li {
    display: inline-block;
    padding: 8px 0 2px 0;
    position: relative;
    cursor: pointer;
}

.news-tabs-inner li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-image: url(img/common/gold-point.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-tabs-inner li.is-active::before,
.news-tabs-inner li:hover::before {
    opacity: 1;
}

.news-tab-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: none;
}

.news-tab-content.is-active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.news-date-tag-box {
    width: 8em;
    margin-right: 10px;
    text-align: center;
}

.news-item {
    padding: 1.5rem;
}

.news-list .news-item:not(:last-child) {
    border-bottom: 1px solid #ada99654;
}

.news-item .tag-news-cat,
.post-list-item .tag-news-cat {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    width: 8em;
}

@media (min-width:768px) {
    .news-tabs-inner {
        padding: 0 10px 0 20px;
        flex-direction: row;
    }

    .news-tabs-inner li:not(:last-child) {
        margin-right: 20px;
    }

    .news-item {
        display: flex;
        align-items: baseline;
    }

    .news-date-tag-box {
        width: auto;
        margin-right: 16px;
        text-align: left;
    }

    .news-date {
        margin-right: 1rem;
        width: auto;
    }

    .news-item .tag-news-cat {
        display: inline-block;
        width: 10em;
        text-align: center;
    }

    .news-tabs-inner li a {
        padding: 10px 0;
    }
}

/* ===== デベロッパーリスト ===== */
.dev-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 8px 0;
}

.dev-img-box {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
}

a.dev-type {
    color: #ADA996;
}

.dev-title-min {
    font-size: 7px;
    color: #ADA996;
    position: absolute;
    top: 3px;
    left: 3px;
}

.histry-bg {
    position: relative;
    overflow: hidden;
}

.histry-bg-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;

    will-change: transform;
    background-image: url(img/top/top-img1.jpg);
}

.aniv-box {
    margin-top: 105px;
    position: relative;
    width: 200px;
}

.aniv-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -180px;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

.foot-profile {
    position: relative;
}

.foot-profile::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

@media (min-width:992px) {
    .foot-profile::after {
        background: none;
    }

    .foot-sitemap-cont {
        position: relative;
        padding-left: 40px;
        padding-bottom: 16px;
    }

    .foot-sitemap-cont::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom,
                #f0cc7e 0%,
                #f4db8c 19%,
                #f9f3e5 41%,
                #c78a03 73%,
                #e3b75e 89%,
                #efca84 95%);
    }
}

/* ===== サブページ ===== */
.subpage-main {
    padding-top: 64px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .subpage-main {
        padding-top: 50px;
    }
}

.img-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.suppage-title {
    padding-left: 60px;
}

.suppage-title-en {
    position: relative;
}

.suppage-title-en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

@media (min-width:768px) {
    .suppage-title {
        padding-left: 90px;
    }

    .suppage-title-en::before {
        left: -80px;
        width: 70px;
    }
}

.sub-page-top-window {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: space-between;
}

.sub-page-top-window::before,
.sub-page-top-window::after {
    content: "";
    display: block;
    width: 20px;
    height: 100%;
    background-color: #040000;
}

.num-line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.num-line::after {
    content: "";
    background-color: #ADA996;
    height: 1px;
    flex-grow: 1;
}

.pankuzu {
    display: flex;
    justify-content: end;
    align-items: baseline;
    color: #ADA996;
}

.pankuzu>li:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
}

@media (min-width:768px) {
    .p-md-sticky {
        position: sticky;
        top: 150px;
    }
}

@media (min-width:992px) {
    .p-md-sticky {
        position: sticky;
        top: 110px;
    }
}

.title-sideline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ADA996;
    width: 100%;
}

.title-sideline::before,
.title-sideline::after {
    content: "";
    display: block;
    flex-grow: 1;
    width: auto;
    height: 1px;
    background-color: #ADA996;
}

.list-disc {
    padding-left: 1.5rem;
}

.list-disc li {
    list-style: disc;
}

.list-disc li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.gradation-top {
    background: linear-gradient(to left, #000000 0%, #454545 100%);
}

.title-gold-line-center {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    color: #ADA996;
}

.title-gold-line-center::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(to right,
            #f0cc7e 0%,
            #f4db8c 19%,
            #f9f3e5 41%,
            #c78a03 73%,
            #e3b75e 89%,
            #efca84 95%);
}

/*　HISTORY  */
.his-item {
    display: flex;
    align-items: stretch;

}

.his-year {
    font-family: "Josefin Sans", sans-serif;
    height: 70px;
    width: 55px;
    line-height: 1;
    font-size: 2rem;

}

.his-line {
    position: relative;
    top: 4px;
    width: 16px;
    margin: 0 10px 0 30px;
    color: #ADA996;
    font-size: 16px;
    text-align: center;
}

.his-line::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #ADA996;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.his-line::after {
    content: "";
    width: 0px;
    height: 0px;
    border: none;
}

.his-item:first-child .his-line::before {
    height: calc(100% - 20px);
    top: 20px;
}

.his-item-group {

    align-items: baseline;
    margin-top: 2px;
    font-size: 0.8rem;
}

.his-month {
    color: #ADA996;
    font-size: 1rem;
    width: 50px !important;
    position: relative;
}

.his-cont {}

@media (min-width:768px) {
    .his-year {
        height: 70px;
        width: 120px;
        font-size: 3.5rem;
    }

    .his-line {
        top: 10px;
        width: 16px;
        margin: 0 80px 0 30px;
        font-size: 16px;
    }

    .his-line::before {
        content: "";
        width: 2px;
        background-color: #ADA996;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .his-line::after {
        content: "";
        width: 40px;
        height: 1px;
        position: absolute;
        top: 12px;
        right: -60px;
        border: 1px dotted #ADA996;
    }

    .his-item:first-child .his-line::before {
        height: calc(100% - 20px);
        top: 20px;
    }

    .his-item-group {
        display: flex;
        margin-top: 2px;
        font-size: 1rem;
    }

    .his-month {
        font-size: 1.5rem;
        width: 70px !important;
    }

}

/* ===== お問い合わせフォーム ===== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    color: #EAEAEA;
    /* font-family: "Shippori Mincho", serif; */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
}

.required {
    font-size: 0.75rem;
    padding: 0.2em 0.5em;
    background-color: #ADA996;
    color: #000;
    border-radius: 4px;
    margin-left: 0.5em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    background-color: #eee;
    color: #000;
    font-size: 1rem;
}

.checkbox-group label,
.form-group input[type="radio"]+label {
    display: inline-block;
    margin-right: 1em;
}

button[type="submit"] {
    background-color: transparent;
    color: #EAEAEA;
    border: 1px solid #ADA996;
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    opacity: 0.8;
}

.policy-box {
    max-height: 300px;
    overflow-y: scroll;
    padding: 1rem;
    border: 1px solid #ADA996;
    border-radius: 10px;
}

.post-cat-list>li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.post-cat-list>li a {
    color: rgba(173, 169, 150, 0.5);
}

.post-cat-list>li a:hover,
.post-cat-list>li a.is-active {
    color: rgba(173, 169, 150, 1);
}

.post-cat-list>li p {
    position: relative;
}

.post-cat-list>li a:hover p:first-child:before,
.post-cat-list>li a.is-active p:first-child::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    background-color: rgba(173, 169, 150, 1);
}

/* フォーム全体 */
.mw_wp_form {
  background-color: #000;
  color: #e6e2d3;
  padding: 2rem;
  border-radius: 1rem;
  /* font-family: "Shippori Mincho", serif; */
}

/* フォームタイトルとステップ */
.mw_wp_form .center {
  color: #e6e2d3;
  margin-bottom: 2rem;
  text-align: center;
  /* font-weight: bold; */
}

.form-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  list-style: none;
  padding: 0;
}

.form-nav li {
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  color: #e6e2d3;
  border: 1px solid #e6e2d3;
  border-radius: 1rem;
}
.mw_wp_form_input .form-nav_item01,
.mw_wp_form_preview .form-nav_item02,
.mw_wp_form_complete .form-nav_item03 {
    background: #e6e2d3;
    color: #040000;
}

/* ラベル */
.form dt {
  /* font-weight: bold; */
  margin-top: 1rem;
  margin-bottom: .5rem;
  color: #e6e2d3;
  display: flex;
  align-items: center;
}
.form dd {
    margin-bottom: 2rem;
}
.form dt span {
  display: inline-block;
  border: 1px solid #a59c86;
  font-size: 0.6rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
}
.form dt .hissu {
  display: inline-block;
  background-color: #a59c86;
  color: #fff;
  font-size: 0.6rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
}

/* 入力フィールド */
.form input[type="text"],
.form input[type="email"],
.form textarea,
.form select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  background-color: #f3f3f3;
  border: none;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: #000;
}

/* チェックボックス */
.mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
  color: #e6e2d3;
  /* font-family: "Shippori Mincho", serif; */
}

.mwform-checkbox-field input[type="checkbox"] {
  margin-right: .5rem;
  height: 16px;
  width: 16px;
  
}

/* プライバシーポリシー */
.privacy {
  background-color: #111;
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-top: 2rem;
  /* font-family: "Shippori Mincho", serif; */
  height: 300px;
  overflow-y: scroll;
}

.privacy h3 {
  color: #e6e2d3;
  font-size: 1rem;
  /* font-weight: bold; */
  margin-bottom: 1rem;
}

.privacy dl {
  margin: 0;
}

.privacy dt {
  /* font-weight: bold; */
  margin-top: 1rem;
  color: #e6e2d3;
}

.privacy dd {
  margin-bottom: 1rem;
}

/* 同意チェックボックス */
.agree {
  margin-top: 1.5rem;
  color: #e6e2d3;
  /* font-family: "Shippori Mincho", serif; */
}

.agree label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 送信ボタン */
.submit {
  background-color: #e6e2d3;
  color: #000;
  /* font-weight: bold; */
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  display: block;
  margin: 2rem auto 0;
  transition: all 0.3s ease-in-out;
  /* font-family: "Shippori Mincho", serif; */
}

.submit:hover {
  background-color: #c7c1a7;
}