/* main に背景画像を適用 */
 /*
  .background-wrapper {
    background-image: url(images/photo3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    
    /* padding: 20px;
 } */



    body {
        margin: 0;
        padding: 0;
      }
      

    .big-bg {
        background-image: url(images/photo3.jpg);
        display: flex;
        /* text-align: center; */
        align-items: center; /* 中央寄せ(上下、垂直方向) */
        justify-content: center; /*水平方向の調整（） */
        background-size: cover;
        /* background-color: #fffac2; */
        background-position: top center;
        background-repeat: no-repeat;
        min-height: 100vh;
        margin: 0;
        /* padding: 20px; */
    }


    /* 🔹 背景を白っぽくするオーバーレイ */
.big-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* 白の半透明 */
    z-index: 1;
}
/* 文字の可読性を保つためにこれを前面に */
   .home-content  {
        text-align: center;
        position: relative; /*文字のオーバーレイの上にくるようにする*/
        z-index: 2;
        /* margin-top: 0.00%; */
   }

    .home-content p  {
        font-size:1.225rem;
        margin: 1px 0 12px;
        /* margin: 0; */
    }

.page-title{
    margin: 0;
    padding: 70px 10px 10px 60px;
     font-size: 5rem;
     font-family: 'Philosopher', serif;
     text-transform: uppercase;
     font-weight: normal;
}

.button {
    /* padding: 10px 10px 10px 10px; */
    font-size: 1.375rem;
    background: #0bd;
    color: #fff;
    border-radius: 10px;
    padding: 10px 32px;
}

.button:hover {
    background: #0090aa
}

.background-wrapper {
    font-family: 'Philosopher', sans-serif; /* フォント変更（Google Fontsの指定） */
    font-size: 1.2rem; /* 全体の文字サイズ */
    font-weight: 400; /* フォントの太さ */
    line-height: 1.6; /* 行間を調整 */
    color: #333; /* 文字色（少し暗めのグレーで視認性UP） */
    margin: 0 auto; /* 左右のマージンを自動にして中央よせ*/
    text-align: center; /*なかのテキストや要素を中央寄せしたい場合*/
    /* text-align: center; 文字を中央寄せ（好みに応じて変更） */
}

/*フッター*/ 

.page-footer {
    /* background-image: url(/images/footer-s.webp); */
    background-size: cover;
    background-position: center;
    padding-top: 12rem;
    text-align: center;   
}



.info1 {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;

}

.info1 th,
.info1 td {
    border-bottom: 1px solid #c9c2bc;

}

.info1  th {
    text-align: center;
    font-weight: normal;
    padding: 1rem;

}

.info1 td {
    padding: 1rem 0;
}



/* 🖥 画面幅が 1200px を超えたら、それ以上大きくならないようにする */
/* @media screen and (min-width: 500px) {
    .background-wrapper {
        background-size: 500px auto; /* 横幅 1200px 以上にならない */
    /* }
} */ 


/* #contact の背景を白にする */
/* #contact {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */
