body {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    margin: 0;
    padding: 0;
}

.sp {
    display: none;
}

a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    padding: 10px 3%;
    top: 0;
    background-color: #fff;
    z-index: 9999;
}

h1 {
    margin: 0;
    padding: 0;
}

h1 img {
    display: block;
    width: 472px;
}

.global-nav-wrapper {
    width: 60%;
    max-width: 600px;
}

.global-nav-wrapper ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.hum {
    position: relative;
    width: 50px;
    height: 39px;
}

.hum span {
    display: block;
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.hum span:first-child {
    top: 0;
}

.hum span:first-child.open {
    top: 19px;
    rotate: 45deg;
}


.hum span:nth-child(2) {
    top: 19px;
}

.hum span:nth-child(2).open {
    opacity: 0;
}

.hum span:last-child {
    top: 38px;
}

.hum span:last-child.open {
    top: 19px;
    rotate: -45deg;
}

.hum-menu {
    position: fixed;
    top: -130px;
    right: 0;
    background-color: #ece2db;
    width: 400px;
    z-index: 9000;
    padding-top: 130px;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.hum-menu.open {
    height: calc(100% - 120px);
    top: 0;
}

.hum-menu-nav {
    list-style: none;
    margin: auto;
    width: fit-content;
}

.hum-menu-nav ul {
    list-style: none;
}


.hum-menu-nav li:not(.menu-item-has-children)::before {
    padding-bottom: 10px;
    content: "▶";
    display: inline-block;
    margin-right: 10px;
}

.hum-menu-nav li.menu-item-has-children::before {
    content: "▶";
    display: inline-block;
    margin-right: 10px;
    padding-bottom: 10px;
}

.hum-menu-nav li.menu-item-has-children.open::before {
    content: "▼";
    display: inline-block;
    margin-right: 10px;
    padding-bottom: 10px;
}

.sub-menu {
    height: 0;
    overflow: hidden;
}

.sub-menu.open {
    height: auto;
    overflow: auto;
}

.bnr a {
    display: block;
    text-align: center;
    margin: 50px auto;
    width: 95%;
    max-width: 750px;
}

.bnr img {
    width: 100%;
}


/*スライダー用*/

.blog-slider .slide {
    text-align: center;
}

.blog-slider .slide h3 {
    margin-top: 10px;
    font-size: 18px;
}

.blog-slider .post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-slider .post-card {
    width: calc(33% - 20px);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.blog-slider .post-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-slider .post-thumbnail img {
    width: 100%;
    height: auto;
}

.blog-slider .post-content {
    padding: 10px;
}

.blog-slider .post-title {
    font-size: 16px;
    margin: 0 0 8px;
}

.blog-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-slider .slide {
    position: relative;
    text-align: left;
    width: calc(100% - 20px);
    margin: auto;
    height: 100%;
}

.blog-slider .slide .slide-text {
    background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.7));
    width: calc(100% - 40px);
    position: absolute;
    padding: 40px 20px 20px;
    left: 0;
    bottom: 0;
}

.blog-slider .slide .slide-text a {
    color: #fff;
}


.blog-slider .slide .cat,
.blog-slider .slide .date {
    font-size: 0.7em;
    display: inline-block;
}

.blog-slider .slide .date {
    margin-right: 10px;
}

.blog-slider .slide .title {
    margin: 0;
    font-size: 1.2em;
}

/*投稿一覧表示用*/

.pick-up {
    width: 95%;
    margin: 50px auto 100px;
    max-width: 800px;
}

.pick-up .thumbnail {
    width: 170px;
    height: 100px;
    margin-right: 30px;
}

.pick-up .thumbnail img {
    width: 170px;
    height: 100px;
    object-fit: cover;
}


.pick-up .no-thumbnail {
    width: 170px;
    height: 100px;
    margin-right: 30px;
    background-color: #d9d9d9;
}

article.post-card {
    display: flex;
    align-items: start;
    margin: 50px 0;
}

article.post-card .cat,
article.post-card .cat a,
article.post-card .date {
    font-size: 0.7em;
    color: #9b9b9b;
    display: inline-block;
}

article.post-card .date {
    margin-right: 10px;
}

article.post-card .title {
    margin: 0;
    font-size: 1.2em;
}


@media screen and (max-width:767px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }


    h1 img {
        width: 247px;
    }


    .hum {
        position: relative;
        width: 42px;
        height: 25px;
    }

    .hum span {
        width: 42px;
    }

    .hum span:first-child {
        top: 0;
    }

    .hum span:first-child.open {
        top: 12px;
        rotate: 45deg;
    }


    .hum span:nth-child(2) {
        top: 12px;
    }

    .hum span:nth-child(2).open {
        opacity: 0;
    }

    .hum span:last-child {
        top: 24px;
    }

    .hum span:last-child.open {
        top: 12px;
        rotate: -45deg;
    }


    .hum-menu {
        position: fixed;
        top: -65px;
        right: 0;
        background-color: #ece2db;
        width: 100%;
        z-index: 9000;
        padding-top: 70px;
        height: 0;
        overflow: hidden;
        transition: 0.5s;
        font-size: 0.9em;
    }

    .hum-menu.open {
        height: calc(100% - 70px);
        top: 0;
    }




    .hum-menu-nav li:not(.menu-item-has-children)::before {
        content: "▶";
        display: inline-block;
        margin-right: 10px;
        padding-bottom: 5px;
    }

    .hum-menu-nav li.menu-item-has-children::before {
        content: "▶";
        display: inline-block;
        margin-right: 10px;
        padding-bottom: 5px;
    }



    /* スライダーの内容*/

    .slick-prev,
    .slick-next {
        position: absolute;
        top: 50%;
        border: none;
        background-color: transparent;
        color: #ffffffcc;
        z-index: 888;
        font-size: 20px;
        font-weight: 600;
        transform: translateY(-50%);
    }

    .slick-prev {
        left: 2px;
    }

    .slick-next {
        right: 2px;
    }


    .blog-slider .slide h3 {
        margin-top: 10px;
        font-size: 17px;
    }

    .blog-slider .slide {
        width: 100%;
    }


    .blog-slider .slide .cat,
    .blog-slider .slide .date {
        font-size: 0.7em;
        display: inline-block;
    }

    .blog-slider .slide .date {
        margin-right: 10px;
    }

    .blog-slider .slide .title {
        margin: 0;
        font-size: 1.1em;
    }

    /*投稿一覧表示用*/

    .pick-up {
        width: 95%;
        margin: 50px auto 100px;
        max-width: 800px;
    }

    .pick-up h2 {
        margin-bottom: 0;
    }

    .pick-up .thumbnail {
        width: 123px;
        height: 113px;
        margin-right: 10px;
    }

    .pick-up .thumbnail img {
        width: 123px;
        height: 113px;
        object-fit: cover;
    }


    .pick-up .no-thumbnail {
        width: 123px;
        height: 113px;
        margin-right: 10px;
    }

    article.post-card a {
        display: flex;
        align-items: start;
    }

    article.post-card .cat,
    article.post-card .date {
        font-size: 0.7em;
        color: #9b9b9b;
        display: inline-block;
    }

    article.post-card .date {
        margin-right: 10px;
    }

    article.post-card .title {
        margin: 0;
        font-size: 1em;
    }


    footer .ft-button {
        background-color: rgb(0, 0, 0, 0.65);
        padding: 10px 0;
        margin: auto;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 9999;
    }

    footer .ft-button a {
        display: inline-block;
        width: 317px;
        background-color: #ffae00;
        padding: 5px 0;
        margin: auto;
        font-size: 20px;
        text-align: center;
        border-radius: 10px;
    }




}



/*single.php*/
.single_cont{
    width: 96%;
    max-width: 1024px;
    margin: 30px auto;
}
.single_cont figure{
    display: inline-block;
}