@charset "utf-8";

@view-transition {
    navigation: auto;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "sofia-pro", Helvetica, "sans-serif";
    font-weight: 700;
    line-height: 1.6;
    /* letter-spacing: 0.05em; */
    color: #000;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}


.inner {
    width: 90%;
    max-width: 1186px;
    margin-right: auto;
    margin-left: auto;
}

.inside_inner {
    width: 90%;
    max-width: 1106px;
    margin-right: auto;
    margin-left: auto;
}

h2 {
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 36px;
}

#blog {
    margin-top: 130px;
}

::selection {
    background-color: #000041;
    color: #fff;
}

.container {
    width: 100%;
}

.content {
    width: 50%;
    background-color: rgba(150, 150, 150, 0.3);
    padding: 1rem;
    margin-bottom: 1rem;
}

a.word-break {
    word-break: break-all;
}

pre.white-space {
    word-break: break-all;
    white-space: pre-wrap;
}

.pagetitle {
    margin-top: 150px;
}

/* ページアニメーション */
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ページアニメーションここまで */



/*ローディングアニメーション-------------------------------*/



.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .txt {
    font-size: 40px;
    font-weight: bold;
    color: rgb(30, 50, 93);
    letter-spacing: 0.5px;
}

.loader .txt span {
    opacity: 0;
    animation: fade 2.5s infinite;
}

.loader .txt span:nth-child(1) {
    animation-delay: 0s;
}

.loader .txt span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader .txt span:nth-child(3) {
    animation-delay: 0.2s;
}

.loader .txt span:nth-child(4) {
    animation-delay: 0.3s;
}

.loader .txt span:nth-child(5) {
    animation-delay: 0.4s;
}

.loader .txt span:nth-child(6) {
    animation-delay: 0.5s;
}

.loader .txt span:nth-child(7) {
    animation-delay: 0.6s;
}

.loader .txt span:nth-child(8) {
    animation-delay: 0.7s;
}

.loader .txt span:nth-child(9) {
    animation-delay: 0.8s;
}

.loader .txt span:nth-child(10) {
    animation-delay: 0.9s;
}

.loader .txt span:nth-child(11) {
    animation-delay: 1.0s;
}

.loader .txt span:nth-child(12) {
    animation-delay: 1.1s;
}

.loader .txt span:nth-child(13) {
    animation-delay: 1.2s;
}

.loader .txt span:nth-child(14) {
    animation-delay: 1.3s;
}

@keyframes fade {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}


/*ローディングアニメーションここまで-------------------------------*/

/* ハンバーガーメニュー----------------------------------- */
.hamburger-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}


.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    left: 7.94%;
    width: 32px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}


.nav-overlay.active {
    background-color: rgba(255, 255, 255, 0.95);
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color .3s;
}

.nav-overlay__link:hover {
    color: #4a90e2;
}

.nav-overlay.active .nav-overlay__link {
    color: #000;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #000;
}

.nav-overlay.active .nav-overlay__link:hover {
    color: #000041;
}

/* ハンバーガーメニューここまで----------------------------------- */

/* ホバーアニメーション -----------------------------------------*/

h1 img:hover {
    opacity: .65;
}

/* navのホバーアニメーション */
.global ul li a {
    position: relative;
    text-decoration: none;
    color: #000;
    padding: 2px 0;
    display: inline-block;
}

.global ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 300ms ease-out;
}

.global ul li a:hover::before {
    width: 100%;
}

.footer_global ul li a {
    position: relative;
    text-decoration: none;
    color: #000;
    padding: 2px 0;
    display: inline-block;
}

.footer_global ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 300ms ease-out;
}

.footer_global ul li a:hover::before {
    width: 100%;
}


/* navのホバーアニメーションここまで */

.view-more::before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

/* ブログのアーティクル */
.hov:hover {
    opacity: .55;
}

/* view-more */

