/* 共通
------------------------------------------------------------ */
.center_note {
	text-align: center;
}


/* トップ
------------------------------------------------------------ */
#register #front table th {
    display: block;
    text-align: left;
    vertical-align: top;
}
#register #front table th p {
    font-weight: bold;
    padding: 0.3em 1.5em;
    border: solid 1px #dddddd;
}
#register #front table td {
    display: block;
    padding: 1em 0 1.5em;
}
#register #front table td dt {
    font-weight: bold;
    margin-bottom: 0.5em;
}
#register #front table td dd {
    margin-bottom: 0.5em;
}
#register #front table td ul.fee_note li {
    list-style: none;
    padding-left: 1em;
    position: relative;
}
#register #front table td ul.fee_note li:before {
    content: '※';
    color: #ff0000;
    position: absolute;
    left: 0px;
    top: 0px;
}
#register #front table td ul.regist_note li {
    list-style: none;
    padding-left: 1em;
    position: relative;
}
#register #front table td ul.regist_note li:before {
    content: '\0025cf';
    font-size: 60%;
    color: #b2b2b2;
    position: absolute;
    left: 0px;
    top: 5px;
}
#register #front .regist_link p {
    margin-bottom: 15px;
}
#register #front .regist_link p a {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 0.8em 1.5em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
#register #front .regist_link p a.earlybird {
    background: #e5daee url("../images/2025/icon_arrow_p.png") no-repeat 10px center;
}
#register #front .regist_link p a.regist_form {
    background: #c2e6b1 url("../images/2025/icon_arrow_g.png") no-repeat 10px center;
}
#register #front .regist_link p a.regist_howto {
    background: #b5ddeb url("../images/2025/icon_arrow_b.png") no-repeat 10px center;
}
#register #front .regist_link p a span {
    font-size: 80%;
}
#register #front .regist_link p .earlybird_note {
    display: block;
    padding: 0.5em 0 0 0.5em;
    color: #ff0000;
}
#register #front .earlybird_caution {
    margin-bottom: 40px;
    border: solid 1px #ff0000;
    padding: 10px 15px;
}
#register #front .earlybird_caution dl {
    display: table;
    margin: auto;
}
#register #front .earlybird_caution li {
    list-style: none;
    padding-left: 1em;
    margin-left: 1em;
    position: relative;
}
#register #front .earlybird_caution li::before {
  content: '\0025cf';
  font-size: 60%;
  color: #b2b2b2;
  position: absolute;
  left: 0px;
  top: 5px;
}
#register #front .earlybird_caution p {
    margin: 15px 0;
}
#register #front .earlybird_caution p a {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    background: #f9cfcd;
    display: block;
    padding: 0.8em 1.5em;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}

/* 登録
------------------------------------------------------------ */
#register form {
	margin: auto;
	width: 1000px;
	max-width: 100%;
}
#register form input[type='text'],
#register form button,
#register form select,
#register form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
#register form input[type="text"],
#register form textarea {
	font-size: 1.6rem;
	padding: 0.2em 0.5em;
    -moz-padding: 0.2em 0.5em;;
	width: 100%;
	max-width: 100%;
	margin-bottom: 25px;
	border: solid 1px #ddd;
    background: #fafafa;
}
#register form input[type="text"]:focus,
#register form textarea:focus {
    background: #fff;
}
#register form input[name="earlybird"] {
	display: table;
	max-width: 14em;
	margin-left: auto;
	margin-right: auto;
}
#register form textarea {
  resize: vertical;
}
#register form .select_area {
    max-width: 100%;
    position: relative;
}
#register form .select_area::after {
  content: "\0025bc";
  position: absolute;
  top: 20%;
  right: 0.5em;
  pointer-events: none;
  -moz-transform: scale(0.8,0.5);
  -webkit-transform: scale(0.8,0.5);
  -o-transform: scale(0.8,0.5);
  -ms-transform: scale(0.8,0.5);
  transform: scale(0.8,0.5);
}
#register form .select_area select {
	font-size: 1.6rem;
    background: #fafafa;
    padding: 0.4em 2em 0.4em 0.5em;
    border: solid 1px #cfcfcf;
}
#register form .select_area select:focus {
    background: #fff;
}
#register form .radio_input {
	padding-right: 1em;
}
#register form input[type="radio"] {
	margin-right: 8px;
}
#register form .button_area {
	font-size: 1.6rem;
	text-align: center;
	margin: 40px 0px 0px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
