/* ベースリセット */
body, h1, h2, h3, p, ul, table {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-back); 
    padding-top: 70px;
}
@media (max-width: 768px) {
    body{
        font-size: 16px;
    }
}
/* カラー変数定義 */
:root {
    --color-brown: #40220f;
    --color-grey: #aaa;
    --color-light-grey: #EAEAEA;
    --color-white: #FFFFFF;
    --color-text:#333;
    --color-gold: #C76E36; 
    --color-back: #F8F8F8; 
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

/* ヘッダー */
#header {
    background-color: var(--color-brown);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
    position: absolute; /* 画面に固定 */
    width: 100%; /* 全幅 */
    top: 0; /* 画面上部に配置 */
    left: 0;
    z-index: 1000; /* 他の要素より手前に表示 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 影をつけて浮いているように見せる */
}

.logo{
    width: 280px; 
    margin-inline: 30px;
    display: grid;
    align-content: center;
}
#header nav ul {
    display: flex;
        margin-inline: 20px;
        gap: 10px;
        font-size: 16px;
    }
    #header nav li a {
         padding: 10px 10px; /* 左右のパディングを少し減らす */
         transition: background-color 0.3s;
        }
        
        #header nav li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* ナビゲーションのボタン装飾（予約ボタンなど） */
.nav-btn {
     background-color: var(--color-gold);
     color: var(--color-white) ;
     padding: 10px 15px;
     font-weight: 700 !important;
     border-radius: 4px;
     margin-left: 10px; 
     transition: color 0.3s ease, background-color 0.3s ease!important;
    }
    .nav-btn:hover {
    background-color: var(--color-white) !important;
    color: var(--color-brown) !important;
}

/* 概念テキストの調整 */
.concept-text {
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
    font-weight: 700;
}
.appeal-text {
    /* 調整: 上のconcept-textとの間隔を空けました */
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left; /* テキストの可読性を上げるため */
}


/* レスポンシブ対応の調整（小画面でボタンが崩れないように） */
@media (max-width: 768px) {
    /* ... 既存のレスポンシブスタイル ... */
    #header nav ul {
        flex-direction: column; /* 縦に並べる */
        gap: 5px;
        align-items: center;
    }
    #header nav li a {
        padding: 5px 8px;
        margin-left: 0;
    }
    .nav-btn {
        margin-top: 10px;
        margin-left: 0;
    }
    .schedule-map-flex {
        text-align: center;
    }
    .access-box {
        text-align: center;
    }
    .appeal-text {
        text-align: center; /* モバイルでは中央揃えに戻す */
    }
}

/* メインビジュアル */
#hero {
    position: relative;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3); /* 画像にかぶせる半透明のオーバーレイ */
    color: var(--color-white);
    text-align: center;
}
.catchphrase {
    font-size: 20px;
    margin-bottom: 10px;
}
.main-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-gold); /* アクセントカラーを少量使用 */
    padding-bottom: 10px;
}
.highlight-info {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2); 
}
.highlight-info p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.btn-detail {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid var(--color-white);
    transition: background-color 0.3s,border-color 0.3s;
}
.btn-detail:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}


/* 共通セクションスタイル */
.content-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.grey-bg {
    background-color: var(--color-light-grey);
}
.brown-bg {
    background-color: rgba(64, 34, 15, 0.85);
}
.textBig{
    font-size: 1.5em;
}
.textBig2{
    font-size: 1.3em;
}
.textMin{
    font-size: 0.8em;
}
.textlink{
  color: var(--color-gold);
  text-decoration:underline;
}
.d-ib{
    display: inline-block;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}
.sub-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1em;
    border-bottom: 1px solid var(--color-grey);
    display: inline-block;
    padding-bottom: 5px;
}

/* about セクション */
.appeal-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* treatment セクション */
.treatment-list {
    display: grid;
  grid-column-gap:30px; 
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 30px;
    width: fit-content;
    margin-inline: auto;
}
.treatment-list li {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-brown);
    margin-block: 30px;
    position: relative;
    display: flex;
    align-items: center;
  justify-content: center;
}
.treatment-list li::before{
    content: "";
    width: 0.6em;
  margin-right: 0.3em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-gold);
}
@media (max-width: 1250px) {
    .treatment-list {
        grid-template-columns: repeat(3, 1fr);
    }
      .treatment-list li {
      justify-content: flex-start;
    }
}
@media (max-width: 550px) {
    .treatment-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .treatment-list li {
        font-size: 18px;
    }
  .treatment-list li:nth-child(5) { 
        grid-column: span 2; 
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    .treatment-list li:nth-child(5)::before {
        position: static; 
        margin-right: 0.3em;
    }
}

/* access セクション */
.schedule-map-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}
.schedule-box, .access-box {
    flex: 1;
}
.reception-note-strong {
    margin-bottom: 25px;
    padding: 15px 25px;
    background-color: var(--color-light-beige); /* 薄いベージュの背景 */
    /* 大正ロマン風の装飾 */
    border: 3px solid var(--color-accent-red); /* 太めの赤い枠線 */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.reception-note-strong .title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent-red); /* 赤文字 */
    margin-bottom: 5px;
}
.reception-note-strong .time {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}
.reception-note-strong .red-text {
    color: var(--color-brown);
    font-size: 19px;
    font-weight: 800;
    border-bottom: 2px solid var(--color-gold);
    padding: 2px 5px;
}

