@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');

/* =============================================================================
   base
   ========================================================================== */

html {
    overflow-x: hidden;
}

body {
    color: #000;
    font-size: 16px;
    line-height: 31px;
    font-feature-settings: "palt";
    overflow-x: hidden;
    margin: 0px !important;
}

* {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

th,
td {
    line-height: 1.8;
}

a {
    color: #675a54;
    text-decoration: none;
    -moz-transition: 0.25s linear;
    -webkit-transition: 0.25s linear;
    -o-transition: 0.25s linear;
    transition: 0.25s linear;
}

a:focus {
    outline: none;
}

.main a {
    color: #675a54;
    text-decoration: underline;
}

a:hover {
    color: #675a54;
    text-decoration: none;
}

a img:hover {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;

    -moz-transition: 0.25s linear;
    -webkit-transition: 0.25s linear;
    -o-transition: 0.25s linear;
    transition: 0.25s linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: normal;
    line-height: 1.8;
}

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

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 18px;
    }
}


p {
    margin-bottom: 20px;
}

p:last-child,
p:only-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #534741;
}

em {
    color: #000;
    font-style: normal;
}

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

/*レスポンシブ設定*/
@media screen and (max-width: 639px) {

    a[href^="tel:"] {
        pointer-events: inherit;
    }

}

li {
    list-style: none;
}

iframe {
    width: 100% !important;
}



/* =============================================================================
   bpts
   ========================================================================== */
/* spacer */
.bpts__spacer-20 {
    width: 100%;
    height: 20px;
}

.bpts__spacer-40 {
    width: 100%;
    height: 40px;
}

.bpts__spacer-70 {
    width: 100%;
    height: 70px;
}

.bpts__spacer-80 {
    width: 100%;
    height: 80px;
}

.bpts__spacer-120 {
    width: 100%;
    height: 120px;
}


/* 改行処理 */
.bpts__br-sp-no {
    display: block;
}

@media (max-width: 768px) {
    .bpts__br-sp-no {
        display: none;
    }
}

.bpts__br-pc-no {
    display: none;
}

@media (max-width: 768px) {
    .bpts__br-pc-no {
        display: block;
    }
}

/*　PC表示時任意の場所で改行　*/
.bpts_br_pc::before {
    content: "\A";
    white-space: pre;
}

@media (max-width: 769px) {

    /*　PC表示時任意の場所で改行をレスポンシブ時解除　*/
    .bpts_br_pc::before {
        display: none;
    }

    /*　レスポンシブ時任意の場所で改行　*/
    .bpts_br::before {
        content: "\A";
        white-space: pre;
    }
}


/* text alignment */
.bpts__align-left {
    width: 100%;
    margin: 2rem 0;
    text-align: left;
}

@media (max-width: 768px) {
    .bpts__align-left {
        text-align: center;
    }
}

.bpts__align-right {
    width: 100%;
    margin: 2rem 0;
    text-align: right;
}

@media (max-width: 768px) {
    .bpts__align-right {
        text-align: center;
    }
}

.bpts__align-center {
    width: 100%;
    margin: 4rem 0 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .bpts__align-center {
        text-align: center;
        margin: 2rem 0 2rem 0;
    }
}


/* =============================================================================
   section
   ========================================================================== */

