@charset "utf-8";

/* 余白リセット */
html, body {
  margin: 0;
  padding: 0;
}

/* 背景画像 */
body {
    background-image: url("../images/haikei.jpg");
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



/* スライド＆画像を全体表示 */
.slideshow {
    border: 4px solid #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    width: 70vw;
    height: 70vh;
    margin: 0 auto;
}

.slideshow-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* スライドを重ねる */
.slideshow-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 各スライド */
.slideshow-slides a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 角を丸く */
.img-frame {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ボタン */
.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 170px;
    margin: 20px 0;
}

.menu-buttons img {
    width: 200px;     
    cursor: pointer;
     transition: transform 0.2s;
}

.menu-buttons img:hover {
    transform: scale(1.05);
}

/* フォーム全体を中央に */
#contactForm {
    width: 60vw;              
    max-width: 800px;         
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
}

/* 各項目 */
#contactForm div {
    margin-bottom: 20px;
}

/* 入力欄を横幅いっぱいに */
#contactForm input,
#contactForm textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 16px;
}

/* textarea 高さ */
#contactForm textarea {
    height: 150px;
}

/* ボタンも横幅揃える */
#contactForm button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}



