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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

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

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
}

[hidden] {
    display: none;
}

::-webkit-scrollbar {
    width: 6px;
    border-left: 1px solid #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background-color: #666;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #333;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-sans {
/*     font-family: -apple-system, BlinkMacSystemFont, 'Yu Gothic Medium', 'Yu Gothic', sans-serif; */
    font-size: 18px;
}
@media (max-width: 1536px) {
    .font-sans {
        font-size: 16px;
    }
}
@media (max-width: 1280px) {
    .font-sans {
        font-size: 14px;
    }
}

body {
	font-family: "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "????????? Medium", YuGothic, "???????????", "Noto Sans Japanese", "????????? Pro W3", "????", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
    overflow-x: hidden;
}

.app {
    display: flex;
    background-color: #fff;
	color: #333;
}
.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
	z-index:9;
    min-width: 300px;
    width: 300px;
    padding-left: 40px;
    height: 100dvh;
    overflow-y: auto;
}
.sidebar.show {
    transform: translateX(0);
}
@media (max-width: 1280px) {
    .sidebar {
        min-width: 200px;
        width: 200px;
        padding-left: 20px;
    }
}
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        right: 0;
        padding: 0 10px;
        background-color: #fff;
        transform: translateX(220px);
        transition: transform .3s;
    }
}

.sidebar > :not([hidden]) ~ :not([hidden]) {
    margin-top: 10px;
}
.sidebar-one {
    display: flex;
    column-gap: 10px;
}
.sidebar-one img {
    width: 100%;
    height: 100%;
}
.sidebar-one > :first-child {
    width: 40%;
}
.sidebar-one > :last-child {
    width: calc(60% - 10px);
}
.sidebar-two {
    display: flex;
}
.sidebar-three {
    display: flex;
    flex-wrap: wrap;
}
.sidebar-three > :nth-of-type(1) img,
.sidebar-three > :nth-of-type(2) img {
    height: auto;
}
.sidebar-three > :nth-of-type(1) {
    width: 66.5%;
}
.sidebar-three > :nth-of-type(2) {
    width: 33.5%;
}
.sidebar-three > :nth-of-type(3) {
    margin-top: 1px;
}
.sidebar-five {
    margin: 0;
    padding-left: 0;
    font-size: 12px;
    line-height: 1.5rem;
}
.sidebar-five a {
    text-decoration: none;
    color: inherit;
}
.sidebar-five a:hover {
    text-decoration: underline;
}
.sidebar-search {
    padding: 10px;
    background-color: #edeceb;
}
.sidebar-search label {
    position: relative;
}
.sidebar-search input[type=text] {
    padding: 2px 4px;
    width: 100%;
    border: 1px solid #b84231;
}
.sidebar-search input[type=text]::placeholder {
    color: #ddd;
}
.sidebar-search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
}
.sidebar-search button svg {
    width: 24px;
    height: 24px;
    color: #b84231;
}
@media (max-width: 1024px) {
    .sidebar-search button,
    .sidebar-search button svg {
        width: 20px;
        height: 20px;
    }
}
.sidebar-search p {
    margin-top: 10px;
    display: flex;
    column-gap: .25rem;
    align-items: center;
}
.sidebar-search p img {
    width: 20px;
    height: auto;
}
.sidebar-search p a {
    text-decoration: none;
    color: inherit;
}

.logged-in .container {
    min-height: calc(100vh - 32px);
}
.logged-in .sidebar {
    height: calc(100vh - 32px);
}
.logged-in .header,
.logged-in .sidebar {
    top: 32px;
}
@media (max-width: 782px) {
    .logged-in .container {
        min-height: calc(100vh - 46px);
    }
    .logged-in .sidebar {
        height: calc(100vh - 46px);
    }
    .logged-in .header,
    .logged-in .sidebar {
        top: 46px;
    }
}
@media (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
}

