/* 親要素に幅100%を明示的に設定 */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* 横スクロールを防止 */
    font-family: "Zen Old Mincho";
}

/* デフォルトでは br を非表示 */
br.mobile {
    display: none;
}

/* スマホ（768px以下）では br を表示 */
@media screen and (max-width: 768px) {
    br.mobile {
        display: block;
    }
}

main{
}


/* ページ全体を中央に寄せるための設定 */
.container {
    width: 100%; /* 画面幅全体を使用 */
    margin: 0; /* 自動中央寄せは不要 */
    padding: 0; /* 余白をなくす */
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: transparent; /* 背景を透明に設定 */
    color: #fff;
    position: absolute; /* 絶対位置にしてスライダーの上に配置 */
    top: 0;
    left: 0;
    width: 100%; /* ヘッダーが画面全幅に広がるように設定 */
    z-index: 1000; /* スライダーより前面に表示 */
}
.header-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: #333; /* 背景を透明に設定 */
    color: #fff;
    position: absolute; /* 絶対位置にしてスライダーの上に配置 */
    top: 0;
    left: 0;
    width: 100%; /* ヘッダーが画面全幅に広がるように設定 */
    z-index: 1000; /* スライダーより前面に表示 */
}

/* スライダー */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%; /* スライダーの高さに合わせる */
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    text-align: center;
    background-size: cover; /* 背景を全体にフィット */
    background-position: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 親要素に画像を完全にフィット */
    object-position: center; /* 中心に配置 */
}


.slide-text {
    position: absolute;
    color: #fff;
}

.slide_txt{
    color: #FFF;
    -webkit-text-stroke-width: 0.20000000298023224;
    -webkit-text-stroke-color: #FFF;
    font-family: "Zen Old Mincho";
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
}

.slide_txt_en{
    color: #FFF;
    text-align: center;
    -webkit-text-stroke-width: 0.20000000298023224;
    -webkit-text-stroke-color: #FFF;
    font-family: Cinzel;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.95px;
    text-transform: uppercase;
}


.logo {
    width: 161.807px;
    height: 60px;
    flex-shrink: 0;

}

.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav ul li {
    margin-left: 41px;
}

.header-nav ul li a {
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Zen Old Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
}

/*.header-nav ul li a:hover {
    border-bottom: 2px solid #fff;
}*/

/* セクション全体のスタイル */
.lead {
    width: 100%; /* セクションを画面幅いっぱいに広げる */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background-image: url(img/bg.png);
}

/* 縦書きテキストのスタイル (右側) */
.lead_txt {
    width: 750px; /* 全体幅の割合で調整 */
    writing-mode: vertical-rl; /* 縦書き表示 */
    text-orientation: upright; /* 文字の向きを直立に */
    text-align: start;
    font-family: "Zen Old Mincho";
    font-size: 25px;
    font-weight: bold;
    color: #393939; /* テキストカラー */
    line-height: 43px; /* 文字間の余白を調整 */
    letter-spacing: 1.65px;
    margin-right: 20px; /* 中央との余白 */
    margin-top: 5rem;
}

/* 境界線の装飾 (中央) */
.lead_border {
    display: flex;
    width: 1px;
    height: 550px;
    flex-shrink: 0;
    flex-direction: column;
    margin-left: 64px;
}

.lead_border img {
    width: 1px;
    height: auto;
}

/* 説明の装飾 (左側) */
.lead_desc {
    width: 518px; /* 全体幅の割合で調整 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead_desc_sp {
    display: none;
}

.lead_desc img {
    width: 100%; /* 画像を親要素にフィットさせる */
    height: auto;
}

.scroll-gallery {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
    padding: 5px 0; /* 上下の余白を調整 */
}

.scroll-gallery-track {
    display: flex;
    gap: 8px; /* 画像の間隔 */
    animation: scroll 100s linear infinite; /* 無限スクロール */
    width: max-content; /* 必要なサイズに可変 */
}

.scroll-gallery img {
    width: auto;
    height: 237px; /* 画像の高さを統一 */
    object-fit: cover;
}

.scroll-gallery1 {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
    padding: 5px 0; /* 上下の余白を調整 */
}

.scroll-gallery-track1 {
    display: flex;
    gap: 8px; /* 画像の間隔 */
    animation: scroll 100s linear infinite; /* 無限スクロール */
    width: max-content; /* 必要なサイズに可変 */
}

.scroll-gallery1 img {
    width: auto;
    height: 139px; /* 画像の高さを統一 */
    object-fit: cover;
}

/* アニメーション設定 */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/*福の家の特徴セクション*/
.about{
    width: 100%;
    padding-bottom: 60px;
    background-image: url(img/bg.png);
}

