@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
}

html{
	/*デフォルトのフォントサイズ16pxの0.625をかけて10にした値。そのため、1rem=10pxとなる。
	*/
	font-size: 62.5%;
}

h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}

a{
	color: #1a1a1a;
}

.block{
	display: block;
}

.flex{
	display: flex;
}

.btn_flex{
	display: flex;
	align-items: center;
}

.id_display{
	font-size: 2rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 4rem;
	text-align: center;
}

.error_msg{
	color: #c30d23;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}

.error_msg:nth-last-of-type(1){
	margin-bottom: 0;
}

body{
font-family: 'Noto Sans JP', sans-serif;
font-weight: 500;
/*基本的にフォントサイズ16px*/
font-size: 1.6rem;
background: #fafafa;
color: #333;
}

header{
	height: 8rem;
	background: #fafafa;
	transition: .6s;
}

header .header_area{
	width: 90%;
	height: 100%;
	margin: 0 auto;
}

header .header_inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header nav ul{
	display: flex;
}

header nav li:nth-of-type(1){
	margin-right: 5rem;
}

header nav a{
	font-size: 1.8rem;
	transition: .6s;
	position: relative;
}

header nav a:hover{
	color: #c30d23;
}

header nav a::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	transition: .6s;
	display: block;
	width: 0;
	height: .2rem;
	background: #c30d23;
}

header nav a:hover::before{
	width: 100%;
	right: auto;
	left: 0;
}

header .logo{
	transition: .6s;
}

header .logo:hover{
	opacity: .5;
}

header .logo img{
	max-width: 9.6rem;
}

footer{
	background: #c30d23;
	height: 5rem;
}