section {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* =============================================================================
   layout parts
   ========================================================================== */

/* 中央2列 */


/* 左30、右60 */


/* 左60、右30 */


/* 中央3つカード */


/* テーブル、左見出し */


/* 中央2列のサムネイル付きカード */


/* 黒ボタン */



/* =============================================================================
   header
   ========================================================================== */


.header {
    position: relative;
    z-index: 1;
}

/* 背景色を途中で切り替え */
.header {
    background-image:
        linear-gradient(to bottom, #fff 0px, #fff 36px, transparent 36px),
        linear-gradient(to right, #fff 0%, #fff 50%, #f5f1e8 50%, #f5f1e8 100%);
}

@media screen and (max-width: 768px) {
    .header {
        padding: 3.2vw 3.2vw 1.2vw 3.2vw;
    }

    .header {
        background-image: url("../../assets/images/header_radius_bg.svg");
        /* スマホ用の背景画像に差し替え */
        background-size: 400px;
        background-position: right -190px top 40px;
        background-repeat: no-repeat;
    }
}





/* トップ部分（右上リンク） */
.header__top {
    padding: 5px 20px 0px 20px;
}

.header__top-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* デフォルトでは両方の場所に表示しないように */
.header__top-clone {
    display: none;
}

/* スマホ時のスタイル（768px以下） */
@media screen and (max-width: 768px) {
    .header__top {
        display: none;
        /* 元の位置では非表示 */
    }

    .header__top-clone {
        display: block;
        /* クローンを表示 */
        padding: 10px 20px;
    }
}







/* h1ワンコピー */
.header__title-h1 h1 {
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .header__title-h1 h1 {
        display: none;
    }
}




.header__links {
    display: flex;
    gap: 20px;
}

.header__link {
    text-decoration: none;
    color: #000;
    font-size: 10px;
}

/* ロゴとメニュー部分 */
.header__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 0px;
}

/* ロゴエリア */
.header__logo-area {
    width: 250px;
}

.header__logo-area img {
    width: 310px;
    margin: 0px 10px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header__logo-area {
        width: 100%;
        text-align: center;
    }

    .header__logo-area img {
        width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .header__logo-area {
        width: 100%;
        text-align: left;
    }
}




/* メニュー（アイコンとテキスト縦並び） */
.header__menu {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .header__menu {
        gap: 0px;
    }
}


/* 角丸背景 */
.header__menu-wrap {
    background-color: #f5f1e8;
    /* 背景色はお好みで */
    border-radius: 50px 0 0 0px;
    padding: 0px 30px;
    display: inline-block;
}




.header__menu li {
    width: 80px;
    height: 100px;
    /* 高さを指定しておくと下寄せが明確になります */
}

/* プロジェクト概要のみ個別指定 */
.header__menu li.wide {
    width: 110px;
    /* 他より広めに */
    white-space: nowrap;
    /* 改行させない */
}


.header__menu li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* ← ここを追加して下寄せに */
    height: 100%;
    /* 必要に応じて高さを指定 */
    color: #000;
    text-decoration: none;
}

.header__menu img {
    width: 36px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header__menu span {
    margin-top: 5px;
    font-size: 14px;
    display: block;
}
























/* ハンバーガーボタン */
.header__hamburger {
    width: 48px;
    height: 48px;
    background-color: #000;
    border-radius: 25px;
    /* 角を丸く */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 13px;
    transition: background-color 0.3s;
}

/* トグル内の白い線 */
.header__hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    text-align: center;
    transition: all 0.3s ease;
}

/* ハンバーガー open 時のアニメーション */
.header__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

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

.header__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}





/* PCサイズではハンバーガーを非表示 */
@media screen and (min-width: 769px) {
    .header__hamburger {
        display: none !important;
    }
}













/* メニュー背景エリア */
.header__menu-bg {
    background-color: #f5f1e8;
    border-radius: 50px 0 0 0;
    padding: 5px 0px 15px 0px;
}

/* モバイル時のナビゲーション */
@media screen and (max-width: 768px) {

    .header__hamburger {
        display: block;
    }


    .header__nav {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }


    .header__menu-wrap {
        width: 100%;
        padding: 0px 0px;
        border-radius: 20px 20px 20px 20px;
        border: 2px solid #333;
        margin: 0 auto;
        text-align: center;
    }



    .header__menu-bg {
        border-radius: 0px 0 0 0;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #f5f1e8;
        opacity: 0.98;
        z-index: 999;
        clip-path: circle(0% at 100% 0);
        /* 初期は右上に小さい円 */
        transition: clip-path 0.3s ease;
        pointer-events: none;
        /* 非表示時はクリック無効 */
        padding-top: 90px;
    }

    .header__menu-bg.active {
        clip-path: circle(150% at 100% 0);
        /* 円が画面を覆う */
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .header__hamburger {
        display: flex;
    }

    .header__menu {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        padding: 10px 0px;
    }

    .header__menu li {
        width: 100%;
        height: 50px;
    }

    .header__menu li a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        gap: 10px;
        font-size: 16px;
    }

    /* 個別指定解除 */
    .header__menu li.wide {
        width: 100%;
    }

    .header__menu span {
        text-align: left;
        /*width: 230px;*/
    }

    .header__menu img {
        width: 30px;
        margin-left: 25px;
        margin-right: 10px;
    }

    .header__logo-area {
        position: relative;
        z-index: 1;
    }

    .header__logo-area img {
        width: 150px;
    }

    .header__links {
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0px;
    }
}




/* hoverでアニメーション */
/* メニューの全体レイアウトは崩さず、テキストにだけアニメーションを適用 */
/* 初期状態：テキスト */
.header__menu a span {
    display: inline-block;
    position: relative;
    transition: transform 0.6s ease;
    transform-origin: center;
    backface-visibility: hidden;
    /* 滑らかな回転のため */
}

/* 下線のベース（非表示） */
.header__menu a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.1s ease;
    transition-delay: 0.2s;
    /* 回転完了後に開始 */
}

