@charset "UTF-8";

/*--------------------------------------------------------------------
 *	フレーム（header, main, footer）
 *--------------------------------------------------------------------*/

/* html, body -----------------------------------------------*/
html {
	position: relative;
	min-height: 100%;
}
body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #000000;
}
main {
	background-color: #ffffff;
	display: block;
}
h1 {
	margin-top: 0;
	font-family: 'ヒラギノ角ゴ Pro W3';
	color: rgb(237, 108, 0);
	font-weight: bold;
	font-size: 160%;
}
h2 {
	margin: 1em 0 0.5em 0;
	padding: 0;
	border-bottom: 2px dotted rgb(237, 108, 0);
	color: #000000;
	font-size: 120%;
	font-weight: bold;
}

h3 {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 110%;
	font-weight: bold;
}

.h3_circle {
	color:rgb(237, 108, 0);
}
.h3_p {
	margin: 0;
}

/* header -----------------------------------------------*/
header {
	position: relative;
	background: #fff;
}
header #dummy_title {
	margin: 5px 0;
	font-size: 120%;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
	font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

/* h1 -----------------------------------------------*/
article h1 {
	text-align: center;
	margin: 0;
}

/* footer -----------------------------------------------*/
body > footer {

}
body > footer #copyright {
	color: white;
	background-color: rgb(237, 108, 0);
	margin: 0;
}


/*--------------------------------------------------------------------
 *	共通部品
 *--------------------------------------------------------------------*/

/* リンク, リンクボタン -----------------------------------------------*/
a {
	color: #e50038;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}


ul.buttons {
	list-style-type: none;
	margin: 3em auto 1em auto;
	text-align: center;
}
body.second a.button,
body.second ul.buttons li a,
body.second ul.buttons li button {
	display: block;
	padding: 10px 0;
	width: 200px;
	margin: auto;
	background: rgb(237, 108, 0);
	color: #fff;
	text-align: center;
	text-decoration: none;
	line-height: 1.6;
	border-radius: 20px;
	border: none;
}
body.second button.cancel,
body.second a.button.cancel,
body.second #btn_return {
	background: #666666;
}

button:hover,
a.button:hover,
ul.buttons li a:hover,
ul.buttons li button:hover {
	opacity: 0.8;
}


/* エラーメッセージ -----------------------------------------------*/
ul.error_msg li {
	color: #ff0000;

}

/* フォーム -----------------------------------------------*/
article input {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #cdcdcd;
    box-sizing: border-box;
}


input[type="text"],
input[type="password"],
select,textarea {
	font: 100% "ＭＳ Ｐゴシック";
}
/* 整列 -----------------------------------------------*/
.txt_center {
	text-align: center;
}



/*--------------------------------------------------------------------
 *	736px以下用（SP用）の記述
 *--------------------------------------------------------------------*/

@media screen and (max-width: 736px) {
/* 736px以下用（SP用）の記述 */

/* body -----------------------------------------------*/
body {
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	margin: 15% 5% 5%;
	padding: 2% 5% 5%;
	font-size: 1.3rem;
	background-color: #fff;
}
body.second main {
	margin: 5%;
}
h1 {
	margin-top: 0.8em;
	text-align: center;
	font: 1.4rem/1.6 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Helvetica', 'Verdana', 'ＭＳ Ｐゴシック', 'MS-PGothic', sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
}
h2 {
	font-size: 1.5rem;
}

/* article -----------------------------------------------*/
article {
	margin: 0;
	padding: 0;
}

/* wrap -----------------------------------------------*/
article .wrap {
	padding-right: 7%;
	padding-left: 7%;
}

/* header -----------------------------------------------*/
body#login header,
body#password header  {
	height: 110px;
}
body.second header {
	height: 170px;
}

/* main -----------------------------------------------*/









/* h1 -----------------------------------------------*/
article h1 {
	margin-top: 0.8em;
	font-size: 1.8rem;
}

/* フォーム -----------------------------------------------*/
article input {
	margin: 0 auto 1em;
	padding: 5px 10px;
}

button,
a.button,
ul.buttons li a,
ul.buttons li button {
	width: 100%;
}

/* footer -----------------------------------------------*/
body > footer {
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	text-align: center;
	margin-top: auto;
}
body > footer #copyright {
	padding: 0.5em 0;
	font-size: 1.0rem;
}

.spNone {
	display: none;
}

/* 736px以上用（PC用）の記述 end */
}



/*--------------------------------------------------------------------
 *	737px以上用（PC用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width: 737px), print {
/* 737px以上用（PC用）の記述 */

html {
	padding-bottom: 0;
	height: auto !important;
}
main {
	width: 1050px;
	margin: 25px auto;
	padding: 25px;
}
/* h1 -----------------------------------------------*/
article h1 {
	font-size: 2.4rem;
	margin-top: 0.6em;
	padding-bottom: 0.5em;
}

/* フォーム -----------------------------------------------*/
article input {
	margin: 0 auto 1.4em;
	padding: 10px 16px;
	font-size: 1.8rem;
}

button,
a.button,
ul.buttons li a,
ul.buttons li button {
	width: 200px;
}
/* header -----------------------------------------------*/





/* main -----------------------------------------------*/













/* footer -----------------------------------------------*/


body > footer {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
}
body > footer #copyright {
	padding: 1em 0;
}
*/

body > footer {
	position: relative;
	bottom: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	text-align: center;
	font-size: 85%;
	background: url("../images/lady_background.png") repeat-x;
	padding-top: 92px;
}

body > footer #copyright {
	color: white;
	background-color: rgb(237, 108, 0);
	margin: 0;
	height: 20px;
	padding: 11px 0 22px;
	position: relative;
}

.pcNone {
	display: none;
}


/* 737px以上用（PC用）の記述 end */
}

/*--------------------------------------------------------------------
 *	clear fix
 *--------------------------------------------------------------------*/
.c_fix {
	zoom: 100%;
}
.c_fix::after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}