/*
リニューアル用CSS
*/

/* =============================
    基本レイアウト
============================= */
header {
    position: relative;
    background: transparent;
    padding: 20px 0 0;
    text-align: center;
    z-index: 10;
}

/* ロゴ */
.header-logo img {
    width: 200px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .header-logo img {
        width: 33.333vw;
    }
}


/* =============================
    Google Font
============================= */
.notob {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}


.m100 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.m300 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.m400 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.m500 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.m700 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.m600 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.m900 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    font-style: normal;
}


/* =============================
    メニュー（PC）
============================= */
.header-menu {
    background: #fff;
    /* border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; */
    position: relative;
    z-index: 20;
    transition: all 0.3s ease;
    padding:5px 0;
    @media screen and (max-width: 768px) {
        padding:0;
    }
}

.header-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-menu ul {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 40px 10px 35px;
}









#menuUl {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: relative; /* ★基準 */
}

#menuUl > li > ul {
    display: none;
    position: absolute;

    /* ★ メニュー左端から表示 */
    left: 0;
    max-width: 1100px;
    width: 100%;

    padding: 12px 16px;
    box-sizing: border-box;

    /* display: flex; */
    gap: 16px;
    flex-wrap: wrap;

    list-style: none;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;

    justify-content: flex-start;
}

#menuUl > li:hover > ul {
    display: flex;
}


/* 上に出す（デフォルト） */
#menuUl > li > ul {
    bottom: calc(100% + 0px);
}

/* 下に出す（class指定） */
.header-menu.fixed > #menuUl > li > ul {
    top: calc(100% + 0px);
    bottom: auto;
}






.header-menu li {
    list-style: none;
}

.header-menu li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 19px;
}

@media screen and (max-width: 768px) {
    .header-menu li a {
        font-size: 18px;
    }
}



/* ログインボタン（右端） */
.header-menu li.login a {
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 4px;
    color: #333;
    /* font-weight: bold; */
}

/* =============================
    スマホ（ハンバーガーメニュー）
============================= */
.hamburger {
    display: none;
    position: fixed;
    right: 20px;
    top: 30px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* --- .hamburgerに.showが付いた時の「×」アニメーション --- */

/* 1番目の棒：下に移動して45度回転 */
.hamburger.show span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

/* 2番目の棒：透明にして消す */
.hamburger.show span:nth-child(2) {
    opacity: 0;
}

/* 3番目の棒：上に移動してマイナス45度回転 */
.hamburger.show span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* スマホ（ハンバーガーメニュー） */
@media screen and (max-width: 768px) {
    .header-menu ul {
        display: none;
        flex-direction: column;
        padding: 0;
    }

    #menuUl{
        display: none;
    }

    ul#menuUl.show{
        display: flex;
    }

    .header-menu ul.show {
        display: flex;
    }

    .header-menu ul li {
        border-bottom: 1px solid #eee;
        text-align: left;
        padding: 10px 20px;
        background: #fff;
        /* 必要なら */
    }

    /* ハンバーガー表示＋右上に固定 */
    .hamburger {
        display: flex;
        position: fixed;
        /* ←ここで画面に対して固定 */
        top: 10px;
        /* 画面上からの距離 */
        right: 10px;
        /* 画面右からの距離 */
        z-index: 9999;
        /* メニューやスライダーより上に */
    }
}



@media screen and (max-width: 768px) {

    /* スマホ時は最初からメニューを固定する */
    #menu.header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    /* スマホ時はメニュー分の高さを確保 */
    header {
        padding-top: 30px;
        /* メニューの高さに合わせて調整 */
    }
}




/* =============================
    フロント・ページ　カテゴリー
============================= */


/* 全体 */
.hb25-card-section {
    background: transparent;
    padding: 80px 20px 0;
    text-align: center;
}

/* タイトル */
.hb25-card-section-title {
    font-size: 40px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .hb25-card-section-title {
        font-size: 6.667vw;
        margin-bottom: 1.667vw;
    }
}

/* サブタイトル */
.hb25-card-section-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

@media screen and (max-width: 768px) {
    .hb25-card-section-subtitle {
        font-size: 3.333vw;
        margin-bottom: 5vw;
        color: #555;
    }
}