/* ホバー時：X軸回転 */
.header__menu a:hover span {
    transform: rotateX(360deg);
}

/* ホバー時：回転完了後に下線が伸びる */
.header__menu a:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}





/* タグボタン */

/* タグボタンのsection */
.header__tag-wrap {
    background-color: #d0af6d;
}

.header__tag-nav {
    padding: 10px 20px;
}

.header__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__tag-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    /* 画像と文字の間隔 */
    padding: 0px 12px;
    background: #fff;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    border: 1px solid #caa13a;
    transition: 0.2s;
}

.header__tag-list li a:hover {
    background: #f6e3b0;
}

/* アイコン */
.header__tag-list li a img {
    height: 15px;
    margin-right: 0px;
    object-fit: contain;
    display: block;
}






/* =============================================================================
   sitetop
   ========================================================================== */

/* inner共通 */
.main-visual-wrap,
.post-list-wrap {
    /*width: 1080px;*/
    border: 1px solid red;
}










/* スライダー全体を横いっぱいにする */
.mainvisual-wrapper {
    background-color: #f5f1e8;
    padding: 0px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: block;
    flex-direction: column;
}

.mainvisual {
    width: calc(100% - 30px);
    /* ← wrapperの右paddingと合わせる */
    max-width: 95%;
    /* ← スライド全体の最大幅を制限 */
    margin-left: 0;
    /* ← 左詰め */
    margin-right: auto;
    /* ← 右に余白を確保 */
    border: 2px solid #333;
    border-left: 0px solid #333;
    height: 604px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .mainvisual {
        margin-left: 0;
        max-width: 95%;
        border-radius: 0px 30px 0px 0px;
        height: 500px;
    }
}

/* 4k */
@media (min-width: 1980px) {
    .mainvisual {
        max-width: 90%;
        border-left: 1px solid #333;
    }
}










.mainvisual .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 30px 0px 0px;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

@media screen and (max-width: 768px) {
    .mainvisual .slick-slide img {
        width: 90%;
        border-radius: 0px 30px 0px 0px;
    }
}








.mainvisual .slick-slide {
    height: 100%;
    /* 親要素の高さを継承 */
}


/* スライドショー枠 */
.mainvisual__slider {
    width: 95%;
    border-radius: 0px 50px 0px 0px;
    border: 2px solid #333;
    border-left: 0px solid #333;
}





.mainvisual__slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
    border-radius: 0px 50px 0px 0px;
}



@media screen and (max-width: 768px) {
    .mainvisual__slide {
        border-radius: 0px 50px 0px 0px;
        height: 100%;
    }
}

.slick-track {
    height: 600px;
    /* 背景画像、mainvisualと対 */
}

@media screen and (max-width: 768px) {
    .slick-track {
        height: 496px;
        /* 背景画像、mainvisualと対 */
    }
}





/* キャプション枠 */
.mainvisual__caption {
    position: absolute;
    z-index: 1;
    bottom: 70px;
    left: 0px;
    /* ブラウザの中央基点に */
    /*transform: translateX(-50%);*/
    /* キャプションの幅の半分だけ左へ戻す（中央寄せ） */
    background: #fff;
    border: 2px solid #333;
    border-left: 0px solid #333;
    border-bottom: 2px solid #333;
    border-top-left-radius: 0px;
    border-top-right-radius: 30px;
    padding: 0px;
    max-width: 480px;
    width: 90%;
    /* スマホ対応で横幅制限も */
    min-height: 150px;
}

