html {
    background-color: #19231B;
    font-family: 'Noto Sans JP', sans-serif;
}
h3 {
    font-family: 'Zen Antique', serif;
}
p {
    line-height: 1.75;
}
.zen {
    font-family: 'Zen Antique', serif;
}
.zen-old {
    font-family: 'Zen Old Mincho', serif;
}
.zen-kaku {
    font-family: 'Zen Kaku Gothic New', serif;
    font-weight: 700;
}
.b1 {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 500;
}
.cormorant {
    font-family: 'Cormorant', serif;
    font-weight: 600;
}
.text-r {
    writing-mode: vertical-rl;
}

/* news/single */
.content-block {
    h2 {
        font-size: 1.5em;
        font-weight: 400;
    }
    h3 {
        font-size: 1.25em;
        font-weight: 400;
    }
    h4 {
        font-size: 1em;
        font-weight: 400;
    }
    a {
        color: #19231B;
        text-decoration: underline;
        text-underline-offset: 0.2em;
        font-family: 'Zen Kaku Gothic New', serif;
        transition: all 0.3s ease;
    }
    a:hover {
        opacity: 0.7;
    }
}

.scale-animate {
    transition: all 10s linear;
    animation: scale-animate 10s linear;
}

@keyframes scale-animate {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Swiper */
.swiper-pagination-bullet {
    border-radius: 0!important;
    height: 2px!important;
    width: 10px!important;
    background-color: rgba(255, 255, 255, 0.5)!important;
    opacity: 1!important;
    transition: all 1s ease-in-out!important;
}
.swiper-pagination-bullet-active {
    width: 20px!important;
    background-color: #19231B!important;
    opacity: 1!important;
    transition: all 1s ease-in-out!important;
}
.form-order-wrapper label {
    display: grid;
    grid-template-columns: 12em 1fr;
    gap: 16px;
    font-size: 14px;
    margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
    .form-order-wrapper label {
        grid-template-columns: 1fr;
    }
}

/* Contact Form 7 */
.wpcf7-form-control.wpcf7-acceptance {
    display: flex;
    align-items: center;
  }
.form-order-wrapper .wpcf7-acceptance label {
    display: flex;
    margin-bottom: 0;
}
.wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
    border: 1px solid rgba(25, 35, 27, 0.2);
    border-radius: 5px;
    padding: 1px 10px;
    width: 100%;
}
.wpcf7-submit {
    font-size: 14px;
    background-color: #000000;
    width: fit-content;
    padding: 0.25em 1.5em 0.4em;
    margin: auto;
    display: block;
    color: white;
    cursor: pointer;
}
.wpcf7-form-control.wpcf7-number {
    width: 4em!important;
}
.wpcf7-spinner {
    position: absolute!important;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(25, 35, 27, 0.8)!important;
    display: block!important;
    margin: auto!important;
    width: 100%!important;
    bottom: 0;
    height: 100%!important;
    border-radius: unset!important;
}
.wpcf7-spinner:before {
    top: calc(50% - 8px)!important;
    left: calc(50% - 8px)!important;
}

/* anime.js */
.ml13 {
    text-transform: uppercase;
}

.ml13 .letter {
    display: inline-block;
}

/* 文字アニメーション用のblur効果 */
.ml-anime1 .letter {
    filter: blur(3px);
    animation: blur-animation-1 4s ease-out forwards;
    animation-delay: calc(0.3s + 0.1s * var(--i, 0));
}

.ml-anime2 .letter {
    filter: blur(3px);
    animation: blur-animation-2 4s ease-out forwards;
    animation-delay: calc(0.5s + 0.1s * var(--i, 0));
}

.ml-anime3 .letter {
    filter: blur(3px);
    animation: blur-animation-3 4s ease-out forwards;
    animation-delay: calc(0.7s + 0.1s * var(--i, 0));
}

.ml-anime .letter {
    opacity: 0;
}

@keyframes blur-animation-1 {
    0% {
        filter: blur(3px);
    }
    100% {
        filter: blur(0.2px);
    }
}

@keyframes blur-animation-2 {
    0% {
        filter: blur(3px);
    }
    100% {
        filter: blur(0.2px);
    }
}

@keyframes blur-animation-3 {
    0% {
        filter: blur(3px);
    }
    100% {
        filter: blur(0.2px);
    }
}