#register form button {
    line-height: 40px;
	display: inline-block;
    margin: 0.5em 0 0;
	padding: 0px 2em;
	background: #eeeeee url("../images/2025/icon_arrow_gr.png") no-repeat 10px center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
    cursor: pointer;
}
#register form input[type="reset"],
#register form button.gray_bt {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0.5em;
	display: inline-block;
	width: 8em;
	margin: 10px;
	background: #f0f0f0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
	border: none;
	cursor: pointer;
}
#register form .button_area button {
	font-weight: bold;
    text-align: center;
	padding: 0px 1em;
    margin: 0 0.5em;
    width: 8em;
    position: relative;
}
#register #forms #form-register form .button_area {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
#register #forms #form-register form .button_area button[type="submit"] {
    background: #e5daee url("../images/2025/icon_arrow_p.png") no-repeat 10px center;
}
#register #forms #form-register form .button_area button.gray_bt {
    background: #eeeeee url("../images/2025/icon_arrow_gr.png") no-repeat 10px center;
}
#register #forms #form-register form .button_area button[type="reset"] {
}

#register #forms #form-register form > div {
    margin-bottom: 30px;
}
#register #forms #form-register form .regist_header {
    padding: 0.5em 1em;
    margin-bottom: 15px;
    border: solid 1px #dddddd;
}

#register #forms #form-register form .kubun_table th {
    font-weight: normal;
    display: block;
    text-align: left;
    vertical-align: top;
}
#register #forms #form-register form .kubun_table td {
    display: block;
    margin-left: 1.5em;
    padding-bottom: 0.5em;
}
#register #forms #form-register form .kubun_table .select_area {
    margin-bottom: 3px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#register #forms #form-register form .kubun_table .select_area::after {
}
#register #forms #form-register form .kubun_table .select_area select {
	width: 80%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 3em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 3em);/*Firefox4~15対応*/
	width: calc(100% - 3em);  
}
#register #forms #form-register form .kubun_table td label {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#register #forms #form-register form .kubun_table input[type="text"] {
    margin-bottom: 0;
	width: 80%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 6em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 6em);/*Firefox4~15対応*/
	width: calc(100% - 6em);  
}
#register #forms #form-register form .kubun_table input.stu_post_ex {
	width: 80%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 5em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 5em);/*Firefox4~15対応*/
	width: calc(100% - 5em);  
}

#register #forms #form-register form .radio_table caption {
    font-weight: bold;
    text-align: left;
    padding: 0.5em 0;
	white-space: nowrap;
}
#register #forms #form-register form .radio_table td {
    text-align: left;
    vertical-align: top;
    padding-bottom: 0.5em;
	display: table-cell;
}
#register #forms #form-register .kome_list {
	margin-top: 30px;
}
#register #forms #form-register .kome_list li {
	list-style: none;
	padding-left: 1em;
	position: relative;
}
#register #forms #form-register .kome_list li:before {
	content: "※";
	color: #f00;
	position: absolute;
	left: 0px;
}

#register form strong {
	display: block;
}
#register form input.half_size {
	width: 500px;
	max-width: 100%;
}
#register form input#zippostal {
	width: 8em;
}
#register form button.zip_search {
    margin: 0 0 0 15px;
    padding: 0 1.5em;
    background: #c2e6b1;
}
#register #forms #form-register form .prefectures_area {
    margin-bottom: 45px;
    width: 11em;
}
#register #forms #form-register form .prefectures_area select {
    width: 100%;
}
#register article a {
	text-decoration: underline;
}

#register .privercy_area {
	background: #f2f2f2;
	padding: 20px;
}
#register .privercy_area div {
	padding: 0.5em;
	height: 12em;
	background: #fff;
	overflow-y: scroll;
}
#register .privercy_area strong {
	text-decoration: underline;
}
#register .privercy_area li,
#register .privercy_area dd {
	margin-left: 1.5em;
}

#register .luncheon ul,
#register .practice ul {
    list-style: none;
    padding: 0.5em 1em;
    margin-bottom: 10px;
    border: solid 1px #f00;
}
#register .luncheon ul li,
#register .practice ul li {
    margin: 0.2em 0;
    padding-left: 1em;
    position: relative;
}
#register .luncheon ul li:before,
#register .practice ul li:before {
    content: '';
    display: block;
    width: 0.4em;
    height: 0.4em;
    background: #f00;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
    position: absolute;
    left: 0em;
    top: 0.6em;
}
#register .fee_total {
	padding: 0.5em 0;
}
#register .questionary label {
    display: inline-block;
    margin-right: 1.5em;
    white-space: nowrap;
}
#register .questionary label input {
    margin-right: 10px;
}
#register .questionary .questionary_ex {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#register .questionary .questionary_ex input[type="text"] {
    margin: 0;
}