@media screen and (max-width: 768px) {
    .mainvisual__caption {
        left: 0px;
    }
}


/* タイトル */
.mainvisual__caption h2 {
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
    color: #000;
    padding: 10px 20px;
}





/* 下部日付とボタン */
.mainvisual__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    border-top: 2px solid #000;
    padding: 10px 20px;
}

.mainvisual__date {
    font-weight: bold;
    font-size: 16px;
}

.mainvisual__button {
    background-color: #1e120c;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
}




/* ページネーション */
.mainvisual-dots {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d0af6d;
}

.mainvisual-dots ul {
    display: inline-flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mainvisual-dots li {
    display: flex;
}

.mainvisual-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    margin: 0 4px;
    padding: 0;
    box-sizing: border-box;
    display: inline-block;
    /* ← flexは不要なら外す */
    font-size: 0;
}

.mainvisual-dots li.slick-active button {
    background: #000;
}










.mainvisual__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 15px;
    border-top: 2px solid #333;
}

.caption-date {
    font-size: 14px;
    color: #333;
}

.caption-link {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}






.slick-slide {
    z-index: -1 !important;
}











/* --------------------------------- 投稿リスト */
/* セクション全体 */
.news-archive {
    background: linear-gradient(to bottom,
            #d0af6d 0%,
            #d0af6d 50%,
            #ffffff 50%,
            #ffffff 100%);
    padding: 0px 0;
}


.news-archive__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    max-width: 1080px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-archive__inner {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .news-archive__inner {
        flex-direction: column-reverse;
        width: 90%;
    }
}



.news-archive__content {
    flex: 1;
    padding: 30px 30px;
    border: 2px solid #3a3a3a;
    border-right: 0px solid #3a3a3a;
    background-color: #f1efe8;
    border-radius: 50px 0px 0px 50px;
}

@media screen and (max-width: 768px) {
    .news-archive__content {
        width: 100%;
        padding: 30px 0px;
        border-right: 2px solid #3a3a3a;
        border-radius: 0px 0px 30px 30px;
    }
}




.news-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .news-archive__grid {
        grid-template-columns: 1fr;
        /* スマホでは1カラム */
    }
}





/* ニュースカード */
.news-card {
    width: 415px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    border: 3px solid #e6d7b3;
    /* 薄いベージュ */
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    /* シャドウはホバー時にのみ表示 */
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .news-card {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 1.0);
}

.news-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card__thumb {
    position: relative;
    overflow: hidden;
    /* 拡大画像がはみ出さないように */
    width: 100%;
    height: 215px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-card__thumb {
        height: 155px;
    }
}

@media screen and (max-width: 768px) {
    .news-card__thumb {
        height: 215px;
    }
}