.time-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}
.time-table th, .time-table td {
    border: 1px solid var(--color-light-grey);
    padding: 8px 5px;
    text-align: center;
}
.time-table th {
    background-color: var(--color-brown);
    color: var(--color-white);
}
.time-table tbody td:first-child {
    background-color: var(--color-light-grey);
    font-weight: 700;
    color: var(--color-brown);
}
.time-table td.closed-day {
    text-align: left;
    padding-left: 15px;
    font-size: 16px;
}
.time-table td:nth-child(7) { /* 土曜 */
    background-color: #E8F4F8;
}
.time-table td:last-child { /* 日祝 */
    background-color: #F0E8E8;
}

.access-box p {
    margin-bottom: 10px;
}
/* access セクション（地図の表示を修正） */

/* 地図の入れ物（コンテナ）のスタイルを定義 */
.map-container {
    /* スタイリッシュなデザインのため、地図の縦幅を固定し、枠線は非表示に */
    height: 300px; 
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* 埋め込んだiframe（地図）自体にコンテナのサイズを適用 */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* iframeにデフォルトでつく枠線を削除し、スタイリッシュに */
}

/* （注: 以前の .map-placeholder の記述は削除してください） */
.open-info {
    margin-top: 40px;
    padding: 30px;
    border: 1px dashed var(--color-brown);
}
.open-info p {
    margin-top: 10px;
}
.open-info strong {
    color: var(--color-brown);
}


/* message セクション */
#message {
    padding-top: 50px;
    padding-bottom: 50px;
}
.gold-text {
    color: var(--color-gold) !important;
}
.white-text {
    color: var(--color-white) !important;
}
.message-body {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 2.0;
}
.message-body p {
    margin-bottom: 20px;
}
.signature {
    text-align: right;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-top: 30px;
}
.note-text {
    color: #666;
    margin-top: 10px;
}
@media (max-width: 1300px) {
    #header {
        flex-direction: column; /* 縦に積み重ねる */
        padding: 10px 0;
    }
    #header nav{
        display: none;
    }
}

/* レスポンシブ対応（簡易） */
@media (max-width: 768px) {
    #header nav ul {
        flex-direction: column; /* 縦に並べる */
        gap: 5px;
        align-items: center;
        width: 100%; 
        margin-top: 10px; /* ロゴエリアとの間隔 */
    }
    #header nav li a {
        padding: 5px 8px;
        margin-left: 0;
    }
    .nav-btn {
        margin-top: 5px; /* 上部の隙間を調整 */
        margin-left: 0;
    }
    .main-title {
        font-size: 40px;
    }
    .content-section {
        padding: 50px 5%;
    }
    .sub-title {
        font-size: 24px;
    }
    .schedule-map-flex {
        flex-direction: column;
        gap: 30px;
    }
}
/* カウントダウン表示のスタイル */
.countdown-display {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold); /* アクセントカラーで目立たせる */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,1); /* 視認性向上のための影 */
    letter-spacing: 2px;
    line-height: 1.4;
}

/* フェードインアニメーションの初期状態 */
.fade-in-section {
    opacity: 0; /* 最初は透明 */
    transform: translateY(20px); /* 最初は少し下にずらしておく */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* アニメーションの時間とイージング */
}

/* フェードインアニメーション後の状態 */
.fade-in-section.is-visible {
    opacity: 1; /* 不透明にする */
    transform: translateY(0); /* 元の位置に戻す */
}
/* スクロールインジケーター */
.scroll-down {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    /* 【修正】アニメーション名を simple-up-down に変更 */
    animation: simple-up-down 5s infinite; 
    opacity: 0.7;
}

/* 【修正】シンプルな上下移動のアニメーションを定義 */
@keyframes simple-up-down {
    0% {
        transform: translate(-50%, 0); /* 最初の位置 */
    }
    50% {
        transform: translate(-50%, -20px); /* 上に10px移動 */
    }
    100% {
        transform: translate(-50%, 0); /* 元の位置に戻る */
    }
}
/* schedule セクションの .open-info スタイルに追加 */
.open-info__list {
    display: flex; /* 横並びにする */
    justify-content: center; /* 中央揃え */
    gap: 20px; /* 項目間の隙間 */
    margin-top: 20px;
  margin-bottom: 20px;
}