/* 確認画面 */
#register #forms .confirm table {
	margin: auto;
}
#register #forms .confirm table th {
	font-weight: bold;
	display: block;
	text-align: left;
	vertical-align: top;
	padding-bottom: 1em;
}
#register #forms .confirm table td {
	display: block;
	text-align: left;
	vertical-align: top;
	padding-bottom: 1em;
}
#register #forms .confirm table td.select_block p {
	margin-bottom: 0.5em;
}
#register #forms .confirm table td.select_block p:last-child {
	margin-bottom: 0em;
}

/* 完了画面 */
#register #forms .regist_comment {
	margin-bottom: 40px;
}
#register #forms .regist_comment h2 {
  font-size: 1.6rem;
    padding: 0.5em 1em;
    margin-bottom: 15px;
    border: solid 1px #dddddd;
}

/* 決済画面 */
#register #forms {
}
#register #forms table.form-register_table {
	margin: auto;
}
#register #forms table th {
	font-weight: bold;
	display: block;
	text-align: left;
	vertical-align: top;
	padding-bottom: 0.5em;
}
#register #forms table td {
	display: block;
	text-align: left;
	vertical-align: top;
	padding-bottom: 1em;
}
#register #forms table td.luncheons_item p,
#register #forms table td.practices_item p {
	margin-bottom: 0.5em;
}
#register #forms table td.luncheons_item p:last-child,
#register #forms table td.practices_item p:last-child {
	margin-bottom: 0em;
}
#register #forms table td.practices_item p:last-child {
	margin-bottom: 0em;
}
#register #forms form .total th {
	background: #f2f2f2;
	padding: 0.3em 0.5em;
	border: solid 2px #f2f2f2;
}
#register #forms form .total td {
	padding: 0.3em 0.5em;
	border: solid 2px #f2f2f2;
}
#register #forms form[name="form_payment"] .select_area {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#register #forms form .button_area button.submit {
    width: 14em;
    background: #d2eeee;
}


/* 大会登録方法
------------------------------------------------------------ */
#register .howto {
    margin-bottom: 40px;
}
#register .howto h2 {
  font-size: 1.6rem;
    padding: 0.5em 1em;
    margin-bottom: 15px;
    border: solid 1px #dddddd;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
#register .howto ol {
  margin-left: 1.5em;
}
#register .howto ul {
  margin-left: 1.5em;
}
#register .howto .cards {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#register .contents .howto .cards img {
  border: solid 1px #dddddd;
  margin-left: 5px;
  width: 66px;
}

@media (min-width: 414px) {
}

@media (min-width: 768px) {
/* トップ
------------------------------------------------------------ */
#register #front table th {
    display: table-cell;
    padding-bottom: 20px;
}
#register #front table th p {
    padding: 0.5em 1.5em;
    display: block;
    white-space: nowrap;
}
#register #front table td {
    display: table-cell;
    padding: 0 0 20px 20px;
}
#register #front .regist_link {
    margin-top: 30px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
#register #front .regist_link p {
    margin-bottom: 0;
	width: 30%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc((100% - 30px) / 3);/*Chrome19~25対応*/
	width: -moz-calc((100% - 30px) / 3);/*Firefox4~15対応*/
	width: calc((100% - 30px) / 3);
//    width: 32%;
}
#register #front .regist_link p a {
    font-size: 1.7rem;
    padding: 1em 0.8em 1em 1.3em;
}
#register #front .earlybird_caution {
    margin-bottom: 40px;
}
#register #front .earlybird_caution p {
    margin: 15px 0;
}
#register #front .earlybird_caution p a {
    font-size: 1.7rem;
	width: 48%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(50% - 20px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 20px);/*Firefox4~15対応*/
	width: calc(50% - 20px);
    margin: 15px auto;
}

/* 登録
------------------------------------------------------------ */
#register #forms #form-register form > div {
    margin-bottom: 40px;
}
#register #forms #form-register form .regist_header {
    padding: 0.8em 1.5em;
    margin-bottom: 15px;
}

#register #forms #form-register form .kubun_table {
    width: 100%;
}
#register #forms #form-register form .kubun_table th {
    display: table-cell;
    padding: 0.5em 1em 0 0;
    white-space: nowrap;
    width: 10em;
}
#register #forms #form-register form .kubun_table td {
    display: table-cell;
    margin-left: 0;
    padding: 0 0 0.5em;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