/* カードのグリッド */
.hb25-card-grid {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* カード */
.hb25-card-item {
    display: block;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb25-card-item:hover {
    transform: translateY(-4px);
}

/* カード画像 */
.hb25-card-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* カードテキスト */
.hb25-card-text {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    text-align: left;
}

/* ===========================
   スマートフォン時（2列）
=========================== */
@media screen and (max-width: 768px) {

    .hb25-card-grid {
        grid-template-columns: repeat(2, 1fr);
        /* gap: 11.667vw 3.333vw; */
        gap: 6.667vw;
    }

    /* 9枚目（奇数最後）を左寄せ */
    .hb25-card-grid .hb25-card-item:nth-child(9) {
        justify-self: start;
    }

    .hb25-card-text {
        margin-top: 1.667vw;
        font-size: 3vw;
    }
}

/* =============================
    フロント・ページ　ご用途別のお花紹介
============================= */

/* 全体ラッパー */
.hb25-banner-section {
    background: #fff;
    margin: 0 auto;
    padding: 60px 0 0;
    text-align: center;
}

/* タイトル */
.hb25-banner-section-title {
    font-size: 40px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .hb25-banner-section-title {
        font-size: 6.667vw;
        margin-bottom: 1.667vw;
    }
}

/* サブタイトル */
.hb25-banner-section-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

@media screen and (max-width: 768px) {
    .hb25-banner-section-subtitle {
        font-size: 3.333vw;
        margin-bottom: 5vw;
        color: #555;
    }
}

/* バナーグリッド */
.hb25-banner-grid {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PCで3列 */
    gap: 20px;
}

/* 各バナー（リンク） */
.hb25-banner-item {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb25-banner-item:hover {
    transform: translateY(-3px);
}

/* バナー画像 */
.hb25-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    max-width: 300px;
}

/* スマートフォン：2列に変更 */
@media screen and (max-width: 768px) {
    .hb25-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        /* SPで2列 */
        gap: 3vw 6.667vw;
        width: 83.333vw;
    }

    .hb25-banner-section {
        padding: 40px 15px;
    }

    .hb25-banner-section-title {
        font-size: 6.667vw;
        margin-bottom: 1.667vw;
    }

    .hb25-banner-section-subtitle {
        font-size: 3.333vw;
        margin-bottom: 5vw;
        color: #555;
    }
}

/* =============================
    フロント・ページ　バナーエリア
============================= */

/* セクション全体 */
.hb25-simple-banner-section {
    background: #F5F2EE;
    padding: 40px 20px;
}

/* グリッド */
.hb25-simple-banner-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PCでは3列 */
    gap: 30px 50px;
}

/* バナーリンク */
.hb25-simple-banner-item {
    display: block;
    text-decoration: none;
}

.hb25-simple-banner-item:hover {
    transform: translateY(-3px);
}

/* バナー画像 */
.hb25-simple-banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホでは2列表示 */
@media screen and (max-width: 768px) {
    .hb25-simple-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw 3.333vw;
        width: 93.333vw;
    }

    .hb25-simple-banner-section {
        padding: 30px 15px;
    }
}

/* =============================
    フロント・ページ　人気コラム
============================= */

/* セクション全体 */
.hb25-four-banner-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

/* タイトル */
.hb25-four-banner-title {
    font-size: 40px;
    margin-bottom: 10px;
}

/* サブタイトル */
.hb25-four-banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

/* バナーのグリッド */
.hb25-four-banner-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* PC：4列 */
    gap: 27px;
}

/* 各バナー */
.hb25-four-banner-item {
    display: block;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.hb25-four-banner-item:hover {
    transform: translateY(-3px);
}

/* バナー画像 */
.hb25-four-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* テキスト */
.hb25-four-banner-text {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .hb25-four-banner-text {
        margin-top: 1.667vw;
        font-size: 3vw;
        font-weight: 600;
        color: #333;
        text-align: left;
    }
}

/* スマホでは2列 */
@media screen and (max-width: 768px) {
    .hb25-four-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6.667vw;
        width: 83.333vw;
    }

    .hb25-four-banner-title {
        font-size: 6.667vw;
        margin-bottom: 1.667vw;
    }

    .hb25-four-banner-subtitle {
        font-size: 3.333vw;
        margin-bottom: 5vw;
        color: #555;
    }

    .hb25-four-banner-section {
        padding: 40px 15px;
    }
}

.column-header{
    padding: 20px 0 0;
}

/* =============================
    フロント・ページ　お知らせ
============================= */

/* セクション全体 */
.hb25-list-section {
    background: #F5F2EE;
    padding: 50px 20px;
    text-align: center;
}

/* タイトル */
.hb25-list-title {
    font-size: 40px;
    margin-bottom: 10px;
}

/* サブタイトル */
.hb25-list-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

/* リスト本体 */
.hb25-list-items {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 1000px;
    width: 100%;
}

/* リストアイテム */
.hb25-list-item {
    display: flex;
    /* justify-content: space-between; */
    padding: 15px 20px;
    border-radius: 6px;
}

/* 奇数（1,3,5...）だけ白背景 */
.hb25-list-item:nth-child(odd) {
    background: #fff;
}

/* 左：日付 */
.hb25-list-date {
    display: inline-block;
    padding: 0 0 0 100px;
    font-size: 18px;
    color: #444;
}

