@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	position:relative;
	font-size:16px;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.8;
	color:#000;
	min-height: 100vh;
	background-color:#fff;
    background-image: url(../img/bg.png);
	background-attachment: fixed;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#contents {
	width:100%;
 	padding-top:66px;
}

.inner {
    width:800px;
    margin:0 auto;
}

header {
	width:100%;
	margin:0;
}

a {
	color:#000;
}
a:hover {
	color:#319dd0;
}

h2 {
	margin:0;
	font-size:30px;
	font-weight:bold;
	text-align: center;
}

p {
	margin:0 0 1.5em 0;
}

img {
	vertical-align:bottom;
}

strong {
	font-weight:bold;
}

ul,ol,dl {
	margin:0;
}
ul li {
	list-style:disc;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:1.5em;
}

dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dt:before {
	content:"\0025a0";
}
dd {
	margin-bottom:1em;
}

table {
	width:100%;
	margin-bottom:3em;
	border-collapse:collapse;
	border:1px solid #ddd;
	background:#fff;
}
th {
	padding:15px;
	text-align:left;
	vertical-align:middle;
	border:1px solid #ddd;
	background:#eee;
	white-space: nowrap;
}
td {
	padding:15px;
	text-align:left;
	border:1px solid #ddd;
	white-space: nowrap;
}

/*================================================
 *  汎用クラス
 ================================================*/
.col_two_one {
	overflow:hidden;
}

.col_two_one ul {
	overflow:hidden;
	margin:0 -2% 0 0;
}
.col_two_one li {
	list-style:none;
	float:left;
	width:48%;
	margin:0 2% 2% 0;
}
.col_two_one li:nth-child(2n+1) {
	clear:both;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	margin-top:0;
	margin-bottom:0;
}

h1.headerLogo {
	width:100%;
	position:fixed;
	top:0;
	left:0;
	padding:10px 15px;
	z-index:9;
	background:rgba(255,255,255,0.9);
}
h1.headerLogo img {
	height:70px;
}

.login {
	position:fixed;
	top:10px;
	right:15px;
	z-index:9;
}
.login img {
	height:70px;
}
.login a:hover {
	opacity: 0.8;
}

/*================================================
 *  メイン
 ================================================*/
.entry {
	width:100%;
	margin:8em 0 0;
}

.form {
	width:100%;
	margin:4em 0;
}
.form p {
	margin:0 0 2em;
	font-size:14px;
	text-align: center;
}

.thanks {
	width:100%;
	margin:8em 0 0;
	text-align: center;
}

.required {
	color:#f00;
}

legend {
	margin:0 0 0.5em;
}

fieldset {
	margin:0 0 1.5em;
}

/* --- フォーム --- */
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/*追加スタイル*/
* {
	box-sizing: border-box;
	transition: 0.2s;
}

input#submit_btn {
	display:inline-block;
    width: 200px;
	padding:10px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#319dd0;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #319dd0;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#submit_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#319dd0;
	transition:all 0.2s ease 0s;
}

.entry_btn {
	text-align: center;
}

input {
    cursor: pointer;
    cursor: hand;
}

input, select, textarea {
	padding:10px 15px;
    font-size: 16px;
	background:#fff;
	border-radius: 5px;
}

input {
	margin:0;
}

select, textarea {
	margin:0 0 1em;
}

/* --- フォーム部品のサイズ --- */
#dojo_no, #last_name, #name, #last_name_kana, #name_kana, #height, #weight, #entry_class {
    box-sizing: border-box;
    width: 100%;
}

/* --- （複数行のテキスト入力欄） --- */
#history {
    box-sizing: border-box;
    width: 100%;
    height: 10em;
}

.msg {
	margin:0 0 1em;
	color: #d00;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	padding:20px 0 50px;
	font-size:11px;
	text-align:center;
}

.footmenu {
	width:100%;
	padding:20px 0;
	overflow:hidden;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 15px;
	font-size:14px;
	font-weight:bold;
	text-align:center;
}
.footmenu a {
	text-decoration:none;
}
.footmenu a:hover {
	color:#319dd0;
}

.link_icon::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image:url(../img/external-link_icon.png);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	position:  relative;
    top: -2px;
    right: -5px;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.pagetop {
	position: absolute;
	bottom:15px;
	right:15px;
}
.pagetop a {
	display:block;
	text-decoration:none;
}
.pagetop img {
	width:60px;
	height:60px;
	background:#000;
}
.pagetop img:hover {
	width:60px;
	height:60px;
	background:#e70012;
}

/*================================================
 *  タブレット/スマートフォン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:1024px) {
    * {
        box-sizing: border-box;
    }

	body {
		width:100%;
	}
	body:before{
	    content: "";
	    display: block;
	    position: fixed;
	    top: 0;
	    left: 0;
	    z-index: -1;
	    width: 100%;
	    height: 100vh;
	    background-image: url(../img/bg.png);
	    background-size: cover;
	    background-repeat: no-repeat;
	    background-position: center;
	}
	
	h1.headerLogo img {
		height:50px;
	}

	.login img {
		height:50px;
	}

	#contents {
	    width:100%;
	 	padding-top:61px;
	}
	
	#contents .inner {
        box-sizing: border-box;
	    width:100%;
	    padding: 0 30px;
	}
	
	.inner {
	    width:100%;
	}

	header {
		width:100%;
	}
}

@media screen and (max-width:767px) {
	.entry {
		margin:2em 0 0;
	}

	.form {
		margin:2em 0 0;
	}

	.thanks {
		margin:2em 0 0;
	}
}

@media screen and (max-width:500px) {
	.entry {
		margin:4em 0 0;
	}

	.form {
		margin:2em 0 0;
	}

	.thanks {
		margin:4em 0 0;
	}
}

@media screen and (min-width: 500px){
    .br-sp {display: none; }
}


{