:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 基本的なリセットとフォント設定 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* コンテナ設定 - フォームを中央に配置し、最大幅を設定 */
.container {
    max-width: 600px; /* フォームの最大幅 */
    margin: 0 auto; /* 中央寄せ */
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.3rem; 
}
input{
	ime-mode: disabled;
}
input::placeholder {
	font-size: 0.85rem;
}
textarea{
	background-color: darkgreen;
	font-size: 0.80rem;
	color: #FFF;
	width: 98%;
	text-decoration: none; /* 下線を消す */
}
textarea:focus {
	text-decoration: none; /* 下線を消す */
	  outline: none;
}
.contents {
    position: relative;
    width: 600px;
}
.memo {
	font-size: 0.9rem;
	margin: 45px 0 35px 0;
}
.code {
	font-size: 0.9rem;
	margin: 15px 0 3px 0;
}
.download {
	font-size: 0.9rem;
	margin: 15px 0 10px 0;
}
.header{
	margin: 3px;
}
.footer{
	font-size: 0.85rem;
	text-align: center;
	margin: 35px 0 25px 0;
}