@media screen and (max-width: 768px) {
    .hb25-list-date {
        padding: 0;
        font-size: 3vw;
    }
}

/* 右：タイトル */
.hb25-list-text {
    display: inline-block;
    padding: 0 0 0 50px;
}

.hb25-list-text a {
    color: #646464;
    font-size: 18px;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .hb25-list-text a {
        font-size: 3vw;
    }
}

.hb25-list-text a:hover {
    opacity: 0.8;
}

/* 下部リンク */
.hb25-list-more {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .hb25-list-more {
        text-align: right;
    }
}

.hb25-list-more-link {
    color: #187FC4;
    text-decoration: underline;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .hb25-list-more-link {
        font-size: 2.667vw;
    }
}

/* スマホ調整 */
@media screen and (max-width: 768px) {


    /* タイトル */
    .hb25-list-title {
        font-size: 6.667vw;
        margin-bottom: 1.667vw;
    }

    /* サブタイトル */
    .hb25-list-subtitle {
        font-size: 3.333vw;
        margin-bottom: 5vw;
        color: #555;
    }

    .hb25-list-item {
        /* flex-direction: column; */
        text-align: left;
        gap: 4px;
    }

    .hb25-list-text {
        font-size: 14px;
    }
}

/* =============================
    フロント・ページ　カードバナー
============================= */

/* セクション全体 */
.hb25-two-banner-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

/* グリッドレイアウト（PCは2列） */
.hb25-two-banner-grid {
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* バナーリンク */
.hb25-two-banner-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.hb25-two-banner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 画像 */
.hb25-two-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

/* スマホ：1列表示に変更 */
@media screen and (max-width: 768px) {
    .hb25-two-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6.667vw;
        width: 83.333vw;
    }
}

.hb25-four-banner-item .post-thumb-square {
    width: 230px;
    height: 230px;
    overflow: hidden;
    border-radius: 10px; /* 角丸がいらなければ削除 */
}
@media screen and (max-width: 768px) {
    .hb25-four-banner-item .post-thumb-square {
        width: 38.462vw;
        height: 38.462vw;
    }
}

.hb25-four-banner-item .post-thumb-square img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 正方形内でトリミング */
    display: block;
}


/* ============================
   ワンカラム基本レイアウト
============================ */
article,
.content-area{

& .hb25-onecol {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.8;
}

/* タイトル & リード */
& .hb25-onecol__title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}
@media screen and (max-width: 768px) {
	& .hb25-onecol__title {
    font-size: 6.667vw;
    margin-bottom: 3.333vw;
	}
}


& .hb25-onecol__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
	& .hb25-onecol__subtitle {
    	font-size: 3.333vw;
    	margin-bottom: 3.333vw;
	}
}

& .hb25-onecol__lead {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #eee;
    border-left: 4px solid #997F4E;
}

/* セクション */
& .hb25-onecol__section {
    margin-bottom: 40px;
}

/* 見出し */
& .hb25-onecol__section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

/* 見出し */
& .hb25-onecol__section h3 {
    font-size: 26px;
    margin-bottom: 15px;
	padding: 0;
    padding-bottom: 8px;
	font-weight: bold;
}

& .hb25-onecol__section h3 {
    font-size: 18px;
    margin: 25px 0 10px;
}

/* 段落 */
& .hb25-onecol__section p {
    margin-bottom: 1em;
}

/* リスト */
& .hb25-onecol__section ul,
& .hb25-onecol__section ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
}

& .hb25-onecol__section li {
    margin-bottom: 0.3em;
}

/* ボックス */
& .hb25-onecol__box {
    margin: 20px 0;
    padding: 15px 20px;
    background: #eff6ff;
    border-radius: 4px;
}

& .hb25-onecol__box-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: bold;
}

/* 引用 */
& .hb25-onecol__quote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #9ca3af;
    background: #f9fafb;
    font-style: italic;
}

& .hb25-onecol__quote p {
    margin: 0 0 5px;
}

& .hb25-onecol__quote cite {
    font-size: 13px;
    opacity: 0.8;
}

/* テーブル */
& .hb25-onecol__table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px;
    font-size: 14px;
}

& .hb25-onecol__table th,
& .hb25-onecol__table td {
    border: 1px solid #d1d5db;
    padding: 8px 10px;
}

& .hb25-onecol__table th {
    background: #f3f4f6;
    font-weight: bold;
}

/* ボタン */
& .hb25-onecol__button-wrap {
    text-align: center;
    margin-top: 10px;
}

& .hb25-onecol__button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
    transition: opacity 0.2s ease, transform 0.1s ease;
}

& .hb25-onecol__button:hover {
    opacity: 0.9;
    transform: translateY(1px);
}