.about_st{
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.mark{
    width: 178px;
    margin: 0 auto;
    margin-top: 40px;
}

.about_main_img{
    width: 575.97px;
    margin: 0 auto;
    margin-top: 40px;
}

.about_img{
    width: 575.97px;
    margin: 0 auto;
    margin-top: 40px;
}

.about_1{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 80px;
}

.about_deco {
    position: absolute;
    bottom: -2.5rem; /* 画像の下に配置 */
    left: 20%;
    transform: translateX(-50%); /* 中央寄せ */
    width: 256px; /* サイズ調整（必要に応じて） */
    max-width: 256pxpx; /* 必要なら最大サイズ指定 */
    z-index: 2; /* 他の要素より上に配置 */
}

.about_1m{
    display: flex;
    flex-direction: column;
}

.about_1m img{
    width: 90px;
    margin: 0 auto;
}

.about_1m h2{
    color: #393939;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Zen Old Mincho";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px; /* 162.5% */
    letter-spacing: 1.6px;
}

.about_1m p{
    color: #393939;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: "Zen Old Mincho";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    letter-spacing: 0.9px;
}

.about_btn {
    display: flex; /* 子要素を中央に配置するためにflexを使用 */
    justify-content: center; /* 水平方向に中央揃え */
    align-items: center; /* 垂直方向に中央揃え（念のため） */
    margin: 40px auto; /* 上下の余白を追加しつつ、左右を中央揃え */
    width: 100%; /* 必要に応じて調整 */
}

.about_btn img{
    width: 110px;

}

.about_sec {
    position: relative; /* 子要素をabsoluteで配置する基準を作る */
    display: flex; /* フレックスボックスで中央揃え */
    justify-content: center; /* 水平方向中央揃え */
    align-items: center; /* 垂直方向中央揃え */
    width: 1100px; /* ビューポート全幅 */
    margin: 0 auto;
}

.about_sec::after {
    content: "" ;
    position: absolute;
    width: 140px;
    height: 140px; /* 高さを指定しないと表示されない */
    top: 40%;
    left: 85%;
    background: url('/wp-content/themes/fuku-ie/img/deco2.svg') no-repeat center;
    background-size: contain; /* 画像が要素のサイズに収まるよう調整 */
    z-index: 2; /* 他の要素の上に表示 */
}

.about_sec img {
    width: 80%; /* 親要素の幅に合わせる */
    display: block; /* 画像の下に余白を防ぐ */
    margin: 0 auto;
}

.overlay_image {
    position: absolute; /* 親要素を基準に絶対位置で配置 */
    bottom: -3.5rem; /* 画像の下部に配置 */
    left: 50%; /* 横方向中央に配置 */
    transform: translateX(-50%); /* 中央揃え補正 */
}

.overlay_image img {
    width: 90px; /* 重ねる画像のサイズ（必要に応じて調整） */
    height: auto;
}


.about_sec_txt{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}

.about_sec_txt p::before {
    content: "" ;
    position: absolute;
    width: 170px;
    height: 110px; /* 高さを指定しないと表示されない */
    top: 40%;
    left: 15%;
    background: url('/wp-content/themes/fuku-ie/img/deco3.svg') no-repeat center;
    background-size: contain; /* 画像が要素のサイズに収まるよう調整 */
    z-index: 2; /* 他の要素の上に表示 */
}

.about_sec_txt h2{
    margin-top: 50px;
    color: #393939;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px; /* 162.5% */
    letter-spacing: 1.6px;
}

.about_sec_txt p{
    margin-top: 0px;
    color: #393939;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    letter-spacing: 0.9px;
}

.price{
    width: 100%;
    padding: 5rem;
    background-image: url(img/price_bg.png);
    display: flex;
    flex-direction: column;
    align-items: left;
}

.price_container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: flex-start;
    max-width: 1200px;
}


.price_box{
    padding: 0rem;
}

.price_box img{
    width: 360px;
}

.price_content {
    width: 480px;
    color: #fff;
    text-align: left;
}

.price_content p{
    margin: 25px 0;
    color: #FFF;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

/* 左側のギャラリー */
.price_gallery {
    width: 480px;
    flex-shrink: 0;
}

.main_image img {
    width: 477px;
    height: 358px;
}

.thumbnail_gallery {
    width: 477px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    overflow: visible;
}

.thumbnail {
    width: 155px;
    height: 117px;
    cursor: pointer;
    position: relative;
    display: block;
    opacity: 0.3;
    background: rgba(0, 0, 0, 0.5);
}

.thumbnail.active{
    opacity: 1;
}

.ga_bg{
    background: rgba(0, 0, 0, 0.8);
}

/* 最初はすべてのサムネイルに黒の透過をかける */
.thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out;
    z-index: 2;
}

/* クリックされたサムネイルの透過を解除 */
.thumbnail.active::after {
    background: rgba(0, 0, 0, 0);
}



.price_title, .option_title {
    color: #FFF;
    font-family: "Zen Old Mincho";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3.2px;
    margin-top: 0;
    margin-bottom: 10px;
}

.option_label {
    color: white;
    padding: 5px 10px;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 1.2rem;
}

.option ul {
    margin: 25px 0;
    list-style-type: none;
    padding: 0;
}

.option{
    margin-top: 65px;
}

.option ul li {
    margin-bottom: 5px;
    color: #FFF;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;

}

.border-line {
    max-width: 480px;
    height: 1px; /* 画像の高さに調整 */
    background-image: url("img/border-w.png");
    background-size: cover;
    background-position: center;
    margin: 10px 0; /* 上下の余白を調整 */
}


.buttons {
    max-width: 480px;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 13px;
}

.btn {
    display: inline-block;
}

.btn img {
    width: 230px; /* 画像の幅を調整 */
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

.btn:hover img {
    opacity: 0.8; /* ホバー時に少し透明度を下げる */
}

/*周辺観光*/
.surroundings {
    width: 100%;
    text-align: center;
    padding: 10rem 0;
}
.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 間隔調整 */
    text-align: center;
}
.title img {
    width: 450px;
}
.title-deco {
    width: 220px!important; /* SVGのサイズ調整 */
    height: auto;
}
.description {
    margin: 60px 0;
    color: #393939;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}
.places {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px; /* スマホ対応のための余白 */
}
.place {
    text-align: center;
    padding: 20px;
    position: relative;
}
/* 1, 2, 4, 5 個目の要素に区切り線を追加 */
.place:nth-child(3n + 1)::after,
.place:nth-child(3n + 2)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px; /* 余白を調整 */
    width: 1px;
    height: 100%;
    background-image: url("img/border_bk.png");
    background-size: contain;
    background-repeat: no-repeat;
}

/* 3, 6 個目の右側には区切り線を表示しない */
.place:nth-child(3n)::after {
    display: none;
}
.place h3{
    color: #393939;
    margin: 0 auto;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}