.header {
    position: sticky;
    top: 0;
    padding: 20px 10px 20px 0;
    transform: translateX(0);
    transition: transform .3s;
}
@media (max-width: 1280px) {
    .header {
        padding: 10px 30px;
    }
}
@media (max-width: 1024) {
    .header {
        padding: 10px ;
    }
}
.header.shadow {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.header.move {
    transform: translateX(-220px);
}
.header-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.slogan {
    margin-left:-3px;width:47%;max-width:651.02px;
}
.logo {
    width: 26%;max-width:357.63px;
}
.calender {
    min-width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: bold;
}
.calender p {
    font-size: 14px;
}
.calender .tel {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 22px;
    letter-spacing: .25rem;
}
.calender .tel img {
    width: 22px;
    height: auto;
}
.calender .tel a {
    text-decoration: none;
    color: inherit;
}
.calender .tel a:hover {
    text-decoration: underline;
}
.calender-icon {
    width: 40px;
    height: auto;
}
@media (max-width: 1024px) {
    .header-wrap {
        justify-content: space-between;
    }
    .logo {
        width: 180px;
    }
    .slogan,
    .calender {
        display: none;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 140px;
    }
}
.mobile {
    display: none;
}
@media (max-width: 1024px) {
    .mobile {
        display: flex;
        align-items: center;
        column-gap: 14px;
    }
}
.mobile img {
    width: 28px;
    height: auto;
}
.mobile-btn {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ccc;
    width: 60px;
    height: 60px;
}
.mobile-btn svg {
    width: 32px;
    height: 32px;
}
.mobile-btn svg.close {
    display: none;
}
.mobile-btn.active svg.list {
    display: none;
}
.mobile-btn.active svg.close {
    display: block;
}

.footer {
    padding: 40px 10px;
    background-color: #b84231;
    color: #fff;
}
@media (max-width: 1280px) {
    .footer {
        padding: 20px 10px;
    }
}
.footer > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1em;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
    row-gap: .5em;
    padding-left: 0;
    margin: 0;
}
.footer-nav a {
    position: relative;
    text-decoration: none;
    color: inherit;
}
.footer-nav a::after {
    position: absolute;
    bottom: .5em;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: opacity .3s ease-in, bottom .3s ease;
}
.footer-nav a:hover::after {
    bottom: 0;
    opacity: 1;
}

.copyright {
    text-align: center;
}

.news {
    flex-grow: 1;
    padding: 60px 20px;
}
@media (max-width: 1280px) {
    .news {
        padding: 40px 20px;
    }
}
.news-title {
	margin-bottom: 30px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}
@media (max-width: 1280px) {
	.news-title {
		font-size: 20px;
	}
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 80px;
    margin: 0 auto;
    padding-left: 0;
    max-width: 1200px;
}
@media (max-width: 1680px) {
    .news-list {
        gap: 30px 60px;
        max-width:  1000px;
    }
}
@media (max-width: 1440px) {
    .news-list {
        gap: 20px 40px;
        max-width:  800px;
    }
}
@media (max-width: 1280px) {
    .news-list {
        max-width: 750px;
    }
}
@media (max-width: 1024px) {
}
@media (max-width: 576px) {
    .news-list {
        gap: 10px 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}
.news-post a {
    text-decoration: none;
    color: inherit;
}
.news-post-thumbnail {
    overflow: hidden;
    padding-top: 90%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
.news-post-detail {
    padding: 14px 0;
}
.news-post-detail span:first-child {
    display: inline-block;
    padding: 4px 8px;
    width: fit-content;
    background-color: #b84231;
    color: #fff;
}
.news-post-detail span:last-child{display:block;margin-top:10px;}
.news-post-detail span:last-child:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .news-post-detail span:first-child {
        padding: 2px 6px;
    }
}

.nullable {
    text-align: center;
}

.single-hed {
    text-align: center;
}
.single-hed h2 {
    font-size: 24px;
}
@media (max-width: 1280px) {
    .single-hed h2 {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .single-hed h2 {
        font-size: 18px;
    }
}
.single-con {
    margin: 0 auto;
    max-width: 1200px;
}
.single-con>*:not(:first-child){margin-top:20px;}
.single-con>figure{margin:0 auto;width:100%;max-width:630px;}/* ===== ブログ カスタムCSS ===== */

/* ---- カテゴリナビ ---- */
.blog-category-nav {
    background: #f5f0eb;
    border-bottom: 2px solid #e0d5c8;
    padding: 0;
    margin-bottom: 40px;
}
.blog-cat-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.blog-cat-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #555;
    border-right: 1px solid #e0d5c8;
    transition: background 0.2s, color 0.2s;
    min-width: 100px;
}
.blog-cat-list li:first-child a { border-left: 1px solid #e0d5c8; }
.blog-cat-list li a:hover {
    background: #b84231;
    color: #fff;
}
.cat-en {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #b84231;
}
.blog-cat-list li a:hover .cat-en { color: #fff; }
.cat-ja {
    font-size: 12px;
    margin-top: 3px;
    white-space: nowrap;
}

/* ---- 記事一覧カード ---- */
.blog-list-wrap {
    padding: 0 20px 60px;
    max-width: 960px;
    margin: 0 auto;
}
.blog-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-card a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: opacity 0.2s;
}
.blog-card a:hover { opacity: 0.8; }
.blog-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
    background: #f0ebe4;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #b84231;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}
.blog-card-body {
    padding: 10px 4px 0;
}
.blog-card-title {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 6px;
    font-weight: normal;
}
.blog-card-date {
    font-size: 12px;
    color: #999;
}

/* ---- ページネーション ---- */
.blog-pagination {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}
.blog-pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}
.blog-pagination .page-numbers.current {
    background: #b84231;
    border-color: #b84231;
    color: #fff;
}

/* ---- 記事個別ページ ---- */
.blog-single-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.blog-single-eyecatch {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.blog-single-eyecatch img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-single-cat {
    display: inline-block;
    background: #b84231;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    font-weight: bold;
}
.blog-single-title {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 10px;
    color: #333;
    font-weight: bold;
}
.blog-single-date {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e0d8;
}

/* ---- 本文スタイル ---- */
.blog-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}
.blog-single-content h2 {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    border-left: 5px solid #b84231;
    background: #f9f5f0;
    margin: 40px 0 20px;
    line-height: 1.5;
}
.blog-single-content h3 {
    font-size: 17px;
    font-weight: bold;
    border-bottom: 2px solid #e8d5c0;
    padding-bottom: 6px;
    margin: 30px 0 15px;
    color: #6b3a2a;
}
.blog-single-content strong, .blog-single-content b {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #ffe066 60%);
}
.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
}
.blog-single-content p {
    margin-bottom: 1.4em;
}

