/* 共有スタイル */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    padding: 0;
    margin: 0;
    background-color: #FBDCE1;
    background-image: radial-gradient(#fef4f4 1px, transparent 1px);
    background-size: 20px 20px;
}

.p0 {padding: 0;}
.m0 {margin: 0;}
.fB { font-weight: bold; }
.fN { font-weight: normal; }
.m0 { margin: 0; }
.mT10 { margin-top: 10px; }
.mT20 { margin-top: 20px; }
.mT30 { margin-top: 30px; }
.mT40 { margin-top: 40px; }
.mT50 { margin-top: 50px; }
.mB10 { margin-bottom: 10px; }
.mB20 { margin-bottom: 20px; }
.mB30 { margin-bottom: 30px; }
.mB40 { margin-bottom: 40px; }
.mB50 { margin-bottom: 50px; }
.h30 {height: 30px;}
.h300 {height: 300px;}
.h500 {height: 500px;}
.cR { color: #FF0000; }
.txtB80 { max-width: 80px; }
.txtB160 { max-width: 160px; }
.txtSrem09 { font-size: 0.9rem; }
.txtBrem1{ font-size: 1.1rem; }
.txtBrem2{ font-size: 1.2rem; }
.formBig2 { transform:scale(2.0); }
.formBig3 { transform:scale(3.0); }
.textCenter {text-align: center;}
p1 { color: #FF0000;}
p2 {
    color: #000000;
    font-size: 12px;
}

/*----------ヘッダー部分-------------*/
header {
    text-align: center;
    height: 100%;
    padding: 10px;
    background-color: #ffffff;
}

img.topimg {
    width: 450px;
    height: auto;
}

/* 確認画面へボタンのラップ部分のスタイル */
.btnBox {
    width: 280px;
    margin: 50px auto 100px;
}

/* 登録画面へボタンのラップ部分のスタイル */
.btnBox02 {
    width: 580px;
    margin: 50px auto 100px;
}

/*----------コンテンツ部分-----------*/
.main {
    width: 100%;
    height: 100%;
}

.content {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
}

/* タイトル */
h1 {
    font-size: 1.5rem;
    text-align: center;
    padding: 15px 20px;
    color: #000000;
    border: 3px #F0B4A9 solid;  /* 枠線を引く */
    border-radius: 10px;      /* 角丸の指定 */
    background-color: #ffffff;  /* 背景色の指定 */
    /* display: inline-block;*/
    line-height: 1.4;
    margin-top: 40px;
}

h1 span {
    font-size: 1.1rem;
}

u {
    font-weight: bold; /* 太文字 */
    font-size: 20px;
    padding: 30px;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 2px;     
}

/* テーブル */
table.form {
    width: 100%;
    border: 2px solid #999;
    border-collapse: collapse;
}

table.form th {
    padding: 15px 10px;
    text-align: left;
    background-color: #d3ccd6;
    border: 1px solid #999;
    min-height: 35px;
}

table.form td {
    padding: 15px 10px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #999;
}

/* フォームの部品 */
.vertical-align input,
.vertical-align select{
	vertical-align:middle;
}

input, select, textarea {
    height: 23px;
    background-color: #fef4f4;
}

input[type="submit"] {
    height: 65px;
    width: 275px;
    position: absolute;
    margin-bottom: 1%;
    position: relative;
    font-size: 24px;
    border-radius: 10px;
    display: inline-block; 
    background: #f5f5f5; /*テスト用カラー*/
    text-decoration: none;
    border-width: 3px;
    cursor:pointer
}

input#submit_button {
    height: 40px;
    width: 380px;
    position: absolute;
    margin-bottom: 1%;
    position: relative;
    font-size: 15px;
    background-color: #EAE8E1; /*テスト用カラー*/
    border-width: 3px;
}

/*--------------同意部分------------*/
li {
    list-style: none;
    margin-left: 5%;
}

.agree {
    max-width: 860px;
    max-height: 200px;
    overflow: auto;
    font-size: 13px;
    background-color: #ffffff;
}

/*----チェックボックスデザイン----*/
.checkbox01-input {
    display: none;
    cursor: pointer;
}

.checkbox01-parts {
    padding-left: 20px;
    position:relative;
    margin-right: 20px;
}

.checkbox01-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    right: -50px;
    width: 30px;
    height: 30px;
    border: 2px solid #999;
    border-radius: 4px;
    background-color: #fff;
    cursor:pointer
}

.checkbox01-input:checked + .checkbox01-parts {
    color: #274a78;
}

.checkbox01-input:checked + .checkbox01-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -13px;
    right: -48px;
    width: 14px;
    height: 28px;
    transform: rotate(40deg);
    border-bottom: 3px solid #274a78;
    border-right: 3px solid #274a78;
}