footer .footer_area{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer address{
	color: #fafafa;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

.id_block{
	position: absolute;
	top: 12rem;
	left: 9.6rem;
	font-size: 1.8rem;
	font-weight: 700;
}

.id_block .id{
	padding-right: 2rem;
}

.breadcrumb{
	position: absolute;
	top: 16rem;
	left: 9.6rem;
	font-size: 1.4rem;
}

.breadcrumb .current{
	color: #c30d23;
}

.breadcrumb span:hover{
	text-decoration: underline;
}

.breadcrumb .current:hover{
	text-decoration: none;
}

.breadcrumb .gt{
	padding: 0 1rem
}

.breadcrumb .gt:hover{
		text-decoration: none;
}

.common_h1{
	font-size: 3.6rem;
	font-weight: 700;
	text-align: center;
	padding: 8rem 0 4rem;
}

.flex{
	display: flex;
}

.input{
	/*outline: none;*/
	border: none;
	appearance: none;
	border-radius: 10px;
	display: block;
	width: 100%;
	height: 6rem;
	background: #f1f1f1;
	padding-left: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

.input_select{
	position: relative;
}

.input_select::before{
	content: '';
	position: absolute;
	top: 2.4rem;
	right: 2rem;
	border-top: 7px solid #333;
	border-right: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid transparent;
}

.radio_block{
	display: flex;
}

.radio_block label{
	margin-right: 2rem;
}

.radio_block label:nth-last-of-type(1){
	margin-right: 0;
}

.radio_block .input_radio input{
	display: block;
	width: 2rem;
	height: 2rem;
}

.black_btn{
	outline: none;
	border: 2px solid #333;
	appearance: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fafafa;
	background: #333;
	border-radius: 25px;
	width: 20rem;
	height: 4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	transition: .6s;
	cursor: pointer;
	letter-spacing: 0.05em;
	font-size: 1.4rem;
}

.black_btn:hover{
	background: #fafafa;
	color: #333;
}

.btn_flex{
	display: flex;
	align-items: center;
}

.btn_flex .black_btn{
	width: 30rem;
	height: 6rem;
	border-radius: 30px;
	margin-right: 4rem;
}

.common_wrapper .common_area{
	width: 80%;
	margin: 0 auto 24rem;
}

.login_wrapper{
	width: 60rem;
	margin: 0 auto 24rem;
}

.login_wrapper .form_block{
	margin-bottom: 6rem;
}

.login_wrapper .form_hd{
	font-size: 2.4rem;
	font-weight: 700;
	padding-bottom: .5rem;
}

.login_wrapper .error_msg{
	font-size: 1.8rem;
	color: #c30d23;
	margin-bottom: 4rem;
}

.form_wrapper .form_area{
	width: 60rem;
	margin: 0 auto 16rem;
}

.form_wrapper .form_block{
	padding-bottom: 4rem;
}

.form_wrapper .form_block:nth-last-of-type(1){
	padding-bottom: 8rem;
}

.form_wrapper .form_hd{
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	padding-bottom: 1rem;
}

.form_wrapper .form_hd .caution{
	font-size: 1.4rem;
	color: #c30d23;
}

.form_wrapper .pw_hd{
	padding-bottom: 2rem;
}

.form_wrapper .pw_make_btn{
	margin-bottom: 2rem;
}

.submit_btn{
	outline: none;
	appearance: none;
	border: 2px solid #c30d23;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30rem;
	height: 6rem;
	border-radius: 30px;
	background: #c30d23;
	color: #fafafa;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin: 0 auto;
	cursor: pointer;
	transition: .6s;
}

.submit_btn:hover{
	background: #fafafa;
	color: #c30d23;
}

.form_wrapper .error_block{
	margin-bottom: 4rem;
}

.end_wrapper{
	margin-top: 8rem;
	margin-bottom: 40rem;
}

.end_wrapper h1{
	font-size: 3.6rem;
	text-align: center;
	font-weight: 700;
	margin-bottom: 4rem;
}

.end_wrapper .black_btn{
	margin: 0 auto;
}

.top_wrapper h1{
  margin-top: 8rem;
  margin-bottom: 4rem;
  text-align: center;
}

.top_wrapper h1 .s{
  font-size: 2rem;
  font-weight: 500;
  display: block;
  padding-bottom: 1.1rem;
}

.top_wrapper h1 .b{
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.top_wrapper .top_area{
  width: 83.7rem;
  margin: 0 auto 16rem;
}

.top_wrapper .top_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	position: relative;
}

.top_wrapper .top_inner::after{
	content: '';
	width: 25rem;
	height: 20rem;
}

.top_wrapper .top_inner a,
.choice_wrapper .flex a{
  display: block;
  width: 25rem;
  height: 20rem;
  padding-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 20px;
  text-align: center;
  transition: .6s;
  background: #fafafa;
}

.top_wrapper .top_inner a:hover,
.choice_wrapper .flex a:hover{
  box-shadow: 0px 15px 17px 3px rgba(204, 204, 204, 0.4);
}

.top_wrapper .img,
.choice_wrapper .flex .img{
  padding-bottom: 2rem;
}

.top_wrapper .top_inner img,
.choice_wrapper .flex img{
  max-width: 6.4rem;
}

.choice_wrapper .choice_area{
	width: 60rem;
	margin: 0 auto 24rem;
}

.choice_wrapper .flex{
	justify-content: space-between;
	flex-wrap: wrap;
}

.data_list_wrapper p:nth-of-type(2){
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #ccc;
}

.data_list_wrapper{
	margin-bottom: 8rem;
}

.data_list_wrapper .date{
	font-size: 1.8rem;
	padding-bottom: 2rem;
}

.data_list_wrapper .hd{
	font-size: 1.8rem;
	font-weight: 700;
}

.data_list_wrapper .code{
	font-size: 2rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

.sort_block .select_block{
	margin-right: 2rem;
}

.sort_block .select_block .input_select{
	width: 23rem;
}

.sort_block .select_block .input_select::before{
	top: 1.7rem;
	right: 1rem;
}

.sort_block .sort_block_inner .input{
	width: 23rem;
	height: 4rem;
}

.sort_block .sort_block_inner{
	margin-bottom: 4rem;
}

.sort_block .sort_block_inner .sort_btn{
	outline: none;
	appearance: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15rem;
	height: 4rem;
	transition: .6s;
	background: #333;
	color: #fafafa;
	border: 2px solid #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
}

.sort_block .sort_block_inner .sort_btn:hover{
	background: #fafafa;
	color: #333;
}

.sort_block .last_month_block .date{
	padding-right: 2rem;
	font-size: 1.8rem;
}

.sort_block .last_month_block .flex{
	align-items: center;
}
