@charset "UTF-8";
/* CSS Document */

body {
    font-size: 100%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    padding: 0 0 100px 0;
}
p {
    font-size: 1em;
}
a {
    color: #0072EE
}
a:hover {
    color: #FF00D2
}
header {
    width: 80%;
    margin: 60px auto 80px auto;
    display: block;
    color: #555555;
}
h1.form-title-gaku {
    font-size: 2em;
    text-align: center;
    border-bottom: 5px solid #ccc;
    margin: 0px 0px 30px 0px;
    padding-bottom: 10px;
}

h2{
    font-size: 1.5em;
    text-align: center;
	margin: 0px auto 50px auto;
	color: #B4100B;
	border: 2px solid #B4100B;
	padding: 3px 10px;
	width: 70%;
	background-color: #f8f6f3;
}
.mustkome-ex-red01 {
    font-size: 1em;
    line-height: 1.5;
    font-weight: bold;
    color: #d9534f;
    text-align: center;
	margin: 0px 0px;
}

.red01waku{
	margin: 0px auto 40px auto;
	border: 2px solid #d9534f;
	padding: 3px 10px;
	width: 60%;
	background-color: #FCF0A8;
}
/*form-table*/

.entry_form-t {
    width: 80%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 15px auto;
    background-color: #fff;
    box-sizing: border-box;
}
.entry_form-t dl {
    display: flex;
    flex-direction: row;
    font-size: 1.2em;
    border-bottom: 1px solid #ccc;
    padding: 0 0;
    margin: 0 0;
}

.entry_form-t dl:first-child {
	border-top: 1px solid #ccc;
}
.entry_form-t dl:last-child {
    border-bottom: none;
}
.entry_form-t dt {
    margin: 0;
    padding: 15px 15px;
    text-align: left;
    width: 30%;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: top;
    color: #555555;
    font-size: 16px;
    background-color: #f8f6f3;
    border-right: 1px solid #ccc;
}
.entry_form-t dd {
    margin: 0;
    padding: 15px 20px;
    text-align: left;
    width: 70%;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: top;
    color: #555555;
    font-size: 16px;
    background-color: #fff;
}

.entry_form-t dt .label-ex{
	color: #6782CF;
	font-size: 0.80em;

}

.entry_form-t dd .notice_mail{
	color: #386AF7;
	font-size: 0.95em;
	margin:1em 0 0 1.3em;
	text-indent: -1.3em;
}

label {
    white-space: nowrap;
}

label.coursename {
    /*white-space: pre-line;*/
	 white-space: normal;
	/*margin-left:0em;
	text-indent:0em;*/
	/*display: inline-block;*/
	/*padding-left: 1.5em;*/
}
label.coursename span{
	color:#0064E8;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=date], input[type=number], textarea, select {
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    height: auto;
    padding: 10px 10px;
    margin: 3px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.input-25 {
    width: 25%;
}
.input-40 {
    width: 40%;
}
.input-60 {
    width: 60%;
}
.input-100 {
    width: 100%;
}
textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}
textarea {
    height: 100px; /* お好みの高さに */
}
textarea::placeholder {
    color: #89BBE7;
}
/*radio btn*/
input[type="radio"] {
    display: none;
}
label.radio-btn {
    position: relative;
    display: inline-block;
    padding: 3px 3px 3px 20px;
    cursor: pointer;
}
label.radio-btn::before, label.radio-btn::after {
    position: absolute;
    content: '';
    top: 50%;
    border-radius: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
}
label.radio-btn::before {
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -8px;
    background: #f3f3f3;
    border: 1px solid #ccc;
}
label.radio-btn:hover::before {
    background: #fff;
}
label.radio-btn::after {
    opacity: 0;
    left: 4px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #3498db;
    -webkit-transform: scale(2);
    transform: scale(2);
}
input[type="radio"]:checked + label::before {
    background: #fff;
    border: 1px solid #3498db;
}
input[type="radio"]:checked + label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
input[type="submit"], input[type="reset"] ,input[type="button"]{
    color: #343333;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    height: auto;
    padding: 10px 25px;
    margin: 10px 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="submit"] {
    background-color: #FF908C;
}
input[type="reset"],input[type="button"] {
    background-color: #C8C8C8;
}
input[type="submit"]:hover, input[type="reset"]:hover,input[type="button"]:hover {
    background-color: #9C9890;
}
/*input.f-short60 {
    width: 60%;
}*/

.mustkome::before {
    font-size: .75em;
    background: #d9534f;
    color: #fff;
    padding: 3px 3px 3px 5px;
    margin-left: 5px;
    content: "必須";
    letter-spacing: 0.3em;
    white-space: nowrap;
}
.fw-25 {
    width: 2.5em;
    display: inline-block;
}
.fw-65 {
    width: 6.5em;
    display: inline-block;
}
#getzip-link {
    font-size: 0.85em;
    margin-left: 50px;
    white-space: nowrap;
}
#getzip-link::before {
    content: ">> ";
}
/*input[type=button] */
#fillzip{
    color: #555;
    background-color: #E9EAE8;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    height: auto;
    padding: 2px 4px;
    margin: 0px 0px 0px 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
/*input[type=button]*/
#fillzip:hover {
    background-color: #9C9890;
}
.form-kakunin {
    color: #555;
    font-size: 0.9em;
}
.form-notice {
    font-weight: bold;
    font-size: 0.85em;
    line-height: 1.2;
}
.form-notice b {
    color: #DC2B00;
    font-weight: bold;
}
.error-txt {
    color: #FC2400;
    font-weight: bold;
    font-size: 0.85em;
	content: "▶︎";
}
.error-txt::before {
	content: "▶︎";
	animation: Flash1 2s infinite;
	padding-right: 3px
}
/* アニメーション */
@keyframes Flash1{
  50%{
    opacity: 0;
  }
}


@media screen and (max-width : 767.9999px ) {
header {
    width: 90%;
    margin: 20px auto 40px auto;
}
.entry_form-t {
    width: 90%;
}
.entry_form-t dl {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    padding: 0 0;
    margin: 0 0;
}
.entry_form-t dt {
    width: 100%;
    border-right: none;
    padding: 10px 15px;
}
.entry_form-t dd {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}
.input-25 {
    width: 50%;
}
.input-40 {
    width: 50%;
}
.input-60 {
    width: 60%;
}
.input-100 {
    width: 100%;
}
}

/*---2025 add ---*/
.entry-notice {
    width: 80%;
    margin: 15px auto 20px auto;
}
.entry-notice p{
	color:#c00;
	font-size:0.9em;
	line-height: 1.5;
    margin: 0 0 30px;
}
.entry-notice p.entry-notice-en{
	color:#8a6e6e;
	font-size:0.9em;
	line-height: 1.5;
    margin: 0 0 30px;
}
.entry_form-t dt .label-en,.entry_form-t dd .label-en{
    color: #a2b5ce;
    font-size: 0.9em;
}
