@charset "utf-8";
:root {
	--c_c1:#ED6D64;
	--c_c2:#24988A;
	--c_be1:#F8EFE1;
	--c_be2:#F1E0C7;
	--c_bl:#356FC1;
	--c_rd:#E32E32;
	--c_bk:#464646;
	--c_wh:#ffffff;
}
.clr-bk {color: var(--c_bk)!important;}
.clr-wh {color: var(--c_wh)!important;}
.clr-c1 {color: var(--c_c1)!important;}
.clr-c2 {color: var(--c_c2)!important;}
.bg-main {background-color: var(--c_main)!important;}
.bg-bk {background-color: var(--c_bk)!important;}
.bg-wh {background-color: var(--c_wh)!important;}
.bg-c1 {background-color: var(--c_c1)!important;}
.bg-c2 {background-color: var(--c_c2)!important;}
.bg-be1 {background-color: var(--c_be1)!important;}
.bg-be2 {background-color: var(--c_be2)!important;}
.eng {
	font-family: "arboria", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.1;
}
.link {
	color: var(--c_main);
	text-decoration: underline;
}
button {
	font-family: 'Noto Sans JP', sans-serif ,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana;
	font-weight: 600;
	font-style: normal;
	transition: .2s;
}
article {
	background: var(--c_be1);
	min-height: calc(100svh - 10.5rem);
}
.btn {
	text-align: center;
	margin-top: 5rem;
}
.btn a {
  display: inline-flex;
	justify-content: center;
	align-items: center;
  height: 6rem;
  border: none;
	padding: 1.5rem;
  border-radius: 0.4rem;
  background: var(--c_c1);
  color: #fff;
  font-size: 112.5%;
  font-weight: 700;
	min-width: 23rem;
  letter-spacing: .1em;
  text-indent: .1em;
}
.btn a:hover {
	background-color: var(--c_c2);
}

/*header
---------------------------------------------------------*/
header {
	background: var(--c_c1);
	color: #fff;
	padding: 1rem 0;
	font-size: 1.8rem;
}
.hWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 120rem;
	margin: 0 auto;
}
.hLogo img {
	height: 2.5rem;
}
.hBtn {
	display: flex;
	align-items: center;
	gap: 3rem;
	font-weight: 400;
}
.hBtn a {
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.hBtn a::before {
	content: "";
	display: block;
	background: url(../img/icon_kanri.svg) center center no-repeat;
	background-size: contain;
	width: 2.1rem;
	aspect-ratio: 1;
}
.hBtn .logout a::before {
	width: 1.8rem;
	background-image: url(../img/icon_logout.svg);
	aspect-ratio: 18/20;
}
.hBtn .report a::before {
	width: 1.8rem;
	background-image: url(../img/icon_report.svg);
}
.hBtn a:hover {
	color: var(--c_be1);
}
footer {
	text-align: center;
	padding: 2rem;
	font-size: 1.2rem;
	color: #787878;
	background: #fff
}


/*common
---------------------------------------------------------*/
.page-title {
  margin: 0 0 5rem;
  text-align: center;
  font-size: 1.5rem;
	font-weight: 400;
	position: relative;
	z-index: 0;
}
.page-title .eng {
	color: var(--c_c1);
	font-size: 400%;
	margin-bottom: .3em;
}
.page-title .sub {
	display: inline-block;
	min-width: 32rem;
	border-radius: 10rem;
	font-size: 140%;
	font-weight: 700;
	padding: 1.35rem 4rem;
	margin-top: 3rem;
	background: var(--c_be2);
}
.page-title._img {
	margin-bottom: 8rem;
}
.page-title._img::before,
.page-title._img::after {
	content: "";
	display: block;
	background: url(../img/ttl_l.svg) center center no-repeat;
	background-size: contain;
	aspect-ratio: 405/187;
	width: 40.5rem;
	position: absolute;
	top: -4rem;
	left: -10rem;
	z-index: -1;
}
.page-title._img::after {
	background-image: url(../img/ttl_r.svg);
	aspect-ratio: 470/195;
	width: 47rem;
	left: auto;
	right: -14rem;
}
.login-wrap {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.8rem;
	font-weight: 600;
}
.login-wrap dt:not(:first-of-type) {
	margin-top: 4rem;
}
.login-wrap dd input,
.login-wrap dd select {
	padding: 1.5rem;
	width: 100%;
	border: 1px solid #DDD2CF;
	border-radius: .5rem;
}
.loginLink {
	text-align: center;
	margin-top: 4rem;
	font-weight: 500;
}
.loginLink a:hover {
	color: var(--c_c1);
}
.login-wrap .submit-btn {
	max-width: 24rem;
	margin: 4rem auto 0;
}
.error {
	font-size: 1.4rem;
	color: var(--c_c1);
	font-weight: 500;
	margin-top: 0.5rem;
}

/*ieハック*/
@media screen\0  {
}

/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1150px) {
	html {
		font-size: .8vw;
	}
}

/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {
/*全体レイアウト
---------------------------------------------------------*/
	html {
		font-size: 2.7777777vw;
	}
	body {
		font-size: 1.4rem;
		line-height: 1.5
	}
	body.active {
		overflow: hidden;
	}
	article > section {
		padding: 4rem 0;
	}
	/*header
	-------------------------------------------------------*/
	.hWrap .txt {
		font-size: 1.4rem;
		padding-bottom: .06em;
	}
	.hBtn {
		gap: 1rem;
	}
	.hBtn a {
		font-size: 1.3rem;
		white-space: nowrap;
	}
	.hBtn a::before {
		display: none;
	}
  .page-title {
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 3rem;
    font-size: 1.4rem;
  }
  .page-title .eng {
    font-size: 280%;
  }
  .page-title .sub {
    margin-top: 2rem;
    font-size: 115%;
    min-width: auto;
    padding: 1.35rem 3rem;
  }
  .page-title._img {
    margin-bottom: 4rem;
  }
  .page-title._img::before,
  .page-title._img::after {
    top: -2rem;
    left: -12rem;
    width: 22rem;
  }
  .page-title._img::after {
    left: auto;
    right: -12rem;
    width: 26rem;
  }







}