.open-info__list li {
    font-weight: 700;
    color: var(--color-brown); /* ネイビーの文字色 */
    padding: 8px 15px;
    
    
    /* アイコン代わりに、リストの先頭に小さい●を追加する装飾（オプション） */
    position: relative;
    padding-left: 25px; /* アイコン分のスペース確保 */
}

/* リストアイテムの装飾 */
.open-info__list li::before {
    content: "●"; /* 小さな丸をリストのマークとして使用 */
    color: var(--color-gold); /* アクセントカラーのゴールド */
    font-size: 10px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.open-info__img{
  margin-bottom: 20px;
  max-width: 600px;
  margin-inline:auto;
}
.open-info__img img {
    max-width: 100%; /* レスポンシブ対応 */
    height: auto;
    border: 3px solid var(--color-gold); 
}
/* 追加した文章ブロック */
.open-info__text-block {
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: #FFF7E3;
    border-radius: 5px;
}

/* キャッチコピーの装飾 */
.present-catch {
    font-size: 1.2em;
    font-weight: bold;
    color: #C76E36; /* バナーのオレンジに近い色 */
    text-align: center;
    margin-bottom: 10px;
}

/* 詳細文章の装飾 */
.present-detail {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 強調文字（例: メロンパンをプレゼント） */
.u-text-strong {
    font-weight: bold;
    color: #DDAA00; /* 明るいイエロー系で強調 */
}
/* モバイル対応：リストが縦並びになるように調整 */
@media (max-width: 600px) {
    .open-info__list{
        flex-direction: column; /* 画面が狭い場合は縦並びにする */
        gap: 10px;
        align-items: center;
    }
}

/* フッター全体 */
#footer {
    background-color: var(--color-light-grey); /* ネイビーの背景 */
    padding: 30px 5% 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 30px;
    text-align: left;
    font-size: 16px;
}

/* 1. 基本情報エリア（左側 1/3） */
.footer-info {
    text-align: center; 
    background-color: #FFFFFF; 
    padding: 20px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px var(--color-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.footer-logo {
    width: 150px; 
    height: 15
    0px;
    margin-bottom: 10px;
}
.footer-name {
    font-family: var(--font-heading);
    font-size: 24px; /* 【強調】他の要素より大きく */
    font-weight: 700;
    margin-bottom: 5px;
}
.footer-address, .footer-access {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* 2. 主要導線エリア（中央 1/3） */
.footer-main-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--color-grey); 
    border-right: 1px solid var(--color-grey); 
    padding: 0 30px; /* 左右にパディング */
}
.footer-btn {
    display: block;
    width: 90%;
    max-width: 250px;
    padding: 12px 20px;
    background-color: var(--color-gold); /* 予約ボタンは目立つゴールド */
    color: var(--color-white);
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.footer-btn:hover {
    background-color: var(--color-white);
    color: var(--color-brown);
}
.footer-btn-light {
    background-color: var(--color-white); 
    color: var(--color-brown) ;
    border: 1px solid var(--color-brown); 
}
.footer-btn-light:hover {
    color: var(--color-gold) ;
    border: 1px solid;
}
.reservation-note {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

/* 3. グループ情報エリア */
.footer-group-info {
    padding-left: 0px;
}
.group-title {
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 5px;
}
.group-clinic-box {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.group-clinic-photo {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.group-clinic-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}
.group-clinic-text p {
    font-size: 14px;
    line-height: 1.5;
}

/* 4. 法人トップへのリンク */
.footer-corp-link {
    grid-column: 1 / -1; /* 全幅を使用 */
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-grey);
}
.corp-logo {
    width: 150px;
}
.footer-text{
    text-align: center;
    font-size: 14px;
}

/* モバイル対応 */
@media (max-width: 900px) {
    .footer-container {
        /* 2カラム表示に変更 */
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: 1 / 2;
    }
    .footer-main-links {
        grid-column: 2 / 3;
        border-right: none;
        padding-right: 0;
    }
    .footer-group-info {
        grid-column: 1 / 3; /* 1行を占有 */
        padding-left: 0;
        margin-inline: auto;
    }
    .footer-info, .footer-main-links, .footer-group-info {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .footer-container {
        /* 1カラム表示に変更 */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-info, .footer-main-links, .footer-group-info {
        grid-column: 1 / 2;
        text-align: center;
        width: 90%;
        margin-inline: auto;
    }
    .footer-main-links {
        border-bottom: 1px solid var(--color-grey);
        border-left: none;
        padding-bottom: 20px;
        padding-left: 0;
    }
    .footer-group-info {
        text-align: left;
    }
}
.footer-map-container {
    width: 100%;
    /* 高さを固定してコンパクトに表示 */
    height: 350px; 
/*    margin-top: 25px;*/
    border-radius: 4px;
    overflow: hidden; /* 角丸にするために必要 */
    border: 1px solid var(--color-gold); 
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* モバイル対応（補足）：スマホでも地図が適切に表示されるように確認 */
@media (max-width: 600px) {
    .footer-map-container {
        /* スマホでは少し高さを出す */
        height: 200px;
    }
}
.reservation-btn{
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 1299px) {
    .reservation-btn{
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 1000;
        background-color: var(--color-gold);
        color: var(--color-white);
        width: 100px;
        height: 100px;
        opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    border-top-left-radius: 4px;
    overflow: hidden;
    }
    .reservation-btn a{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.1em;
        font-size: 16px;
        font-weight: 700;
        background-color: var(--color-gold);
        color: var(--color-white);
        transition: background-color 0.3s,color 0.3s;
    }
    .reservation-btn a img{
        filter: 
        /* 明度を反転させる */
        invert(100%) 
        /* コントラストと彩度を調整 */
        brightness(100%) 
        contrast(100%);
        width: 40px;
        transition: filter 0.3s;
    }

    .reservation-btn a:hover{
        background-color: var(--color-white);
        color: var(--color-brown);
    }
    .reservation-btn a:hover img{
        filter: 
        invert(13%) 
        sepia(38%) 
        saturate(1597%) 
        hue-rotate(345deg) 
        brightness(95%) 
        contrast(106%);
    }
    .reservation-btn.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media (max-width: 600px) {
    .reservation-btn{
        width: 80px;
        height: 80px;
    }
    .reservation-btn a{
        font-size: 14px;
    }
    .reservation-btn a img{
        width: 35px;
    }
}

@media (max-height: 770px) {
    #hero{
        min-height: 560px;
        height: calc(100vh - 70px);
        height:  calc(100svh - 70px);
    }
    .scroll-down{
        display: none;
    }
    .main-title{
        margin-bottom: 1vh;
        line-height: 1.2;
    }
    .countdown-display{
        line-height: 1.3;
    }
}
.news-list{
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-inline: auto;
    padding: 15px 25px;
}
.news-list dt{
    position: relative;
    margin-bottom: 0.7em;
    font-size: 16px;
}
.news-list dt:before{
    position: absolute;
    content: "";
    width: 0.5em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-gold);
    bottom: -0.6em;
    left: 50%;
    transform: translateX(-50%);
}
.news-list dd{
    margin-left: 0;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px dashed var(--color-grey);
}
/* --- 予約ボタンの既存CSSの下あたりに追加 --- */
.to-top-btn {
    position: fixed;
    /* 画面の右下隅に配置 */
/*　予約ボタンが復活したら
    bottom: 120px; 
    right: 25px;
*/
      bottom: 15px;
      right: 15px;

    z-index: 998; /* 予約ボタンよりわずかに下に配置するか、同じにする */
    
    width: 48px; /* ボタンサイズ */
    height: 48px;
    border-radius: 50%; /* 円形 */
    background: var(--color-brown); /* クリニックのテーマカラー */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    /* 初期状態は非表示 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.to-top-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.to-top-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-white); /* 白い矢印 */
}

/* スクロール時に表示するためのクラス */
.to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
}

/* PCビュー（1300px以上）で完全に非表示にする */
@media screen and (min-width: 1300px) {
    .to-top-btn {
        bottom: 30px;
      right: 30px;
    }
}
/*　予約ボタン出たら復活
@media screen and (max-width: 600px) {
    .to-top-btn {
        bottom: 100px;
      right: 15px;
    }
}
*/
@media (min-width: 1024px) and (orientation: portrait) {
  #hero{
    height: 50vh;
  }
}
.opening-flyer-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}
.flyer-wrapper {
  max-width: 800px; /* 画像サイズに合わせる */
  margin: 0 auto;
  padding: 0 20px;
}
.flyer-title {
  font-size: 24px;
  color: #3e352d; /* チラシの焦げ茶 */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.flyer-subtitle {
  display: block;
  font-size: 0.7em; /* 少し小さく、でも存在感はあるサイズ */
  font-weight: 500;
  color: #c5b358; /* ここにゴールド を使うと目を引きます */
  margin-bottom: 10px;
  letter-spacing: 0.1em; /* 文字の間隔を広げて高級感を出す */
}
.flyer-link {
  position: relative;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  line-height: 0;
}
.flyer-link:hover {
  transform: translateY(-5px);
}
.flyer-img {
  width: 100%;
  height: auto;
}
.flyer-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(62, 53, 45, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.flyer-link:hover .flyer-overlay {
  opacity: 1;
}
.btn-download {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background-color: #c5b358; /* ゴールド */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}