#register #forms #form-register form .kubun_table .select_area {
    margin-bottom: 0px;
    width: 14em;
}
#register #forms #form-register form .kubun_table td label {
	width: 50%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 15em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 15em);/*Firefox4~15対応*/
	width: calc(100% - 15em);  
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#register #forms #form-register form .kubun_table input[type="text"] {
    margin-bottom: 0;
	width: 80%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 6em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 6em);/*Firefox4~15対応*/
	width: calc(100% - 6em);  
}
#register #forms #form-register form .kubun_table input.stu_post_ex {
	width: 80%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 5em);/*Chrome19~25対応*/
	width: -moz-calc(100% - 5em);/*Firefox4~15対応*/
	width: calc(100% - 5em);  
}

#register #forms #form-register .kome_list {
	margin-bottom: 50px;
}
#register form {
}
#register form input {
	font-size: 2rem;
}
#register form button {
	font-size: 1.8rem;
    line-height: 44px;
	padding: 0px 2.5em;
    background-position: 20px center;
}
#register form input[type="reset"],
#register form button.gray_bt {
	font-size: 1.8rem;
}
#register form button.zip_search {
	font-size: 1.6rem;
}
#register form .button_area button {
	width: 12em;
    line-height: 50px;
	margin: 0 1em;
    padding: 0px 1.5em;
}
#register #forms #form-register form .button_area button[type="submit"] {
    background-position: 20px center;
}
#register form .button_area input[type="reset"],
#register form .button_area button.gray_bt {
	width: 12em;
	margin: 0 20px;
}
#register .fee_total {
	padding: 0.8em 1.5em;
}
#register form .button_area button {
}


/* 確認画面 */
#register #forms .confirm table th {
	display: table-cell;
	padding: 0 1.5em 1.5em 0;
	white-space: nowrap;
}
#register #forms .confirm table td {
	display: table-cell;
	padding-bottom: 1.5em;
}

#register #forms .confirm form p {
	display: table;
}

#register #forms .confirm form p.button_area {
	display: block;
}
/* 完了画面 */
#register #forms .regist_comment {
	margin-bottom: 60px;
}
#register #forms .regist_comment h2 {
  font-size: 1.8rem;
  padding: 0.8em 1.5em;
  margin-bottom: 15px;
}
#register #forms .regist_comment dt {
	font-size: 2.4rem;
	padding-bottom: 1em;
	margin-bottom: 1.4em;
}
#register #forms .regist_comment .check_note {
	padding: 1.5em;
	margin-top: 6em;
}
#register #forms .regist_comment .login_link a {
	padding: 0.5em 5em;
}

/* 決済画面 */
#register #forms table th {
	display: table-cell;
	padding: 0 1.5em 1.5em 0;
	white-space: nowrap;
}
#register #forms form .total th {
	padding: 0.5em 1em;
	border: none;
}
#register #forms form .total td {
	padding: 0.5em 1em;
}


/* 大会登録方法
------------------------------------------------------------ */
#register .howto {
    margin-bottom: 60px;
}
#register .howto h2 {
  font-size: 1.8rem;
  padding: 0.8em 1.5em;
  margin-bottom: 15px;
}
#register .contents .howto .cards img {
  width: auto;
}

}
@media (min-width: 1200px) {
/* トップ
------------------------------------------------------------ */
#register #front table th {
    padding-bottom: 30px;
}
#register #front table th p {
    padding: 0.5em 2em;
}
#register #front table td {
    padding: 0 0 30px 30px;
}
#register #front .regist_link p {
	width: 30%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc((100% - 60px) / 3);/*Chrome19~25対応*/
	width: -moz-calc((100% - 60px) / 3);/*Firefox4~15対応*/
	width: calc((100% - 60px) / 3);
}
#register #front .regist_link p a {
    font-size: 2rem;
    padding: 1em 1.5em;
}
#register #front .earlybird_caution {
    margin-bottom: 60px;
}
#register #front .earlybird_caution p {
    margin: 15px 0;
}
#register #front .earlybird_caution p a {
    font-size: 2rem;
	width: 48%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(50% - 25px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 25px);/*Firefox4~15対応*/
	width: calc(50% - 25px);
    margin: 25px auto 15px;
}
#register #front .regist_link p a.earlybird,
#register #front .regist_link p a.regist_form,
#register #front .regist_link p a.regist_howto {
    background-position: 20px center;
}

/* 登録
------------------------------------------------------------ */
#register section {
	padding: 0 0 80px;
}
#register form input[type="text"],
#register form textarea {
	font-size: 1.8rem;
}
#register form .select_area select {
	font-size: 1.8rem;
}
#register form button.zip_search {
	font-size: 1.8rem;
}
#register form button {
    line-height: 50px;
}
#register form .button_area button {
    line-height: 60px;
}

/* 完了画面 */
#register #forms .regist_comment h2 {
}


/* 大会登録方法
------------------------------------------------------------ */
#register .howto h2 {
}
}