.news-card__thumb img {
    width: 100%;
    height: 100%;
    height: auto;
    object-fit: cover;
    /* none cover 中央トリミング表示 */
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card__thumb img {
    transform: scale(1.05);
}

.news-card__body {
    padding: 16px 0;
    border-top: 2px solid #e6d7b3;
    position: relative;
}

/* カテゴリラベルを画像の左下に重ねる */
.news-card__category {
    position: absolute;
    top: -18px;
    left: 16px;
    z-index: 0;
    display: inline-block;
    background-color: #d0af6d;
    color: #fff;
    font-size: 12px;
    padding: 0px 15px;
    border-radius: 15px;
    margin-bottom: 0;
}

.news-card__title {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin: 0 0 12px;
    line-height: 1.5;

    padding: 0 16px 10px;
    border-bottom: 2px solid #e6d7b3;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}

.news-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    padding-left: 17px;
    margin: 0;
    list-style: none;
}

.news-card__tags li {
    border: 1px solid #888;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
}




/* ボタン */
.news-archive__btn {
    text-align: center;
    margin-top: 30px;
}

.btn {
    min-width: 250px;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
}


/* 縦見出し全体 */
.news-archive__side-title {
    writing-mode: vertical-rl;
    text-align: center;
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    height: auto;
    align-self: stretch;
}

@media screen and (max-width: 768px) {
    .news-archive__side-title {
        writing-mode: initial;
        flex-direction: row;
        width: 100%;
        border: 2px solid #3a3a3a;
        border-bottom: 0px solid #3a3a3a;
        border-radius: 30px 30px 0px 0px;
        overflow: hidden;
    }
}



/* アイコン */
.news-archive__side-title-img-wrap {
    width: 140px;
    height: 140px;
    border: 2px solid #3a3a3a;
    border-radius: 0px 50px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1efe8;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-archive__side-title-img-wrap {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .news-archive__side-title-img-wrap {
        width: 80px;
        height: 100%;
        padding: 20px;
        border-radius: 30px 0px 0px 0px;
        border: 0px solid #3a3a3a;
        border-right: 2px solid #3a3a3a;
    }
}



/* 見出し */
.news-archive__side-title-h2-wrap {
    width: 140px;
    height: 100%;
    border: 2px solid #3a3a3a;
    border-top: 0px solid #3a3a3a;
    border-radius: 0px 0px 50px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #f1efe8;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-archive__side-title-h2-wrap {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .news-archive__side-title-h2-wrap {
        width: 100%;
        height: 73px;
        border: 0px solid #3a3a3a;
        border-radius: 0px 0px 0px 0px;
    }
}





.news-archive__side-title-img-wrap img {
    width: 40px;
    writing-mode: horizontal-tb;
}

.news-archive__side-title-h2-wrap h2 {
    font-size: 60px;
    font-weight: bold;
    padding-top: 50px;
    margin: 0px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-archive__side-title-h2-wrap h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .news-archive__side-title-h2-wrap h2 {
        font-size: 24px;
        padding-top: 0px;
        padding-left: 20px;
    }
}













/* --------------------------------- ニュースリスト（サムネイルが小さい） */
.news-list-section {
    background: #fff;
    border: 2px solid #e6d7b3;
    border-radius: 20px;
    overflow: hidden;
    padding: 0px 0px 40px 0px;
    max-width: 1080px;
    margin: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .news-list-section {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .news-list-section {
        width: 90%;
    }
}

.news-list__inner {
    width: 100%;
}





.news-list__heading {
    text-align: center;
    background: #d0af6d;
    color: #fff;
    padding: 10px 0px;
    border-radius: 0px 0px 0 0;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-list__heading {
    margin-top: 0px;
}

.news-list__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    list-style: none;
    padding: 0px 30px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .news-list__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        /* スマホ向けに余白を調整（任意） */
        gap: 20px 0;
        /* 行間を少し狭める（任意） */
    }
}





.news-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
}

.news-item__thumb {
    overflow: hidden;
    border-radius: 8px;
}

.news-item__thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* hover時に画像を拡大 */
.news-item__link:hover .news-item__thumb img {
    transform: scale(1.2);
}

.news-item__info {
    flex: 1;
    padding-left: 15px;
}

.news-item__title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.5;
}

.news-item__meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.news-item__category {
    background: #eee;
    padding: 0px 15px;
    border-radius: 15px;
    font-size: 12px;
}

.news-item__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}



/* 矢印 */
.news-item__arrow {
    position: relative;
    display: inline-block;
    width: 20px;
    /* 横棒の長さ */
    height: 3px;
    /* 横棒の太さ */
    background: #c8a96b;
    /* ゴールド系 */
    border-radius: 2px;
    /* 丸み */
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* 右下に出る斜めの棒 */
.news-item__arrow::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -8px;
    width: 12px;
    height: 3px;
    background: #c8a96b;
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: left top;
}

/* ホバーで全体を右にスライド */
.news-item__link:hover .news-item__arrow {
    transform: translateX(6px);
}







.news-list__btn {
    text-align: center;
    margin-top: 30px;
}