/* 画像 */
& .hb25-onecol img {
    max-width: 100%;
    height: auto;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
    & .hb25-onecol {
        padding: 30px 15px;
        font-size: 15px;
    }

    & .hb25-onecol__lead {
        font-size: 15px;
    }
}



}
body.page{
	background: #fff;
}
#main{
	max-width:1000px;
	margin: 0 auto;
}

.graypg{
	padding: 20px;
	background-color: #F5F2EE;
}

.btn400{
	display: inline-block;
	width: 400px;
}
@media screen and (max-width: 768px) {
	.btn400{
		width: 66.667vw;
	}
}

.hb25-onecol p{
	font-size:16px;
}
@media screen and (max-width: 768px) {
	.hb25-onecol p{
		font-size:3.667vw;
	}
}

@media screen and (max-width: 768px) {
	.gallery-columns-3{
		display: flex;
		flex-wrap: wrap;
	}
	.gallery-columns-3 .gallery-item{
		width: 45%;
	}
	.gallery-columns-3+br{
		display: none;
	}
	.gallery .gallery-item{
		float:none;
	}
}

.archive.category-9{
    & article{
        border: 1px solid #333;
        @media screen and (max-width: 768px) {
            width: 98%;
            margin: 0 auto 15px;
        }
    }
    & .entry-title{
        text-align: left;
    }
    & .entry-title a{
        
    }
    & .entry-meta{
        text-align: right;
    }
    & .cat-links{
        display: none;
    }
}

.type-page .wp-caption{
    border: 0;
}

/* 納品事例 */
.page-id-777{
    & .gallery-item{
        & a{
            & img{
                width: 100%;
                border-radius: 0;
            }
        }
    }
}

h2.kocho-ac {
  color: #997f4e;
  padding-bottom: 8px;
  border-bottom: 2px solid #997f4e;
  margin-top: 30px;
  margin-bottom: 10px;
  @media screen and (max-width: 768px) {
    font-size: 18px;
  }
}


/* =============================
   フッター全体
============================= */
.site-footer {
    position: relative;
    color: #fff;
    padding: 40px 20px 20px;
     /* 背景画像 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 必要なら薄いオーバーレイ（背景がうるさい場合） */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ロゴ */
.footer-logo {
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .footer-logo {
        margin-bottom: 5vw;
    }
}

.footer-logo img {
    max-width: 305px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .footer-logo img {
        max-width: 50.833vw;
        height: auto;
    }
}

/* =============================
   4カラムレイアウト
============================= */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

/* カラム共通 */
.footer-column {
    font-size: 14px;
}

/* 見出し */
.footer-title {
	color:#646464;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .footer-title {
        font-size: 2.667vw;
    }
}

/* リスト */
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-list li a {
    color: #646464;
    text-decoration: none;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .footer-list li a {
        color: #646464;
        text-decoration: none;
        font-size: 2.667vw;
    }
}

.footer-list li a:hover {
    text-decoration: underline;
}

/* テキスト */
.footer-text {
    font-size: 16px;
    line-height: 1.7;
}
@media screen and (max-width: 768px) {
    .footer-text {
        font-size: 2.667vw;
    }
}

/* コピーライト */
.footer-copy {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

/* =============================
   スマートフォン（2カラム×縦並び）
============================= */
@media screen and (max-width: 768px) {
    .footer-columns {
        /* grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px; */
        display: flex;
        flex-wrap: wrap;
    }

    .footer-inner {
        text-align: left;
    }

    .footer-logo {
        text-align: center;
    }

    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
    .order3{
        order: 3;
    }
    .order4{
        order: 4;
    }
    
    .footer-column{
        width: 48%;
    }
}

/* =============================
    シングルページ
============================= */

body.single-post{
    background-color: #fff;
    & .entry-content_thumbnail{
        margin-bottom: 20px;
    }
    & .entry-content_thumbnail img{
        width: 100%;
    }
    & article h1.entry-title {
        background-color: #fff;
        width: auto;
        color: #997F4E;
        font-weight: bold;
        border-left:3px solid #997F4E;
        font-size: 18px;
        margin-bottom: 0px;
        padding: 5px 0 5px 5px;
        line-height: 1.4;
        @media screen and (max-width:768px) {
            background-color: #fff;
            width: auto;
            color: #997F4E;
            font-weight: bold;
            border-left:3px solid #997F4E;
            font-size: 20px;
            margin-bottom: 0px;
            padding: 10px 0 10px 10px;
            line-height: 1.2;
        }
    }
    & .entry-meta-date{
        text-align: right;
    }
    & #primary {
        max-width: 1000px;
        float: none;
        margin: 0 auto;
    }
}

/*
ボタン等
*/
#btnNewReg{
    text-decoration: none;
}

.single .wp-caption{
    border: 0;
}