*,
*::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;
    min-width: 300px;
    width: 300px;
    padding-left: 40px;
    height: 100vh;
    overflow-y: auto;
}
.sidebar.show {
    transform: translateX(0);
}
@media (max-width: 1280px) {
    .sidebar {
        min-width: 220px;
        width: 220px;
        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: 100%;
}
.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;}