.btn-black {
    min-width: 200px;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* 日付 */
.news-card__date {
    font-size: 14px;
    text-align: left;
    color: #999;
    margin: 0px 0;
    padding-left: 16px;
}











/* --------------------------------- SNS */
.sns-section {
    display: flex;
    background-color: #d0af6d;
    color: #000;
    border-radius: 0px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .sns-section {
        flex-direction: column;
    }
}




.sns-section__text {
    width: 452px;
    padding: 20px;
    background-color: #d0af6d;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sns-section__label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.sns-section__headline {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.sns-section__btn {
    background-color: #fff;
    color: #d0af6d;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative;
    min-width: 150px;
}



.sns-section__btn::after {
    font-family: "FontAwesome";
    content: "\f04b";
    /* ← fa-chevron-right */
    position: absolute;
    right: 15px;
    top: 48%;
    transform: translateY(-50%);
    color: #d2ae6c;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}



.sns-section__slider {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.sns-slider {
    display: flex;
    width: max-content;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sns-slider img {
    height: 250px;
    width: auto;
    flex-shrink: 0;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}






/* --------------------------------- instagram */
.instagram-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .instagram-section {
        width: 90%;
        padding: 30px 0px;
    }
}



.instagram-section__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.instagram-section__gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-section__gallery img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.3s;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .instagram-section__gallery img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .instagram-section__gallery img {
        width: 150px;
        height: 150px;
    }
}



.instagram-section__gallery img:hover {
    transform: scale(1.05);
}

.instagram-section__btn .btn-black {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
}

.instagram-section__btn .btn-black:hover {
    background-color: #333;
}










/* --------------------------------- ゲストハウス */
.guesthouse-banner {
    position: relative;
    overflow: hidden;
}

.guesthouse-banner__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 330px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    /* 中央配置のためpaddingを削除 */
}

@media screen and (max-width: 768px) {
    .guesthouse-banner__link {
        height: 330px;
    }
}

/* 背景画像は::beforeで表示 */
.guesthouse-banner__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/guesthouse_bg.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: -1;
}

/* ホバー時に背景だけ拡大 */
.guesthouse-banner__link:hover::before {
    transform: scale(1.1);
}

.guesthouse-banner__title {
    margin: 0;
    /* 中央配置のため余白をリセット */
}

.guesthouse-banner__logo {
    width: 500px;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .guesthouse-banner__logo {
        width: 375px;
        max-width: 90%;
    }
}







/* --------------------------------- クッキー */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    padding: 0px 0px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    z-index: 9999;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    padding: 20px;

}

.cookie-accept-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-accept-btn {
        align-self: flex-end;
    }
}










/* =============================================================================
   lower
   ========================================================================== */

/* --------------------------------- substage */
.substage__hero {
    position: relative;
    height: 300px;
    /* 任意の高さ */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f1e8;
}

@media (max-width: 768px) {
    .substage__hero {
        height: 200px;
    }
}



.substage__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 98%;
    background-image: url("../../assets/images/substage_bg_watch.jpg");
    background-size: cover;
    background-position: center calc(50% - 0px);
    border-radius: 0px 50px 0px 0;
    /* ← 任意で角丸を調整 */
    z-index: 1;
    border: 2px solid #3a3a3a;
    border-left: 0px solid #3a3a3a;
}

/* カテゴリページごとにサブステージ背景画像を変更 */
/* カテゴリ：watch のとき */
body.category-watch .substage__bg {
    background-image: url("../../assets/images/substage_bg_watch.jpg");
}

/* カテゴリ：eat のとき */
body.category-eat .substage__bg {
    background-image: url("../../assets/images/substage_bg_eat.jpg");
}

/* カテゴリ：play のとき */
body.category-play .substage__bg {
    background-image: url("../../assets/images/substage_bg_play.jpg");
}

/* カテゴリ：souvenir のとき */
body.category-souvenir .substage__bg {
    background-image: url("../../assets/images/substage_bg_souvenir.jpg");
}

/* カテゴリ：information のとき */
body.category-information .substage__bg {
    background-image: url("../../assets/images/substage_bg_watch.jpg");
}



.substage__inner {
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
    padding: 20px;
}

.substage__icon {
    width: 40px;
    margin-bottom: 0px;
}

.substage__title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.9);
    /* X方向, Y方向, ぼかし, 色 */
}

.substage__subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 0px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.9);
}







/* パンくずリスト */
.block__breadcrumb {
    border: 0px solid red;
    width: 100%;
    max-width: 1200px;
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 2rem auto;
    padding-left: 0px;
}

.block__breadcrumb ul {
    display: flex;
    flex-direction: row;
    padding-left: 0px;
    flex-wrap: wrap;
}


.block__breadcrumb li {
    padding-left: 30px;
    position: relative;
    font-size: 12px;
}

.block__breadcrumb li:first-child {
    padding-left: 0px;
}

