/*20231130_font*/
/*base*/
@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap');
* {
font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, "Roboto", sans-serif;
}
html, body {margin: 0;padding: 0;font-size: 12pt;}

#ph_content {
    margin: 0 auto;
	text-align: center;
}
/*PC*/
@media screen and (min-width: 768px) {
#ph_content {
    width: 940px;
}
body h1 {
    font-size: 18pt;
	margin-top: 1em;
	margin-bottom: 0.5em;
}
}
/*モバイル*/
@media screen and (max-width: 767px) {
#ph_content {
	margin:0 22px;
}
body h1 {
    font-size: 14pt;
	margin-top: 1em;
	margin-bottom: 0.5em;
	}
}
/*form*/
#LOGIN_BOX {
    text-align: left;
    max-width: 480px;
    margin: 45px auto;
}
body input[type=text], body input[type=password], body select, body textarea {
    font-size: 12pt;
    padding: 5pt;
}
input[type=text], input[type=password] {
    width: 100%;
}
input[type=text], input[type=password], select, textarea {
    font-size: 10.5pt;
    border: 1px solid #888;
    border-radius: 2px;
    box-sizing: border-box;
}
.LoginFormDisp p {
    margin: .5rem 0;
}

/*ボタン*/
.sn-r-exe,.sn-r-exe.sn-p-primary{
	position: relative;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
	margin: 16px 8px;
	background: #007DCE;
	color: #fff;
	border: 1px solid transparent;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
	/* ios */
	-webkit-appearance: none !important;
}
.sn-r-exe.sn-p-l {
	line-height: 4.8em;
	border-radius: 4px;
	margin-bottom: 5px;
	width: 360px;
}
.sn-r-exe.sn-p-m {
	line-height: 3.6em;
	border-radius: 4px;
	margin-bottom: 5px;
	width: 240px;
}
.sn-r-exe.sn-p-s {
	line-height: 2.4em;
	border-radius: 4px;
	margin-bottom: 1px;
	width: 120px;
}
.sn-r-exe:active {
	box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.3);
	background-color: #fff;
	top: 3px;
}
.sn-r-exe:hover,.sn-r-exe.sn-p-primary:hover{
	background: #00AAEE;
}
.sn-r-exe::before, .sn-r-exe::after {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.sn-r-exe.sn-p-secondary {
	background-color: #fafafa;
	color: #3D5863;
}
.sn-r-exe.sn-p-secondary:hover {
	background: #fff;
}
.sn-r-exe.sn-p-success {
	background: #16A085;
	color: #fff;
	text-decoration: none;
}
.sn-r-exe.sn-p-success:hover {
	background: #1abc9c;
}
.sn-r-exe.sn-p-disable {
	background: #b2cad1;
	color: #5C8495;
	text-decoration: none;
	cursor: default;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset;
}
.sn-r-exe.sn-p-disable:hover {
	top: 0;
}
.sn-r-exe.sn-p-disable:active {
	top: 0px;
}
.btnPosition {
    margin: 45px auto;
}
.btnPosition .caption{
	margin-top: 1em;
}

/*フォーム*/
.sn-m-form-messagebox:not(:empty) {
    max-width: 678px;
    margin: 16px auto;
    padding: 16px;
    box-sizing: border-box;
}
.sn-m-form-messagebox:not(:empty).sn-p-success {
    background: #E6FFF2;
}