.view-more {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 8px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.view-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 1px;
    background-color: #000;
    transform-origin: right;
    transform: scaleX(1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.8s ease;
}

.view-more:hover {
    opacity: 0.7;
}

.view-more:hover::after {
    transform-origin: right;
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.5s ease;
}

.view-more:not(:hover)::after {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
    transition: transform 0.3s ease-out,
        opacity 0.3s ease-out;
}

.blog img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog img:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nohov:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* .tag-item:hover {
    background-color: #f0f0f0;
} */


/* ホバーアニメーションここまで -----------------------------------------*/
/* ページネーション */
.pagination {
    text-align: right;
    margin-top: 50px;
}

.pagination a {
    display: inline-block;
    margin-left: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .current {
    display: inline-block;
    margin-left: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
    font-weight: bold;
    background-color: #333;
    color: #fff;
}

/* ページネーションここまで */

/* カテゴリータグ */

.tag {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag a {
    display: inline-block;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #000;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    white-space: nowrap;

}

.tag-item {
    display: inline-block;
}

.tag .ellipsis {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.category-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-end
}

.category-tag .tag-item {
    display: inline-block;
    margin-top: 10px;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #000;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    white-space: nowrap;
}

.category-tag .more-tags {
    cursor: pointer;
    margin-left: 4px;
    line-height: 28px;
}

/* リストのネスト化 */
/* ============================= */
/* UL（順不同リスト） */
/* ============================= */

/* 1階層目 */
.document ul {
    list-style-type: disc;
    /* 丸 */
    margin-left: 20px;
    padding-left: 0;
}

/* 2階層目 */
.wp-block-list ul {
    list-style-type: circle;
    margin-left: 20px;
    padding-left: 0;
}

/* 3階層目 */
.wp-block-list ul ul {
    list-style-type: square;
    /* 四角 */
    margin-left: 20px;
    padding-left: 0;
}

/* リスト項目間のスペース */
.wp-block-list li {
    margin-bottom: 4px;
}

/* ============================= */
/* OL（順序付きリスト） */
/* ============================= */

/* 1階層目 */
.document ol {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 0;
}

/* 共通：項目間のスペース */
.wp-block-list ol li {
    margin-bottom: 4px;
}

/* ネスト */

/* 引用スタイル */

blockquote {
    margin-top: 15px;
    position: relative;
    padding: 10px 15px 10px 50px;
    box-sizing: border-box;
    font-style: italic;
    border: solid 2px #464646;
    color: #464646;
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    content: "“";
    font-family: sans-serif;
    color: #000;
    font-size: 90px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/* 引用スタイルここまで */

/* その他タグ装飾 */

address {
    font-style: normal;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    border-left: 2px solid #000;
    padding: 8px 12px;
    line-height: 1.5;
    display: block;
    max-width: 400px;
    margin: 8px 0;
}

/* address 内のすべての p にスタイルを適用 */
address p {
    line-height: 1.5;
    color: #000;
}

.document a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s;
}

.document a:hover {
    color: #555;
}

abbr {
    border-bottom: 1px dotted #000;
    cursor: help;
    text-decoration: none;
}

acronym {
    border-bottom: 1px dotted #000;
    cursor: help;
    text-decoration: none;
}

cite {
    font-style: italic;
    border-bottom: 1px dotted #000;
    color: #000;
}

code {
    font-family: Consolas, "Courier New", monospace;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 0.95em;
    color: #000;
}

del {
    text-decoration: line-through;
    color: #555;
}

em {
    font-style: italic;
    font-weight: bold;
}

ins {
    text-decoration: none;
    border-bottom: 2px solid #000;
    background-color: #f9f9f9;
    padding: 0 2px;
}

kbd {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.9em;
    font-family: monospace;
    color: #000;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 1px 1px 0 #fff inset;
}

pre {
    background: #f9f9f9;
    color: #333;
    font-family: monospace;
    font-size: 0.95em;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow-x: auto;
    white-space: pre;
}

q {
    quotes: "“" "”" "‘" "’";
    font-style: italic;
    color: #333;
}

q::before {
    content: open-quote;
}

q::after {
    content: close-quote;
}

strong {
    font-weight: bold;
    color: #000;
    padding: 0 4px;
    border-radius: 2px;
}

sub {
    font-size: 0.8em;
    vertical-align: sub;
    color: #333;
}

sup {
    font-size: 0.8em;
    vertical-align: super;
    color: #333;
}

var {
    font-family: monospace;
    font-style: italic;
    color: #333;
}

dl {
    margin: 20px 0;
    padding: 0;
    border-left: 2px solid #000;
    padding-left: 10px;
}

dt {
    font-weight: bold;
    margin-top: 10px;
    color: #000;
}

dd {
    margin-left: 20px;
    margin-bottom: 10px;
    color: #333;
}

/*header-------------------------------------------------------------*/

header {
    margin-bottom: 20px;
    padding: 26px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    z-index: 900;
}

header.shrink {
    /* height: 70px; */
    /* padding: 15px 0; */
    background-color: rgba(255, 255, 255, 0.95);
}

h1 {
    width: 109px;
    max-height: auto;
}

header .inner {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
}

.global ul {
    display: none;
}


.news-header {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
}

.menu-searchbox {
    border: 1px solid #000;
    width: 140px;
    height: 30px;
    box-sizing: border-box;
    padding: 2px 5px;
    text-align: left;
}



/*main-------------------------------------------------------------*/



.subgrid .defaultimg {
    border: #a5a5a5 0.1px solid;
}

.mainvisual {
    padding-top: 88px;
}

.mainvisual .pc {
    display: none;
}

.mainvisual .sp {
    display: block;
}

.mainvisual_image {
    width: 100%;
    height: 500px;
    margin-top: 30px;
    background-image: url(/blog/wp-content/themes/06_blog/images/mainvisual_image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mainvisual_image .inner {
    margin-right: 0;
    margin-left: 0;
}

.whats-new {
    padding-top: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    max-height: 180px;
    box-sizing: border-box;
}


.whats-new h2 {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: bold;
}

.whats-new li {
    font-size: 13px;
}

.whats-new ul {
    display: grid;
    row-gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.whats-new ul li a {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    text-decoration: none;
    color: #000;
}


.news-header {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-header h2 {
    font-size: 16px;
    margin: 0;
}

.all-view {
    position: relative;
    text-decoration: none;
    font-size: 12px;
    padding-bottom: 4px;
    display: inline-block;
}

.all-view::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.date {
    position: relative;
    padding-right: 16px;
}

.date::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #000;
}

.whats-new .text {
    position: relative;
    padding-left: 16px;
}

.blog_posts {
    display: grid;
}

.blog .blog_posts {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 50px 30px;
}

.blog_posts>article:nth-child(n+5) {
    display: none;
}

.blog_posts article {
    display: grid;
    grid-row: span 2;
    row-gap: 0;
}

.subgrid {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 10px;
    height: 100%;
}

.subgrid .tag {
    align-self: end;
}

.thumb {
    aspect-ratio: 330 / 250;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.post-box h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 15px 0;
    flex-grow: 1;

}

.post-box a {
    margin-top: 15px;
}

.post-box time {
    display: inline-block;
    margin-top: 15px;
}

.blog_posts .day {
    font-size: 12px;
    margin: 10px 0;
}

.blog_posts h3 {
    font-size: 16px;
    margin-bottom: 10px;
}


.morebtn {
    margin-top: 50px;
    text-align: right;
}



.About img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.About p {
    font-size: 14px;
}

.About .post {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}

.text {
    display: grid;
    grid-auto-flow: row;
    row-gap: 25px;
}

.more {
    display: none;
}

/*footer-------------------------------------------------------------*/

footer {
    margin: 100px 0 50px;
}

.footer h1 {
    display: block;
    text-align: center;
}

.footer_global {
    display: none;
}

footer .side {
    padding-bottom: 30px;
    margin-bottom: 50px;
    display: grid;
    justify-items: center;
    border-bottom: 1px solid #000;
}

small {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif, Arial, ;
    display: block;
    text-align: center;
}

@media (width >=600px) {

    /* ローディングアニメーション */
    .loader .txt {
        font-size: 45px;
        font-weight: bold;
        color: rgb(30, 50, 93);
        letter-spacing: -5px;
    }


    /* ローディングアニメーションここまで */

    .view-more::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100px;
        height: 1px;
        background-color: #000;
        transform-origin: right;
        transform: scaleX(1);
        opacity: 1;
        transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.8s ease;
    }

    .inner {
        width: 86.8%;
        max-width: 1186px;
        margin-right: auto;
        margin-left: auto;
    }

    .inside_inner {
        width: 80.966%;
        max-width: 1106px;
        margin-right: auto;
        margin-left: auto;
    }

    h2 {
        margin-bottom: 88px;
    }

    /*header-------------------------------------------------------------*/

    header {
        padding: 47px 0;
        background-color: #fff;
        position: fixed;
        width: 100%;
        height: 140px;
        z-index: 900;
    }

    header.shrink {
        height: 90px;
        padding: 23px 0;
        background-color: rgba(255, 255, 255, 0.95);
    }

    h1 {
        width: 133px;
        max-height: auto;
    }

    .global ul {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: center;
        column-gap: 30px;
    }

    .hamburger-menu {
        display: none;
    }

    /*main-------------------------------------------------------------*/

    /* スクロールしたら出るボーダー */

    .inside_inner .scroll-border {
        position: relative;
    }

    .inside_inner .scroll-border::before {
        content: "";
        position: absolute;
        background: #000;
        width: 300px;
        height: 1px;
        left: -320px;
        top: 50%;
        transform: translateY(-50%);
    }



    /* スクロールしたら出るボーダー */


    .mainvisual {
        padding-top: 120px;
    }

    .mainvisual .sp {
        display: none;
    }

    .mainvisual .pc {
        display: block;
    }


    .mainvisual .inner {
        position: relative;
        margin-right: auto;
        margin-left: auto;
    }

    .mainvisual_image {
        width: 100%;
        max-width: 1186px;
        height: 620px;
        margin-left: auto;
        margin-right: auto;
        background-image: url('../images/mainvisual_image.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* .mainvisual.inside_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    } */

    .whats-new {
        width: 480px;
        height: 180px;
        padding: 30px 35px;
        background-color: #fff;
        position: absolute;
        right: 0;
        bottom: -150px;
        box-sizing: border-box;
    }

    .blog .blog_posts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 103px 88px;
        max-width: 1106px;
        margin: auto;
    }

    .blog .blog_posts>article:nth-child(n+7) {
        display: none;
    }

    .blog .blog_posts>article:nth-child(n+5):nth-child(-n+6) {
        display: block;
    }

    .blog_posts>article:nth-child(n+5) {
        display: block;
    }

    .blog_posts .day {
        font-size: 14px;
        margin: 15px 0;
    }

    .blog_posts h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .About img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 50%;
    }

    .About p {
        font-size: 16px;
    }

    .About .post {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: center;
    }

    .text {
        display: grid;
        grid-auto-flow: row;
        row-gap: 25px;
    }

    .more {
        display: block;
    }

    /*footer-------------------------------------------------------------*/

    footer {
        margin: 140px 0 50px;
    }

    footer .side {
        margin-bottom: 50px;
        padding-bottom: 38px;
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #000;
    }

    .footer_global ul {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: center;
        column-gap: 30px;
    }

    footer .footer_global {
        display: block;
    }

    .searchbox {
        width: 140px;
        height: 30px;
        border: 1px solid #000;
        box-sizing: border-box;
        padding-left: 5px;
    }

    small {
        display: block;
        text-align: left;
    }

}


/* single page ------------------------------------------------------------------------------------------*/
/* single page ------------------------------------------------------------------------------------------*/

.single_page {

    .single_inner {
        width: 90%;
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
    }

    /* タイトル、本文、調整ーーーーーーー */

    .document img {
        max-width: 100%;
        height: auto;
        aspect-ratio: none;
    }

    .blog_article h1 {
        display: grid;
        width: auto;
        font-size: 18px;
        padding-top: 6px;
        padding-bottom: 6px;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: end;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

    .blog_article h2 {
        padding-bottom: 6px;
        display: grid;
        font-size: 18px;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: end;
        border-bottom: 1px solid #000;
    }

    .blog_article h3 {
        margin-top: 50px;
        margin-bottom: 50px;
        font-size: 16px;
        display: inline-block;
        position: relative;
    }


    .blog_article h3::after {
        content: "";
        display: block;
        border-bottom: 1px solid #000;
        width: 100%;
        position: absolute;
        padding-bottom: 6px;
    }

    .blog_article h4 {
        margin: 30px 0 20px;
        font-size: 16px;
        padding-left: 10px;
        border-left: 3px solid #000;
    }

    .blog_article h5 {
        margin: 20px 0 15px;
        font-size: 15px;
        background: #f5f5f5;
        padding: 4px 8px;
    }

    .blog_article h6 {
        margin: 15px 0 10px;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0.05em;
    }

    .blog_article p {
        font-size: 12px;
        line-height: 1.8;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    /*header-------------------------------------------------------------*/

    .blog_top {
        margin-bottom: 50px;
    }

    .blog_top .title h2 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .blog_top .title time {
        font-size: 12px;
    }

    .blog_top p {
        margin-top: 0px;
        margin-bottom: 0;
    }

    .blog_top .title {
        padding-bottom: 6px;
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        align-items: end;
        border-bottom: 1px solid #000;
    }

    /*main-------------------------------------------------------------*/

    .blog_article .mainvisual {
        padding-top: 150px;
    }

    .mainvisual .defaultimg {
        border: #a5a5a5 0.1px solid;
    }

    .date-last {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
    }

    .date-last .post-time {
        margin-top: 10px;
    }

    .blog_top .blog_title {
        border: none;
        margin-top: 0;
        width: auto;
        height: auto;
    }

    .category-tag {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .category-tag a {
        margin-top: 10px;
        margin-bottom: 10px;
        display: inline-block;
        padding: 0 12px;
        height: 28px;
        line-height: 28px;
        border: 1px solid #000;
        text-align: center;
        text-decoration: none;
        color: inherit;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .post-time p {
        margin-top: 0;
    }

    .blog_main {
        margin-top: 70px;
        margin-bottom: 70px;
    }



    .blog_article .mainvisual .single_inner {
        position: relative;
        width: 100%;
        aspect-ratio: 810 / 540;
        overflow: hidden;
    }

    .blog_article .mainvisual .single_inner img {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 810px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .post img,
    .wp-post-image {
        max-height: 540px;
    }

    .single-page-top {
        margin-top: 70px;
        margin-bottom: 70px;
    }


    .blog_image {
        width: 100%;
        aspect-ratio: 810 / 540;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .shop-info {
        border-left: 1px solid #000;
        padding-left: 10px;
    }

    /* ボタン */

    .btn .single_inner {
        display: grid;
        grid-template-columns: 67fr 120fr 67fr;
        column-gap: 3.7%;
        text-align: center;
        width: 90%;
        max-width: 330px;
        margin: 0 auto;
        text-align: center;
    }

    .btn .single_inner a {
        font-size: 12px;
        margin-top: 120px;
        display: grid;
        align-items: center;
        justify-content: center;
        height: 33px;
        text-decoration: none;
        border: 1px solid #000;
        box-sizing: border-box;
    }

    .btn li {
        font-size: 12px;
        margin-top: 120px;
        display: grid;
        align-items: center;
        justify-content: center;
        height: 33px;
        text-decoration: none;
        border: 1px solid #000;
        box-sizing: border-box;
    }

    .btn .single_inner a:hover {
        background-color: #f0f0f0;
    }

    .btn .single_inner.post-nav a.disabled {
        color: #aaa;
        border-color: #aaa;
        pointer-events: none;
    }

    /* コメント */

    .comment h2 {
        font-size: 18px;
    }

    .comments_area {
        margin-top: 40px;
    }

    .comment .single_inner form {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 40px;
        max-width: 330px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .comment input[type="text"] {
        width: 100%;
        height: 39px;
        border: 1px solid #000;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .comment textarea {
        width: 100%;
        height: 100px;
        border: 1px solid #000;
        padding: 10px;
        resize: none;
        box-sizing: border-box;
    }

    .comment button {
        width: 93px;
        height: 39px;
        background-color: #fff;
        color: #000;
        border: 1px solid #000;
        cursor: pointer;
        justify-self: end;
        text-align: center;
    }

    #comments .form-submit {
        text-align: right;
    }

    #comments .form-submit #submit {
        background: #fff;
        color: #000;
        padding: 8px 20px;
        border: 1px solid #000;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #comments .form-submit #submit:hover {
        background: #000;
        color: #fff;
    }

    .commentlist>li.comment {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .comment-body {
        margin-bottom: 10px;
        padding: 10px 15px;
        border: #000 0.1px solid;
    }

    .commentlist .children {
        margin-left: 20px;
        margin-top: 15px;
    }

    /* 関連記事 */

    /* .related-posts {
        margin-top: 80px;
    }

    .related-posts h2.widget_title {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }

    .related-posts ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .related-posts li {
        flex: 1 1 calc(50% - 10px);
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s;
    }

    .related-posts li:hover {
        transform: translateY(-5px);
    }

    .related-posts li img {
        width: 330px;
        max-height: 250px;
        aspect-ratio: 330 / 250;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .related-title {
        display: block;
        padding: 10px 15px;
        color: #000;
        font-weight: bold;
        text-decoration: none;
    } */

    /* 関連記事ここまで */

    .alltag .tag {
        margin-top: 10px;
        display: inline-block;
        width: 58px;
        height: 28px;
        line-height: 28px;
        border: 1px solid #000;
        text-align: center;
        text-decoration: none;
        color: inherit;
        box-sizing: border-box;
    }

    .document {
        width: 90%;
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
    }


    /*footer-------------------------------------------------------------*/


    @media (width >=600px) {
        .single_inner {
            width: 59.297%;
            max-width: 810px;
            margin-right: auto;
            margin-left: auto;
        }

        /*header-------------------------------------------------------------*/

        /*main-------------------------------------------------------------*/

        .blog_top .blog_title {
            border: none;
            margin-top: 0;
            width: auto;
            height: auto;
        }

        .blog_main {
            margin-top: 100px;
            margin-bottom: 100px;
        }

        .blog_top .category-tag {
            margin-top: 0;
        }

        .blog_top .title h2 {
            font-size: 28px;
        }

        .blog_top .title time {
            font-size: 16px;
        }

        .blog_main {
            margin-top: 100px;
            margin-bottom: 100px;
        }

        .blog_article h1 {
            font-size: 36px;
        }

        .blog_article h2 {
            font-size: 28px;
        }

        .blog_article h3 {
            font-size: 24px;
        }

        .blog_article p {
            /* margin-top: 100px; */
            font-size: 16px;
        }

        .blog_end h3 {
            margin-bottom: 0;
        }



        /* ボタン */

        .btn .single_inner a {
            font-size: 16px;
            margin-top: 120px;
            margin-bottom: 100px;
            display: grid;
            align-items: center;
            justify-content: center;
            height: 52px;
            text-decoration: none;
            border: 1px solid #000;
            box-sizing: border-box;
            width: 100%;
        }



        .btn li {
            font-size: 16px;
            margin-top: 120px;
            display: grid;
            align-items: center;
            justify-content: center;
            height: 52px;
            text-decoration: none;
            border: 1px solid #000;
            box-sizing: border-box;
            width: 100%;
        }

        .btn .single_inner.post-nav {
            display: grid;
            grid-template-columns: minmax(67px, 210fr) minmax(120px, 330fr) minmax(67px, 210fr);
            column-gap: 3.7%;
            width: 59.297%;
            max-width: 810px;
            margin: 0 auto;
            text-align: center;
        }

        .btn .single_inner.post-nav a {
            display: block;
            text-decoration: none;
            padding: 10px;
            border: 1px solid #000;
            transition: 0.3s;
        }

        .btn .single_inner.post-nav a.disabled {
            color: #aaa;
            border-color: #aaa;
            pointer-events: none;
        }

        /* ボタンここまで */
        .blog_top p {
            margin-top: 100px;
            margin-bottom: 0;
        }

        /* コメント */

        .widget_title {
            margin-top: 0;
        }

        .comment h2 {
            font-size: 28px;
        }

        .comment .single_inner form {
            display: grid;
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
            gap: 50px;
            max-width: 810px;
            width: 100%;
            box-sizing: border-box;
            padding: 0 15px;
        }

        .comment input[type="text"] {
            width: 100%;
            height: 48px;
            border: 1px solid #000;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .comment textarea {
            width: 100%;
            height: 150px;
            border: 1px solid #000;
            padding: 10px;
            resize: none;
            box-sizing: border-box;
        }

        .comment button {
            width: 103px;
            max-width: 100%;
            height: 48px;
            background-color: #fff;
            color: #000;
            border: 1px solid #000;
            cursor: pointer;
            justify-self: end;
            text-align: center;
        }

        .document {
            width: 59.297%;
            max-width: 810px;
            margin-right: auto;
            margin-left: auto;
        }

        /*footer-------------------------------------------------------------*/
    }
}

/* archive_page ------------------------------------------------------------------------------------------*/
/* archive_page ------------------------------------------------------------------------------------------*/

.archive_page {
    .blog .blog_posts {
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 50px 30px;
    }

    .blog .blog_posts>article:nth-child(n+5) {
        display: grid;
    }

    @media (width >=600px) {
        .blog .blog_posts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto;
            gap: 103px 88px;
            max-width: 1106px;
            margin: auto;
        }
    }
}


/* category_page ------------------------------------------------------------------------------------------*/
/* category_page ------------------------------------------------------------------------------------------*/
.category_page {
    .tag {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .tag a {
        display: inline-block;
        padding: 0 12px;
        height: 28px;
        line-height: 28px;
        border: 1px solid #000;
        text-align: center;
        text-decoration: none;
        color: inherit;
        box-sizing: border-box;
        white-space: nowrap;

    }

    .post img,
    .wp-post-image {
        width: 330px;
        max-height: 250px;
        aspect-ratio: 330 / 250;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    @media (width >=600px) {}
}

/* article_all-pag ------------------------------------------------------------------------------------------*/
/* article_all-pag ------------------------------------------------------------------------------------------*/
.article_all-page {

    .inside_inner {
        width: 90%;
        max-width: 1106px;
        margin-right: auto;
        margin-left: auto;
    }

    /* main -----------------------------------*/

    .subgrid {
        display: grid;
        height: 100%;
    }

    .post-box {
        display: grid;
        grid-template-rows: auto auto 1fr auto;
        gap: 10px;
        height: 100%;
    }

    @media (width >=600px) {
        .inside_inner {
            width: 90%;
            max-width: 1106px;
            margin-right: auto;
            margin-left: auto;
        }

        /* main -----------------------------------*/



    }
}

/* search-pag ------------------------------------------------------------------------------------------*/
/* search-pag ------------------------------------------------------------------------------------------*/

.search-page {

    h2 {
        font-size: 25px;
    }

    .blog_posts>p {
        display: block;
        grid-column: 1 / -1;
        margin: 40px 0;
    }


    @media (width >=600px) {
        h2 {
            font-size: 36px;
        }
    }
}

/* notfound-page ------------------------------------------------------------------------------------------*/
/* notfound-page ------------------------------------------------------------------------------------------*/

.notfound-page {
    .page-404 {
        padding-top: 150px;
        padding-bottom: 40px;
    }

    .btn-home {
        display: inline-block;
        padding: 12px 30px;
        border: 1px solid #000;
        background-color: #fff;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .btn-wrapper {
        text-align: right;
        margin-top: 40px;
    }

    .btn-home:hover {
        background-color: #000;
        color: #fff;
        border-color: #000;
        cursor: pointer;
    }

    @media (width >=600px) {}
}