@charset "UTF-8";
/* CSS Document */
body{
  background-image: url("/img/bg.webp");  /* ←画像パスに変更 */
  background-size: cover;                   /* ボタン全体にフィット */
  background-position: center;              /* 中央に配置 */
  background-repeat: no-repeat;             /* 繰り返さない */
  background-attachment: fixed;   

}
ul {
    list-style: none;
}

.lp {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: auto;
}
.lp img{
    max-width: 600px;
    width: 100%;
    display: block;
 
    
}
.image {
	margin-bottom: 10px;
}
.image-img{
   
    box-shadow: 0 20px 20px rgba(0,0,0,0.15);
    
}
 /* ---------------- */
/* 右固定メニューは初期非表示（スマホ用） */
.left-menu {
  display: none;
}

/* PC表示以上で右に固定 */
@media (min-width: 1024px) {
  .left-menu {
    display: block;
    position: fixed;   /* 固定 */
    top: 20px;        /* 上からの位置 */
    left: 0px;       /* 右からの位置 */
    width: 200px;      /* メニュー幅 */
    z-index: 1000;
  }

  .left-menu ul {
    list-style: none;
    padding: 0;

  }

  
  .left-menu a {
    text-decoration: none;
    color: #333;
  }


  /* 本文右側の余白を確保 */
  .content {
    margin-right: 240px; /* メニュー幅+余白 */
  }
}
 /* ---------------- */
 /* CSS */
.menu-inside {
 display: flex;                 /* ← これ！ */
  flex-direction: column;        /* 改行に対応 */
  justify-content: center;       /* 縦中央 */
  align-items: center;           /* 横中央 */

  background: #f4eee6;
  color: #2f2a26;
  width: 100%;
  height: 48px;
  padding: 10px 10px;
  border-radius: 0px 10px 10px 0px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 5px;
  
}
.menu-inside:hover  {
  background-color: #BBAF99;
  color: #FFF;

}



.menu-inside-s:hover  {
  filter: brightness(1.1); 

}

.menu-inside-b:hover  {
  filter: brightness(1.1); 

}
  .left-menu ul li .menu-inside-s img{
  width: 150px;
  margin-bottom: 0px;
}



 /* ---------------- */
.fixed_btn {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);  /* 中央寄せ */
    z-index: 9999;
    display: flex;
 
    flex-direction: column;
    align-items: center;          /* 中央揃え */
    gap: 0px;
    pointer-events: auto;
    transition: opacity 0.3s, transform 0.3s;
    max-width: 560px;  
     width: 100%;                /* 中央寄せ用に変更 */
}

/* 非表示クラス */
.fixed_btn.none {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* （任意）背景オーバーレイ風の疑似要素 — 見せたい場合のみ */
.fixed_btn::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(0);
        max-width: 560px;  
     width: 100%;                   /* 見せたい幅に合わせて調整 */
    height: auto;             /* 調整 */
  
    z-index: -1;

    pointer-events: none;
}

/* 上の大きいボタン（btn-a） */
.fixed_btn > .btn_link {
    display: block;
    line-height: 0;
}

/* 画像の基本設定（自然な比率で縮小） */
.fixed_btn img {
    display: block;
    width: auto;
    height: auto;
        max-width: 560px;  
     width: 100%;        /* 必要に応じて調整（btn-a と bcd を揃える）*/
}

/* 下の3つ（b, c, d）：親内で横並びにする（fixedにしない） */
.fixed_btn-bcd {
    display: flex;
    gap: px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* li とリンクの調整 */
.fixed_btn-bcd li {
    display: block;
}

.fixed_btn-bcd .btn_link {
    display: block;
    line-height: 0;
}

/* 下ボタンのサイズ（必要に応じて調整）*/
.fixed_btn-bcd img {
    max-width: 180px;
    height: auto;
    display: block;
}



.linkarea {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.lp_footer {
    max-width: 600px;
    width: 100%;
    margin: auto;
    margin-bottom: 80px;
    padding: 20px 0px;
    background: #70655B;
    color: white;
    font-size: 12px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}


.lp_footer p{

text-align: center;
}

.lp_footer p img{
    margin-top: 80px;

width: 180px;
margin-bottom: 120px;
}


/*  */

 .appointment {
    position: relative;
    width: 100%;
    margin: auto;
}

.button {
    position: relative;
}

.button1 a img {
    position: absolute;
    bottom:3%;
    left: 7%;
    width: 85%;
    height: auto;
    animation: cta 2s ease 0s infinite;
}


.button2 a img {
    position: absolute;
    bottom: 4%;
    left: 7%;
    width: 85%;
    height: auto;
    animation: cta 2s ease 0s infinite;
}

.button3 a img {
    position: absolute;
    bottom: 7%;
    left: 7%;
    width: 85%;
    height: auto;
    animation: cta 2s ease 0s infinite;
}

.button4 a img {
    position: absolute;
    bottom: 65px;
    left: 6%;
    width: 85%;
    height: auto;
    animation: cta 2s ease 0s infinite;
}

@keyframes cta {
    0% {transform: scale(1)}
    50% {transform: scale(1.1)}
    100% {transform: scale(1)}
}


@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
  
}

/* 768px以下のとき */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
    
  }

}
			
/* 追従フッター */
#fixedBottom {
        position: fixed;
        bottom: 0px;
        right: 0;
        left: 0;
        margin: auto;
        width: 100%;
        background-color: #D1BD8B;
        z-index: 100;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    }
    .bnr-list{
        flex-wrap: wrap;
        gap:2%;
    }
    .bnr-list li{
    width: 30%;
    max-width: 290px;
    }
    .bnr-list li.wide-btn{
        width: 100%;
    }
    .bnr-list li a{
        border: 2px solid #B68C6D;
        background-position: 95% center;
        padding: 3%;
        font-size: 1rem;
    }
.bnr-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
}
.bnr-list li a{
    display: block;
    border: 4px solid #B68C6D;
    border-radius: 8px;
    background-image: url(../img/icon-btn-arrow.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-color:#815F11;
    color: #fff;
    text-align: center;
    padding: 26px 0;
    font-size: 1.2rem;
    font-weight: bold;
    transition: .3s;
	text-decoration: none;
}
.bnr-list li a:hover{
    background-color: #F4EFE3;
    color: #815F11;
}


@media screen and (max-width: 767px) {
#fixedBottom .bnr-list{
        flex-wrap: wrap;
        gap:1%;
    }
#fixedBottom .bnr-list li{
        width: 49%;
        margin-bottom: 0;
    }
#fixedBottom .bnr-list li a{
        border: none;
        background-position: 95% center;
			padding: 3%;
			padding-top: 20px;
			padding-bottom: 20px;
        font-size: 1rem;
    }
.lp_footer {
    margin-bottom: 60px;
}
}
