@charset "utf-8";
*{
    font-family: "dnp-shuei-4gob-std", sans-serif;
    font-weight: 700;
    font-style: normal;
}
header{
    display: flex;
    justify-content:center;
    align-items: center;
    margin:0 auto;
    background-color: #f4efed;
    height:300px;
    width:100%;

}
.menu-btn {
    display: block;
    background: #d07c8a url('../images/btn.png') no-repeat center top / 150px;
    position: fixed;    
    z-index: 100;
    width: 150px;
    height: 150px;
    cursor: pointer;
    top: 8px;
    left: 8px;
    background-color: #c291ce;
    border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;
    box-shadow: 2px 2px 0px 4px #e3cde8;
    transition: 0.2s;
}

/* ホバー時に少し透明 */
.menu-btn:hover {
    opacity: 0.8;
}
.menu-btn.active {
    /* クリック時に背景色を変えたり、画像の位置をずらす */
    background-color: #e3cde8; 
    background-position: center bottom; /* 画像を少し動かす例 */
    transform: scale(0.95); /* 押した感じを出す */
}

/* メニュー本体が左から出るように変更） */
.menu {
    position: fixed;
    top: 0;
    left: -100%;/*左に隠す*/
    width: 15%; 
    height: 100vh;
    background: rgba(194, 145, 206, 0.95);
    z-index: 99;
    transition: 0.4s;

    /* 1. 余白だけで位置を決める ★ */
    padding-top: 180px; /* ボタンからの距離 */
    padding-left: 40px; /* ボタンの端から少し右に寄せる */
}
.menu.active {
    left: 0; /* 画面内に出現 */
}
/* 2. リストを縦に並べるだけにする ★ */
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 3. 文字の間隔を調整 ★ */
.menu ul li {
    margin-bottom: 15px; 
    color: white; 
    text-decoration: none;
    font-size: 20px;
    font-weight: bold; 
}
/*.menu ul {
     list-style: none; 
     padding: 0;
     }
.menu ul li { 
    margin: 20px 0; 
    text-align: center; 
}*/



h1 img{
        width:730px;
        height: 400x;
   
}
h2 {
    font-family: "dnp-shuei-4go-std", sans-serif;
    font-weight: 700;
    font-size: 60px;
    margin: 40px 0 20px 0; 
    text-align: center;    /* 45%のズレを中央寄せに修正 */
}
p{
    font-size: 20px;
}
.deco{
    background-image: url(../images/wave-over.png);
    background-color:#f4efed;
    height:123px;
    width:100%;
}
.main-container{
    height:600px;
    background-color: #c291ce;
}
.main-container img{
    max-width:300px;
    width:300px;
    height:auto
}
.greeting-container {
    text-align: center;
    padding: 20px 0;
}
.sub-container {
    height: auto;
    background-color: #c291ce;
}

.sub-container img{
    max-width:300px;
      margin:0 auto;
    background-color: #c291ce;
}
.deco2{
    background-image: url(../images/wave-under.png);
    background-color:#f4efed;
    height:123px;
    width:100%;
} 
/* フッター全体のスタイル */
.footer {
  width: 100%;
  padding: 60px 0 30px; /* 上にゆとりを持たせています */
  background-color: #fff; /* サイトに合わせて白に設定 */
  text-align: center;
  border-top: 1px solid #f0f0f0; /* 境界線を薄く入れて区切りを明確に */
  /*margin-top: 80px;*/
  background-color: #f4efed;
}

/* ロゴ部分 */
.footer-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 15px;
}

/* コピーライト */
.copyright {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}                        