.place-img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    margin-bottom: 10px;
}
.border {
    width: 100%;
    height: 2px;
}
.english {
    color: #393939;
    margin: 0 auto;
    text-align: center;
    font-family: Cinzel;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 245.455% */
    text-transform: uppercase;
}
.p-description{
    width: 270px;
    margin: 0 auto;
    margin-top: 20px;
    color: #393939;
    text-align: start;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
}
.address {
    width: 270px;
    margin: 0 auto;
    margin-top: 15px;
    color: #393939;
    text-align: start;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
}

/*Q&A*/
.qa {
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

.qa2{
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

/* ヘッダー部分 */
.qa_header {
    display: flex;
    flex-direction: column;
    background: url("img/qa-bg.png") no-repeat center/cover;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.qaq{
    width: 150px;
    height: auto;
    margin: 30px auto;
}
.shitumon{
    width: 260px;
    height: auto;
    margin: 0px auto;
    margin-bottom: 50px;
}

/* 質問全体のコンテナ */
.qa_container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 10px 20px;
}

/* 質問のボックス */
.qa_item {
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

/* 質問部分 */
.qa_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 18px;
    font-family: "Zen Old Mincho", serif;
    transition: background 0.3s ease;
    position: relative;
}
.qa_question::before {
    content: "";
    width: 42px; /* アイコンの幅 */
    height: 42px; /* アイコンの高さ */
    background-image: url("img/faq.png"); /* アイコン画像 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 10px; /* 位置調整 */
}

.qa_question:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* 質問のラベル */
.qa_label {
    padding: 8px 12px;
    margin-right: 15px;
}

/* 質問テキスト */
.qa_text {
    color: #393939;
    margin-left: 50px;
    font-family: "Zen Old Mincho";
    font-size: 20px;
    font-style: normal;
    line-height: 42px; /* 210% */
    letter-spacing: 1px;
    text-align: left;
}

/* アイコン（＋/－） */
.qa_icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* 回答部分 */
.qa_answer {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.qa_answer ::before{
    position: absolute;
}
.qa_answer.active {
    display: block;
    opacity: 1;
    max-height: 200px; /* 適当な高さを指定（内容に応じて調整） */
    color: #393939;
    margin-left: 60px;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    line-height: 30px; /* 187.5% */
    letter-spacing: 0.8px;
    text-align: left;
    border-top: 1px solid #E0E0E0;
}


/* すべて見るボタン */
.qa_more {
    text-align: center;
    margin-top: 60px;
}

.qa_btn img {
    width: 235px;
    transition: opacity 0.3s;
}

.qa_btn:hover img {
    opacity: 0.8;
}

/* SNS */
/* SNSセクション全体 */
.sns {
    background-image: url("img/sns_bg.png"); /* 背景パターン画像 */
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

/* コンテンツ全体のレイアウト */
.sns_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
    padding: 5rem 0 0 5rem;
    background: url(img/sns_bg.jpg);
}

/* 左側のSNS情報 */
.sns_info {
    text-align: start;
    width: auto;
    height: auto;
}

.sns_title {
    width: 120px;
    display: block;
    margin: 0 auto;
}

.sns_tlt{
    margin: 50px 0;
    color: #393939;
    font-family: Cinzel;
    font-size: 92px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 29.348% */
    letter-spacing: 18.4px;
    text-transform: uppercase;
}

.sns_subtitle {
    width: 310px;
    display: block;
    margin: 10px auto 20px;
}

.sns_text {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

/* Instagramボタン */
.sns_btn {
    gap: 10px;
    transition: background 0.3s;
    margin-top: 50px;
}

.sns_btn img {
    width: 235px;
    margin: 50px 0;
}

/* スマホのInstagramモックアップ */
.sns_mockup img {
    width: 300px;
}

/* インスタ投稿ギャラリー */
.sns_gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin: 0 auto;
    max-width: 100%;
}

.sns_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*アクセス*/
/* アクセス全体 */
.access {
    padding: 80px 0;
    text-align: left;
}

.access1 {
    padding: 80px 0;
    text-align: left;
    background-image: url(img/bg.png);
}

/* コンテンツレイアウト */
.access_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* アクセス情報 */
.access_info {
    max-width: 500px;
}

.access_title {
    color: #393939;
    font-family: "Zen Old Mincho", serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 300;
    line-height: 52px; /* 100% */
    letter-spacing: 2.6px;
}

.access_address {
    width: 400px;
    height: 19.5px;
    flex-shrink: 0;
    margin-top: 20px;
}

.access_phone {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #393939;
    font-family: Cinzel;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 162.5% */
    letter-spacing: 1.6px;
}

.access_phone img {
    width: 20px;
    margin-right: 10px;
}

/* 詳細情報 */
.access_details {
    margin-top: 30px;
}

.access_list {
    width: 100%;
    display: table;
    border-collapse: collapse;
}

.access_item {
    display: table-row;
    border-bottom: 1px solid #ccc;
}

.access_item dt {
    color: #393939;
    display: table-cell;
    width: 100px; /* 左側のタイトル部分の幅 */
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}

.access_item dd {
    display: table-cell;
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}


.access_item h3 {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.access_item p {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

/* ボタン */
.access_buttons {
    display: flex;
    gap: 15px;
    justify-content: center; /* ボタンを中央揃え */
    margin-top: 30px;
}
.access_buttons a {
    display: inline-block;
}

.access_buttons img {
    width: 230px!important; /* 画像のサイズを固定 */
    height: auto!important;
}


/* マップ画像 */
.access_map{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.access_map img {
    width: 470px;
    height: auto;
}

/* 運営会社 */
.company_info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.company_map {
    width: 400px;
    height: auto;
}

.company_text {
    max-width: 500px;
}

.company_title {
    width: 220px;
}

/* 運営会社の表 */
.company_table {
    width: 100%;
    margin-top: 50px;
    background: #f3f3f3;
    border-collapse: collapse;
}

.company_table td {
    padding: 10px 30px;
    border: 1px solid #ddd;
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
}

.company_table td:first-child {
    font-weight: bold;
}

.blog {
    background: rgba(61, 89, 125, 0.10);
    padding: 80px 0;
    text-align: center;
}

/* ブログタイトル */
.blog_header {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.blog_header img{
    width: 227.7px;
height: 64.17px;
flex-shrink: 0;
}

.blog_new {
    width: 40px;
}

/* コンテナ */
.blog_container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 最新記事 */
.blog_featured {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.blog_featured img {
    width: 270px;
    height: auto;
}

.blog_featured_content {
    text-align: left;
    max-width: 270px;
}

.blog_featured_title {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.blog_date {
    color: #393939;
    font-family: Cinzel;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 245.455% */
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.blog_excerpt {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
}

.blog_excerpt1 {
    overflow: hidden;
    color: #393939;
    text-overflow: ellipsis;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
}

.blog_read_more {
    display: inline-block;
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* 記事一覧 */
.blog_list {
}

/* 記事を横並び2列で表示 */
.blog_row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0;
}

.blog_item {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    width: 470px;
}

.blog_item img {
    width: 135px;
    height: 135px;
    flex-shrink: 0;
}

.blog_text {
    width: 288px;
    text-align: left;
}

.blog_text a{
    text-decoration: none;
}

.blog_title {
    overflow: hidden;
    color: #393939;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

/* 区切り線 */
.blog_separator {
    text-align: center;
}
.blog_separator1 {
    align-items: center;
    margin-top: 30px;
}

.blog_separator img {
    width: auto;
}

/* すべての記事を見るボタン */
.blog_more {
    text-align: center;
    margin-top: 50px;
}

.blog_btn img {
    width: 200px;
    transition: opacity 0.3s;
}

.blog_btn img:hover {
    opacity: 0.8;
}

/*フッター*/
/* フッター全体 */
.footer {
    background-color: #222;
    color: white;
    padding: 5rem;
    text-align: center;
}

/* フッター内のコンテナ */
.footer_container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* フッターロゴ */
.footer_logo img {
    width: 125px;
    height: 133px;
    flex-shrink: 0;
}

/* フッターのナビゲーション */
.footer_nav {
    display: flex;
    justify-content: center;
}

/* ナビメニュー */
.footer_menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
}

.footer_menu li {
    display: inline-block;
}

.footer_menu li a {
    color: white;
    font-size: 14px;
    text-align: center;
    font-style: normal;
    text-decoration: none;
    font-family: "Zen Old Mincho", serif;
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright;
    line-height: 18px;
}

/* 著作権表示 */
.footer_copyright {
    color: #FFF;
    text-align: center;
    font-family: Cinzel;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

/* ============================
   スマホ用レスポンシブCSS (幅 768px以下)
   ============================ */
   @media screen and (max-width: 768px) {
    body, html {
        font-size: 14px;
        overflow-x: hidden;
    }

    .container {
        padding: 0;
    }

    /* ヘッダー調整 */
    /* ヘッダー */
.header {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #222; /* 半透明 */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ロゴ */
.logo {
    width: 85px; /* ロゴサイズ */
    height: auto;
}

.logo img {
    width: 85px; /* ロゴサイズ */
    height: auto;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    position: absolute;
    right: 65px;  /* 右側の余白を確保 */
    top: 50%;
    transform: translateY(-50%);  /* 縦方向の中央配置 */
    width: 30px;  /* タップしやすいサイズ */
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;  /* 他の要素より前面に配置 */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: white;
    transition: 0.3s;
}

/* ナビゲーションメニュー（初期は非表示） */
.header-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
}

/* メニューのリスト */
.header-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav ul li {
    padding: 15px 0;
    margin: 0 auto;
}

.header-nav ul li a {
    color: #FFF;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* ハンバーガーメニューが開いたとき */
.header-nav.active {
    display: block;
}

main{
    margin-top: 65.47px;
}


    /* スライダー調整 */
    .slider {
        height: 188px;
        margin-top: 65px;
    }

    .slide img {
        width: 100%;
    }

    .slide-text{
        width: 221px;
    }

    .slide_txt {
        color: #FFF;
        text-align: center;
        -webkit-text-stroke-width: 0.2px;
        -webkit-text-stroke-color: #FFF;
        font-family: "Zen Old Mincho";
        font-size: 34px;
        font-style: normal;
        font-weight: 400;
        line-height: 51px; /* 150% */
        letter-spacing: 1.7px;
    }

    .slide_txt_en {
        color: #FFF;
        text-align: center;
        -webkit-text-stroke-width: 0.2px;
        -webkit-text-stroke-color: #FFF;
        font-family: Cinzel;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    /* リードセクション調整 */
    .lead {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        width: 100%;
        max-width: 480px; /* スマホ幅に合わせる */
        margin: 0 auto; /* 中央揃え */
    }
    .lead_txt {
        display: flex;
        width: 100%;
        margin-top: 30px;
        text-align: center;
        margin-top: 40px;
    }

    /* 縦書きテキスト */
    .lead_txt p {
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 22px;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -2.1px;
        margin: 0 auto;
        writing-mode: horizontal-tb;
    }

    /* 境界線（点線） */
    .lead_border {
        width: 80%;
        height: 1px;
        background: url(img/blog_bd2.png);
        margin: 20px auto;
    }

    .lead_desc {
        display: none;
    }
    .lead_desc_sp {
        width: auto; /* 全体幅の割合で調整 */
        height: 402.64px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 15px 0;
    }

    /* 装飾画像 */
    .lead_desc_sp img {
        width: auto; /* 画像サイズ調整 */
        height: auto;
    }

    /* 「福」の文字デザイン */
    .lead_fuku {
        width: 80px;
        height: auto;
        margin: 20px auto;
    }

    /* 画像ギャラリー */
    .lead_gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        max-width: 350px;
        margin: 0 auto;
    }

    .lead_gallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .scroll-gallery img{
        height: 184px;
    }

    .scroll-gallery1 img{
        height: 108px;
    }

    /* 特徴セクション調整 */
    .about_img {
        width: 70%;
    }
    .mark{
        width: 112px;
    }
    .about_1,
    .about_sec {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    .about_sec::after {
        content: "" ;
        position: absolute;
        width: 98px;
        height: 100px; /* 高さを指定しないと表示されない */
        top: 50%;
        left: -10%;
        background: url('/wp-content/themes/fuku-ie/img/deco2.svg') no-repeat center;
        background-size: contain; /* 画像が要素のサイズに収まるよう調整 */
        z-index: 2; /* 他の要素の上に表示 */
    }
    .about_sec_txt p{
        font-size: 14px;
    }
    .about_sec_txt p::before {
        content: "" ;
        position: absolute;
        width: 78px;
        height: 80px; /* 高さを指定しないと表示されない */
        top: 40%;
        left: -5%;
        background: url('/wp-content/themes/fuku-ie/img/deco3.svg') no-repeat center;
        background-size: contain; /* 画像が要素のサイズに収まるよう調整 */
        z-index: 2; /* 他の要素の上に表示 */
    }
    .about_1 img{
        display: none;
    }
    .about_btn{
        margin-top: 20px;
    }

    .about_1m img{
        width: 72px;
        height: 72px;
    }

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

    .about_1m h2 {
        font-size: 24px;
    }

    /* 料金セクション */
    .price {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center; /* 中央揃え */
        text-align: center; /* テキストの中央揃え */
    }
    .price_box {
        width: 100%;
        display: flex;
        justify-content: center; /* 中央揃え */
        align-items: center;
        margin: 50px 0 0; /* 上の余白だけ追加 */
    }

    .price_box img {
        width: 188px;
        height: auto;
    }

    .price_container {
        width: 100%;
        max-width: 327px; /* スマホで適切な幅 */
        display: flex;
        flex-direction: column;
        align-items: center; /* 中央揃え */
        margin: 0 auto; /* 真ん中に配置 */
    }

    .price_gallery,
    .price_content {
        width: 100%;
        text-align: start;
        margin-top: 30px;
    }

    .price_content p{
        font-size: 14px;
        margin: 25px auto;
        line-height: 21px;
        letter-spacing: 0.7px;
    }

    .price_title {
        text-align: center;
    }

    .option_title{
        text-align: start;
    }

    .option_title ul li{
        font-size: 13px;
        line-height: 21px;
        letter-spacing: 0.65px;
    }

    .surroundings{
        padding: 5rem 0;
    }

    .main_image{
        width: 100%;
    }

    .main_image img{
        width: 100%;
        height: auto;
    }

    .thumbnail_gallery {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }

    .thumbnail{
        width: 100%;
        height: auto;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
        margin: 50px auto;
    }

    .btn img {
        width: 235px;
    }

    /* 周辺観光 */
    .title img{
        width: 250px;
    }
        .title {
            gap: 10px; /* スマホ表示時の間隔調整 */
        }
    
        .title-deco {
            width: 80px; /* スマホで少し小さめに */
        }
    .places {
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .place{
        width: 148px;
        padding: 5px;
    }

    .english{
        color: #393939;
        text-align: center;
        font-family: Cinzel;
        font-size: 7px;
        font-style: normal;
        font-weight: 400;
        line-height: 14.6px; /* 208.571% */
        text-transform: uppercase;
    }

    .place h3{
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: 12.978px; /* 117.98% */
        letter-spacing: 0.55px;
    }

    .place-img{
        width: 148px;
        height: 148px;
    }

    .description{
        width: 327px;
        margin: 30px auto;
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
        letter-spacing: 0.7px;
    }

    .p-description{
        width: 148px;
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 13px; /* 130% */
        letter-spacing: 0.5px;
        margin-top: 5px;
    }

    .address{
        width: 148px;
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 13px; /* 130% */
        letter-spacing: 0.5px;
        }

    /* QAセクション */
    .qa_header{
        height: 200px;
        padding: 0;
    }

    .qaq{
        width: 100px;
    }

    .shitumon{
        width: 120px;
    }

    .qa_container {
        padding: 0 10px;
    }

    .qa_question {
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px; /* 142.857% */
        letter-spacing: 0.7px;
    }

    .qa_answer{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 23.96px; /* 199.664% */
        letter-spacing: 0.6px;
    }

    .qa_text {
        font-size: 14px;
    }

    /* SNSセクション */
    .sns{
        padding: 0;
    }
    .sns_container {
        padding: 0;
        flex-direction: column;
        gap: 20px;
    }

    .sns_tlt {
        font-size: 60px;
        margin: 10px auto;
        text-align: center;
        margin-top: 70px;
    }

    .sns_subtitle{
        width: 190px;
        margin-top: 20px;
    }

    .sns_text{
        margin-top: 40px;
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
        letter-spacing: 0.7px;
    }

    .sns_btn img{
        margin: 20px auto;
    }

    .sns_mockup{
        width: 100%;
    }

    .sns_mockup img {
        width: 150px;
    }

    .sns_gallery img{
        width: 110px;
        height: 110px;
    }

    /* アクセスセクション */
    .access{
        padding: 40px 0;
        text-align: center;
    }
    .access_container {
        flex-direction: column;
        align-items: center;
    }

    .access_address{
        width: 294px;
        height: 14px;
    }

    .access_title{
        font-size: 36px;
        margin: 0 auto;
    }

    .access_phone{
        color: #393939;
        justify-content: center;
        font-family: Cinzel;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 52px; /* 185.714% */
        letter-spacing: 1.4px;
        text-decoration: none;
    }

    .access_phone img{
        width: 28px;
        height: 28px;
    }

    .access_item dt{
        width: auto;
        text-align: start;
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 16.35px; /* 116.786% */
        letter-spacing: 0.7px;
    }

    .access_item dd{
        text-align: start;
    }

    .access_item p{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
    }

    .access_map{
        width: 100%;
        margin: 0 auto;
    }

    .access_map img {
        width: 90%;
        margin: 0 auto;
    }

    .access_buttons {
        flex-direction: column;
        margin: 0 auto;
        margin-top: 30px;
    }

    .access_buttons img {
        width: 200px;
    }

    .company_info{
        flex-direction: column;
    }

    .company_title{
        width: 180px;
    }

    .company_map{
        width: 327px;
        height: 352.88px;
    }

    .company_table{
        text-align: start;
    }

    .company_table td{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 200% */
    }

    /* ブログ */
    .blog{
        padding: 20px;
    }
    .blog_header{
        flex-direction: column;
        margin-top: 40px;
    }

    .blog_header img{
        width: 152.581px;
        height: 43px;
        margin: 0 auto;

    }

    .blog_featured {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        margin: 30px auto;
    }

    .blog_featured_content {
        width: 327px;
        max-width: 327px;
    }

    .blog_featured img{
        width: 327px;
        height: 327px;
    }

    .blog_featured_title{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
        letter-spacing: 0.8px;
    }

    .blog_date{
        color: #393939;
        font-family: Cinzel;
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px; /* 245.455% */
        letter-spacing: 0.55px;
        text-transform: uppercase;
    }

    .blog_excerpt{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px; /* 153.846% */
        letter-spacing: 0.65px;
    }

    .blog_read_more{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px; /* 153.846% */
        letter-spacing: 0.65px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .blog_row {
        flex-direction: row;
        gap: 20px;
    }

    .blog_item {
        width: 148px;
        margin: 30px 0;
        flex-direction: column;
        align-items: center;
    }

    .blog_item img{
        width: 148px;
        height: 148px;
    }

    .blog_text{
        width: 148px;
        text-align: left;
    }

    .blog_title{
        overflow: hidden;
        color: #393939;
        text-overflow: ellipsis;
        font-family: "Zen Old Mincho";
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: 12.978px; /* 117.98% */
        letter-spacing: 0.55px;
    }

    .blog_excerpt1{
        overflow: hidden;
        color: #393939;
        text-overflow: ellipsis;
        font-family: "Zen Old Mincho";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 13px; /* 130% */
        letter-spacing: 0.5px;
    }

    .blog_separator img{
        width: 100%;
        height: 1px;
    }

    .blog_separator1 img{
        width: 1px;
        height: 100%;
    }

    .blog_more{
        margin: 40px;
    }

    .blog_btn img{
        width: 235px;
    }

    /* フッター */
    .footer_container {
        flex-direction: column;
        text-align: center;
    }

    .footer_logo{
        margin: 0 auto;
    }

    .footer_logo img {
        width: 125px;
        height: 133px;
    }

    .footer_nav{
        display: none;
    }

    .footer_copyright{
        color: #FFF;
        margin-top: 35px;
        text-align: center;
        font-family: Cinzel;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .footer_menu {
        flex-direction: column;
    }
}

/**********PLAN**********/
.plan {
    width: 480px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    margin-top: 5rem;
}

/* タイトル */
.plan_header {
    text-align: center;
    margin-bottom: 20px;
}

.plan_title {
    font-family: "Zen Old Mincho", serif;
    font-size: 32px;
    font-weight: 500;
    color: #393939;
}

.plan_price {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

/* 説明文 */
.plan_desc p {
    font-size: 16px;
    color: #393939;
    line-height: 1.8;
}

/* 区切り線 */
.plan_border {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

/* 施設情報 */
.plan_info p {
    font-size: 16px;
    color: #393939;
    line-height: 1.8;
}

.plan_info span {
    font-weight: bold;
}

/* 特徴 */
.plan_features h3,
.plan_option h3 {
    font-size: 18px;
    font-weight: bold;
    color: #393939;
    margin-bottom: 10px;
}

.plan_features p {
    font-size: 16px;
    color: #393939;
}

/* オプションリスト */
.plan_option ul {
    list-style-type: none;
    padding: 0;
}

.plan_option ul li {
    font-size: 16px;
    color: #393939;
    text-align: left;
    padding-left: 20px;
    text-indent: -10px;
    margin-bottom: 5px;
}

/* 画像 */
.plan_image img {
    width: 180.805px;
    max-width: 406px;
    margin: 20px 0;
    background-color: #e3e3e3;
    padding: 3rem 9rem;
}

/* ボタン */
.plan_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.plan_btn {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #393939;
    background: white;
    border: 1px solid #393939;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block;
}

.plan_reserve {
    background: #393939;
    color: white;
}

/* 詳細情報 */
.plan_details {
    margin-top: 10px;
    text-align: start;
}

.plan_list {
    width: 100%;
    display: table;
    border-collapse: collapse;
    margin: 0;
}

.plan_item {
    display: table-row;
    border-bottom: 1px solid #e0e0e0;
}

.plan_item:after {
    position:absolute;
    width:auto;
    height:1px;
    top: 0;
    left: 0;
    background-image: url(img/border-w.png);
}

.plan_item dt {
    color: #393939;
    display: table-cell;
    width: 100px; /* 左側のタイトル部分の幅 */
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}

.plan_item dd {
    display: table-cell;
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}


.plan_item h3 {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.plan_item p {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.plan_item dt {
    color: #393939;
    display: table-cell;
    width: 100px; /* 左側のタイトル部分の幅 */
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}

.plan_item dd {
    display: table-cell;
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}


.plan_item h3 {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.plan_item p {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.plan_items {
    display: table-row;
}

.plan_items dt {
    color: #393939;
    display: table-cell;
    width: 100px; /* 左側のタイトル部分の幅 */
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}

.plan_items dd {
    display: table-cell;
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}


.plan_items h3 {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.plan_items p {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.plan_items dt {
    color: #393939;
    display: table-cell;
    width: 100px; /* 左側のタイトル部分の幅 */
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}

.plan_items dd {
    display: table-cell;
    font-size: 16px;
    padding: 15px;
    vertical-align: text-top; /* 上寄せ */
}


.plan_items h3 {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

.plan_items p {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.checkin {
    color: #393939;
    margin: 0;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.room{
    width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
}

.room_container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: flex-start;
    max-width: 1200px;
}


.room_content {
    width: 480px;
    color: #393939;
    text-align: left;
}

.room_content p{
    margin: 25px 0;
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.8px;
}

/* 左側のギャラリー */
.room_gallery {
    width: 480px;
    flex-shrink: 0;
}

.main_image img {
    width: 477px;
    height: 358px;
}

.thumbnail_gallery {
    width: 477px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.thumbnail {
    width: 155px;
    height: 117px;
    cursor: pointer;
    position: relative;
}


.room_title {
    color: #393939;
    font-family: "Zen Old Mincho";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3.2px;
    margin-top: 0;
    margin-bottom: 10px;
}

/* 設備セクション */
.equipment {
    background: url("img/plan/eq-bg.png") repeat; /* 市松模様の背景 */
    text-align: center;
    padding: 80px 20px;
}

/* タイトル */
.equipment_header h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 32px;
    font-weight: 500;
    color: #393939;
    margin-bottom: 30px;
}

/* グリッドレイアウト */
.equipment_grid {
    width: 1000px;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    margin-top: 50px;
}

/* 設備アイテム */
.equipment_item {
    text-align: center;
}

.equipment_item img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* 画像下のテキスト */
.equipment_item p {
    color: #393939;
    margin-top: 10px;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px; /* 325% */
    letter-spacing: 1.6px;
}

/* もっと表示するボタン */
.equipment_more {
    margin-top: 40px;
}

.equipment_btn {
    color: #393939;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.7px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

/* 記事一覧セクション */
.blog1_list {
    text-align: center;
    margin: 40px 0;
}

/* 記事コンテナ */
.blog1_container {
    width: 750px;
    max-width: 750px;
    margin: 0 auto;
    margin-top: 1rem;
}

/* 記事アイテム */
.blog1_item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.blog1_item img {
    width: 135px;
    height: 135px;
    object-fit: cover;
}

.blog1_content {
    text-align: left;
    flex: 1;
}

.blog1_content h3 {
    font-size: 16px;
    font-family: "Zen Old Mincho", serif;
    color: #393939;
    margin-bottom: 5px;
}

.blog1_date {
    font-size: 12px;
    color: #999;
}

.blog1_excerpt2 {
    overflow: hidden;
    color: #393939;
    text-overflow: ellipsis;
    font-family: "Zen Old Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
}

/* 区切り線 */
.blog1_separator {
    text-align: center;
    margin: 10px 0;
}

.blog1_separator img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* ページネーション */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page,
.pagination .prev,
.pagination .next {
    display: inline-block;
    padding: 10px 15px;
    background: rgba(51, 51, 51, 0.10);
    color: #393939;
    text-decoration: none;
    font-size: 14px;
}

.pagination .page.active {
    background: #333;
    color: white;
}

.pagination .dots {
    padding: 10px 15px;
    color: #666;
}

/**********POLICY**********/

body.privacy-policy-page {
    font-family: 'Zen Old Mincho', serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.po-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
}

.po-header {
    text-align: center;
    height: 315px;
    padding: 60px 20px;
    background: url('img/bg-blue.png') repeat;
    color: white;
}

.po-page-title {
    font-size: 32px;
    margin: 90px auto
}

.po-subtitle {
    font-size: 16px;
}

.po-reservation-button {
    position: relative;
    top: 1rem;
    right: 2rem;
    float:right;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px; /* 適宜調整 */
}

.po-reservation-button img{
    width: 130px;
    height: 130px;
}

.po-lead-text{
    color: #234B81;
    padding: 25px;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px; /* 180% */
    letter-spacing: 0.7px;
    border: 1px solid #234B81;
    background: rgba(61, 89, 125, 0.10);
}

.po-intro-text{
    color: #333;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 200% */
    letter-spacing: 0.7px;
    margin: 40px 0;
}

.po-section-title {
    color: #234B81;
    font-family: "Zen Old Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px; /* 195% */
    letter-spacing: 2px;
}

.po-section-title ::before{
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: auto;
    background: url('img/border-blue.png');
    background-size: cover;
}

.po-section-text {
    color: #333;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 200% */
    letter-spacing: 0.7px;
}

.po-contact-section {
    text-align: center;
    margin-top: 40px;
}

.po-contact-email a {
    color: #1a4876;
    text-decoration: none;
    font-weight: bold;
}

.po-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #333;
    font-family: "Zen Old Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.2px; /* 180% */
    letter-spacing: 0.7px;
}

.po-table th {
    border: 1px solid #c7c7c7;
    padding: 12px;
    text-align: center;
}

.po-table td {
    border: 1px solid #c7c7c7;
    padding: 12px;
    text-align: left;
}

.po-table tr {
    background: #f3f3f3;
}

.po-table tr:nth-child(even) {
    background: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* コンテナの幅を調整し、中央揃え */
    .po-container {
        max-width: 90%;
        padding: 20px; /* 余白を増やして読みやすく */
        margin: 0 auto;
    }

    /* ヘッダーを画面幅いっぱいにする */
    .po-header {
        width: auto;
        height: auto;
        margin: 0;
        margin-top: 50px;
        padding: 60px 20px;
        text-align: center;
    }

    .po-page-title {
        margin: 0 auto;

    }

    .po-page-title img {
        max-width: 70%; /* タイトル画像のサイズ調整 */
        height: auto;
    }

    .po-subtitle {
        font-size: 14px;
    }

    /* 予約ボタンを適切な位置に */
    .po-reservation-button {
        top: 0;
        left: 2rem;
        transform: translateX(-50%);
        width: auto;
    }

    .po-reservation-button img {
        width: 80px;
        height: auto;
    }

    /* テキストブロックの左右余白を均等に */
    .po-lead-text,
    .po-intro-text,
    .po-section-title,
    .po-section-text {
        padding: 15px;
        width: 90%;
        margin: 10px auto;
    }

    /* テーブルの調整 */
    .po-table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }

    .po-table th, .po-table td {
        font-size: 13px; /* スマホで読みやすく */
        padding: 10px;
    }

    /* スマホで余白が発生するのを防ぐ */
    html, body {
        overflow-x: hidden;
    }
}



/* フェードインの初期状態（透明にしておく） */
.fade-in {
    opacity: 0;
    transform: translateY(30px); /* 下から少し浮かせる */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* スクロールで表示されたときの状態 */
.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* 初期状態（左から登場） */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px); /* 左に50pxずらす */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* 初期状態（右から登場） */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px); /* 右に50pxずらす */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* スクロールで表示されたときの状態 */
.fade-in-left.active,
.fade-in-right.active {
    opacity: 1;
    transform: translateX(0); /* 元の位置に戻す */
}

@media screen and (max-width: 768px) {
    /* PLANセクション */
    .plan{
        width: 100%;
        margin-top: 50px;
    }

    .plan_header {
        text-align: center;
        padding: 10px;
        margin-bottom: 0;
    }

    .plan_details{
        width: 92%;
        margin: 0 auto;
        margin-top: 0;
    }

    .plan_header img {
        width: 80%;
        max-width: 300px;
        height: auto;
    }

    .plan_price {
        font-size: 20px;
        font-weight: bold;
    }

    .plan_desc {
        padding: 0 24px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .plan_desc p{
        margin: 0 auto;
        text-align: start;
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
        letter-spacing: 0.7px;
    }

    .plan_border {
        margin: 20px auto;
        width: 90%;
    }

    .plan_list {
        margin-top: 0;
        padding: 10px;
    }

    .plan_item{
        display: flow;
    }


    .plan_item dt {
        font-size: 14px;
    }

    .plan_items dt {
        font-size: 14px;
        padding: 0;
    }

    .plan_item p {
        font-size:14px;
        padding: 0px;
        font-family: "Zen Old Mincho";
        margin-bottom: 10px;
    }

    .checkin {
        font-size:14px;
        padding: 20px 10px;
        font-family: "Zen Old Mincho";
        text-align: center;
    }

    .plan_item dd {
        font-size: 14px;
    }

    .plan_items dd {
        font-size: 14px;
        padding: 0;
    }

    .plan_image {
        width: 100%;
        height: auto;
    }

    .plan_image img {
        width: 123.174px;
        height: auto;
        margin: 0 auto;
        padding: 3rem 8rem;
    }

    .plan_buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .plan_buttons img {
        width: 80%;
        max-width: 300px;
    }

    /* ROOMセクション */
    .room{
        width: 100%;
        margin: 0 auto;
    }
    .room_container {
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
    }

    .room_gallery {
        width: 90%;
        margin: 40px auto 0px;
    }

    .main_image img {
        width: 100%;
        height: auto;
    }

    .thumbnail_gallery {
        grid-template-columns: repeat(3,1fr);
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    .thumbnail_gallery img {
        width: 106px;
        height: auto;
    }

    .room_content {
        width: 100%;
        max-width:90%;
        margin: 0px auto;
        padding: 0 15px;
        font-size: 16px;
        text-align: start;
        box-sizing: border-box;
        margin-bottom: 40px
    }

    .room_content p{
        color: #393939;
        margin: 20px 0;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
        letter-spacing: 0.7px;
    }

    .room_content dd p{
        color: #393939;
        margin: 20px 0;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
        letter-spacing: 0.7px;
    }

    .room_title{
        color: #393939;
        font-family: "Zen Old Mincho";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0;
    }

    .border-line {
        margin: 10px auto;
        width: 100%;
    }

    /* EQUIPMENTセクション */
    .equipment {
        width: 100%;
        padding: 20px 0;
    }

    .equipment_header {
        text-align: center;
        margin-bottom: 15px;
    }

    .equipment_header img {
        width: 50%;
        margin: 30px auto;
    }

    .equipment_grid {
        width: 90%;
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3列表示にする */
        gap: 6px;
        margin: 0 auto;
    }

    .equipment_item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .equipment_item img {
        width: 100%;
        height: auto;
    }

    .equipment_item p {
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 0;
    }

    .equipment_more {
        text-align: center;
        margin: 30px auto;
    }

    .equipment_btn {
        color: #393939;
        text-align: center;
        font-family: "Zen Old Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.7px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        text-transform: uppercase;
    }
}

.faq-reservation-button {
    position: relative;
    top: -7.6rem;
    right: 2rem;
    float:right;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px; /* 適宜調整 */
}

.faq-reservation-button img{
    width: 130px;
    height: 130px;
}

@media (max-width: 768px) {
    .faq-reservation-button {
        top: -6rem;
        left: 1rem;
        transform: translateX(-50%);
        width: auto;
    }

    .faq-reservation-button img {
        width: 70px;
        height: auto;
    }
}