/* ---- 店舗紹介 ---- */
.blog-shop-info {
    background: #f5f0eb;
    border: 1px solid #e0d5c8;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}
.blog-shop-info-title {
    font-size: 16px;
    font-weight: bold;
    color: #b84231;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d5c8;
}
.blog-shop-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}
.blog-shop-info-link {
    display: inline-block;
    color: #b84231;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}
.blog-shop-info-link:hover { text-decoration: underline; }

/* ---- 著者紹介 ---- */
.blog-author {
    background: #fff;
    border: 1px solid #e0d5c8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}
.blog-author-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.blog-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-author-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px;
}
.blog-author-bio {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ---- 前後ナビ ---- */
.blog-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e0d8;
}
.blog-post-nav-prev, .blog-post-nav-next {
    flex: 1;
}
.blog-post-nav-next { text-align: right; }
.blog-post-nav a {
    display: block;
    text-decoration: none;
    color: #555;
}
.blog-post-nav .nav-label {
    display: block;
    font-size: 12px;
    color: #b84231;
    margin-bottom: 4px;
}
.blog-post-nav .nav-title {
    font-size: 13px;
    line-height: 1.5;
}

/* ---- no posts ---- */
.blog-no-posts {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-size: 16px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 900px) {
    .blog-card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    .blog-cat-list li a {
        padding: 10px 12px;
        min-width: 60px;
    }
    .cat-ja { font-size: 10px; }
    .blog-card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .blog-list-wrap { padding: 0 15px 40px; }
    .blog-single-wrap { padding: 0 15px 40px; }
    .blog-single-title { font-size: 20px; }
    .blog-author-inner { flex-direction: column; }
    .blog-post-nav { flex-direction: column; }
    .blog-post-nav-next { text-align: left; }
    .blog-cat-list {
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow-x: visible;
        /* 行ごとに高さを揃えるためgridに変更 */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-cat-list li {
        box-sizing: border-box;
    }
    .blog-cat-list li a {
        justify-content: center;
        min-width: unset;
        width: 100%;
        height: 100%;
        min-height: 56px;
        border-right: 1px solid #e0d5c8;
        border-bottom: 1px solid #e0d5c8;
        box-sizing: border-box;
        padding: 10px 8px;
    }
    .blog-cat-list li:first-child a { border-left: 1px solid #e0d5c8; }
    .blog-cat-list li:nth-child(3n+1) a { border-left: 1px solid #e0d5c8; }
}

/* ---- カード下部カテゴリラベル ---- */
.blog-card-cat-label {
    display: inline-block;
    background: #b84231;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}
