@charset "utf-8";

@media only screen and (min-width: 1025px) {
    /*デバイスの横幅が979px以下の場合*/
} 
 
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    /*デバイスの横幅が321以上768以下の場合*/
}
@media only screen and (max-width: 768px) {
    /* デバイスの横幅が320px以下の場合 */
} 

.qrcode_img {
    width: 200pt;
    height: 200pt;
}

body {
    color: #326693;			/* テキストの色を指定する */
    /* font-size: 200%;         */
    background-color: #f7f9fc;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
    padding: 20px;
}

  
  /* フォームの枠 */
form {
    background-color: #f7f9fc;
    max-width: 500px;
    margin: 0 auto;
    margin-left: 0pt;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
  
  /* ラベルと入力欄 */
label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: bold;
}
  
input[type="text"],
input[type="email"],
input[type="file"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}
  
  /* ボタン */
input[type="submit"] {
    display: block;
/*    margin: auto;*/
    margin-left: 0pt;
    background-color: #0d47a1;
    color: #fff;
    border: none;
    padding: 10px 10px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
  


  /* ボタンを押したとき */
input[type="submit"]:active {
    background-color: #1565c0;
}

.submit_ul {
    list-style: none;
}

.submit_ul li {
    margin-top: 3pt;
    margin-bottom: 3pt;
}