/* 矢印アイコン */
.block__breadcrumb li::before {
    position: absolute;
    font-family: FontAwesome;
    content: '\f054';
    font-size: 12px;
    top: 2px;
    left: 15px;
}

/* 矢印アイコン、先頭は無し */
.block__breadcrumb li:first-child::before {
    display: none;
}

/* 記事内容の最初のタイトル */
.lower__article-title {
    width: 100%;
    margin: 0rem 0 2rem 0;
}

@media (max-width: 768px) {
    .block__breadcrumb {
        width: 100%;
    }
}


/* サブステージの画像エリア */
.title-area {
    position: relative;
    z-index: 0;
}







/* --------------------------------- 下層ページ枠 */
.contents__lower {
    width: 100%;
    height: 100%;
    margin-bottom: 100px;
}

.contents__lower {
    width: 100%;
    background: linear-gradient(to bottom,
            #f5f1e8 0px,
            #f5f1e8 400px,
            #fff 400px,
            #fff 100%);
}


.contents__lower-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    height: 100%;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contents__lower-inner {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .contents__lower-inner {
        width: 90%;
    }
}






/* --------------------------------- カテゴリページ枠 */
.category-archive__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .category-archive__inner {
        padding: 0 0px;
    }
}


.category-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .category-archive__grid {
        grid-template-columns: 1fr;
    }
}

/* ニュースカード */
.category-news-card {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    border: 3px solid #e6d7b3;
    /* 薄いベージュ */
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    /* シャドウはホバー時にのみ表示 */
}

@media screen and (max-width: 768px) {
    .category-news-card {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.category-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 1.0);
}

.category-news-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}




/* --------------------------------- ページネーション */
.pagination-wrap ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.pagination-wrap li a,
.pagination-wrap li span {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.pagination-wrap li span.current {
    background-color: #000;
    color: #fff;
}

.pagination-wrap li a:hover {
    background-color: #000;
    color: #fff;
}


/* お知らせページカテゴリのみ、異なる一覧レイアウト。分岐はcategory.phpから */
.category-contents__lower {
    background: none;
}

.category-news-list-section {
    background: none;
    border: 0px solid #e6d7b3;
}

.category-news-list__grid {
    padding: 0px 0px;
}



/* --------------------------------- single.php関係 */

/* 投稿ページタイトル */
.title--lower {
    font-weight: bold;
    text-align: left;
    border-bottom: 2px solid #000;
    /* 黒の下線 */
    padding-bottom: 0.5em;
    /* 下線との間隔 */
    display: inline-block;
    /* 必要に応じて幅調整 */
}

/* タグ個別調整 */
.news-card__tags-ul {
    padding-left: 0px;
}

/* 日付個別調整 */
.post_timedate-left {
    text-align: left;
    margin-top: 20px;
}

/* アイキャッチ画像を投稿ページの一番上に表示 */
.post-thumbnail-head {
    width: 100%;
}

.post-thumbnail-head img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}



/* 投稿ページの中の見出し */
h2.wp-block-heading {
    font-size: 20px;
    font-weight: bold;
}

h3.wp-block-heading {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

h3.wp-block-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    /* 中央揃え */
    width: 4px;
    height: 1em;
    /* 文字の高さに合わせる */
    background-color: #D8B36C;
    border-radius: 2px;
}


/* 画像 */
.wp-block-image {
    width: 100%;
}

.wp-block-image img {
    width: 100%;
    border-radius: 30px;
}


/* ACF用のテーブル */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    border-bottom: 2px solid #ccc;
}

.custom-table th,
.custom-table td {
    border-top: 2px solid #ccc;
    padding: 15px 0px 15px 20px;
    font-size: 13px;
    text-align: left;
    vertical-align: top;
}

.custom-table th {
    background-color: #eae6df;
    font-weight: bold;
    width: 25%;
}

.custom-table td {
    width: 75%;
}


/* ACF用アイコンリスト */
.icon-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3列 */
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    max-width: 100%;
}

@media screen and (min-width: 769px) {
    .icon-list {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
    }
}

