/* common */
/* body.css */

/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
	line-height: 1.5;
}

/* メインコンテンツ */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrap {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align:left;
	width: 100%;	
	max-width:800px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
header{
    position: fixed;
    width: 100%;
    top:0;
}
header .wrap{
display: flex;
  justify-content:space-between;
  align-items: center;	
}
header nav{
	display:flex;
	justify-content:flex-end;
	align-items: center;	
}
header nav a{
margin-left:1em;	
}



/* フォーム */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color:#1AA100;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color:#148100;
}

/* ページトップボタン */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

/* フッター */
footer {
    text-align: center;
    padding: 10px;
    background: #ddd;
    color:#666;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.copy {
    font-size: 14px;
}