@media screen and (min-width:481px) and (max-width:768px) {
    .icon-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* レスポンシブ対応（スマホで2列） */
@media screen and (max-width: 480px) {
    .icon-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 各アイコンアイテムの共通スタイル */
.icon-list li {
    background-color: #ccc;
    /* 非アクティブ時の背景 */
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 50px 0px 4px;
    /* 上に余白を大きくとる */
    font-size: 11px;
    line-height: 1.4;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: center 12px;
    /* 上中央に配置 */
    background-size: 35px 35px;
    box-sizing: border-box;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ACF選択済み（true）なら金色背景 */
.icon-list li.active {
    background-color: #d8b36c;
}

/* アイコンテキスト部分 */
.icon-list li span {
    font-size: 12px;
    display: block;
    margin-top: 8px;
}

/* アイコン画像：各行対応 */
.icon-list li:nth-child(1) {
    background-image: url('../../assets/images/icon_slope.svg');
}

.icon-list li:nth-child(2) {
    background-image: url('../../assets/images/icon_barrierfree.svg');
}

.icon-list li:nth-child(3) {
    background-image: url('../../assets/images/icon_eat.svg');
}

.icon-list li:nth-child(4) {
    background-image: url('../../assets/images/icon_dog.svg');
}

.icon-list li:nth-child(5) {
    background-image: url('../../assets/images/icon_write.svg');
}

.icon-list li:nth-child(6) {
    background-image: url('../../assets/images/icon_parking.svg');
}

.icon-list li:nth-child(7) {
    background-image: url('../../assets/images/icon_kids.svg');
}

.icon-list li:nth-child(8) {
    background-image: url('../../assets/images/icon_washroom.svg');
}

.icon-list li:nth-child(9) {
    background-image: url('../../assets/images/icon_baby.svg');
}







/* --------------------------------- sidebar.php */

/* コンテンツとサイドバー */
.page__single {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .page__single {
        flex-direction: column;
        gap: 0px;
    }
}


/* コンテンツ */
.block__single-contents-wrap {
    width: 70%;
}

@media screen and (max-width: 768px) {
    .block__single-contents-wrap {
        width: 100%;
    }
}

/* サイドバー */
.block__sidebar {
    width: 30%;
}

@media screen and (max-width: 768px) {
    .block__sidebar {
        width: 100%;
    }
}




.sidebar {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 20px;
}

.sidebar__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.sidebar__item {
    display: flex;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sidebar__thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar__info {
    margin-left: 10px;
}

.sidebar__date {
    font-size: 0.8rem;
    color: #666;
}

.sidebar__headline {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0px 0px;
}

.sidebar__link {
    display: flex;
    text-decoration: none;
    color: inherit;
}















/* =============================================================================
   footer
   ========================================================================== */
.footer {
    background-color: #d2ae6c;
    color: #fff;
    padding: 75px 20px 20px 20px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px 20px;
    }
}


.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer__inner {
        max-width: 95%;
    }
}


.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .footer__top {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
}



.footer__logo-area img {
    width: 260px;
}

.footer__logo span {
    font-size: 16px;
    letter-spacing: 0.15em;
}

.footer__sns {
    display: flex;
    gap: 30px;
    flex: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .footer__sns {
        width: 100%;
        gap: 5px;
        flex-direction: column;
    }
}

/* 公式SNSのpadding調整 */
@media screen and (max-width: 768px) {
    .footer__sns>div:nth-child(1) {
        margin-bottom: 30px;
    }
}



.footer__sns-block {
    flex: 1;
}

.footer__sns-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 10px;
}

.footer__sns-btn {
    display: block;
    background: #fff;
    color: #d2ae6c;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 9999px;
    text-align: left;
    text-decoration: none;
    position: relative;
}

.footer__sns-btn::after {
    font-family: "FontAwesome";
    content: "\f04b";
    /* ← fa-chevron-right */
    position: absolute;
    right: 15px;
    top: 48%;
    transform: translateY(-50%);
    color: #d2ae6c;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}

.footer__nav {
    padding-top: 0px;
}

.footer__menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .footer__menu {
        gap: 0px;
        flex-direction: column;
        margin-bottom: 20px;
    }
}

.footer__menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

.footer__copy {
    text-align: center;
    margin-top: 0px;
    font-size: 12px;
    line-height: 1.5;
}





/* =============================================================================
   add
   ========================================================================== */


/* 要素が下から登場 */



/* recaptcha */



/* contact form7 */



/* 投稿ページのページネーション */




/* ACF */