@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap');

/*----------------------------------------------
	c_input
---------------------------------------------*/
.c_input {
	width: 100%;
	padding: 8px 10px;
	border: none;
	border-radius: 3px;
	font-size: 1.6rem;
	border: 1px solid #BFBFBF;
	display: block;
}

.c_input.is_w500{ max-width: 500px; }
.c_input.is_w330{ max-width: 330px; }
.c_input.is_w200{ max-width: 200px; }

@media screen and (max-width: 750px) {
	.c_input.is_w500,
	.c_input.is_w330,
	.c_input.is_w200{
		max-width: 100%;
	}
}

/*----------------------------------------------
	c_select
---------------------------------------------*/
.c_select{
	border: 1px solid #BFBFBF;
	padding: 3px 10px;
	font-size: 1.6rem;
	display: block;
}

/*----------------------------------------------
  	.c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
  text-indent: -1em;
  padding-left: 1em;
}

/*----------------------------------------------
	btn
---------------------------------------------*/
.c_btn {
	display: block;
	border: none;
	background: #669F3E;
	padding: 20px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	max-width: 500px;
	width: 100%;
	position: relative;
	border-radius: 5px;
	transition: all 0.4s;
}

.c_btn.is_w400 {
	max-width: 400px;
}

.c_btn span {
	display: block;
}

.c_btn .is_lg {
	font-size: 2.4rem;
}

.c_btn .is_sm {
	font-size: 1.6rem;
}

#top .c_btn_box {
  width: 100% !important;
}
#top .c_btn_box .c_btn {
  margin: 0 auto;
  min-width: 100px;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
	.c_btn .is_lg {
		font-size: 2rem;
	}

	.c_btn .is_sm {
		font-size: 1.4rem;
	}

}

/*  TYPE
------------------------------------- */
.c_btn.is_arrow::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 11px;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	right: 20px;
	top: calc(50% - (12px / 2));
	transition: all .2s ease-out;
}

.c_btn.is_login,
#edit .c_btn{
	font-size: 2rem;
	padding: 15px;
}

.c_btn.is_back {
	max-width: 200px;
}

.c_btn.is_arrow.is_back::before {
	left: 20px;
	border-width: 6px 11px 6px 0;
	border-color: transparent #ffffff transparent transparent ;
}

.c_btn.is_download{
	outline: none;
	font-size: 1.5rem;
	border-radius: 3px;
	padding: 15px;
	max-width: 300px;
  background: linear-gradient(to right, #217346, #4EEB15);
	display: inline-block;
}

.c_btn.is_download::after{
	content: "";
	background: url(../images/icon_download.svg) no-repeat;
	width: 16px;
	height: 20px;
	background-size: contain;
	top: calc(50% - (20px / 2));
	right: 15px;
	position: absolute;
}

.c_btn.is_logout{
	outline: none;
	font-size: 1.5rem;
	border-radius: 3px;
	padding: 15px;
	max-width: 150px;
	display: inline-block;
}

.c_btn.is_pagetop{
	width: 60px;
	height: 60px;
	border-radius: 30px;
	box-shadow: none;
}

.c_btn.is_pagetop::before {
    display: inline-block;
    position: absolute;
    top: calc(50% - (30px/2));
    right: calc(50% - (26px/ 2));
    width: 0;
    height: 0;
    border-width: 0 13px 24px 13px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    content: "";
}

@media screen and (max-width: 750px) {
	.c_btn .is_lg {
		font-size: 2rem;
	}

	.c_btn .is_sm {
		font-size: 1.4rem;
	}

	.c_btn.is_download,
	.c_btn.is_logout{
		padding: 10px;
		font-size: 1.4rem;
	}

	.c_btn.is_logout{
		max-width: 100px;
	}
	.c_btn.is_download{
		max-width: 250px;
	}
}

/*  HOVER
------------------------------------- */
.c_btn:not(.is_download):hover {
	opacity: 0.7;
}

/*  DISABLED
------------------------------------- */
.c_btn.is_disabled {
	background: rgb(197, 197, 197);
	cursor: auto;
	color: #fff;
	text-shadow: none;
	box-shadow: none;
}

.c_btn.is_disabled:hover {
	background: rgb(197, 197, 197);
	cursor: auto;
	color: #fff;
	opacity: 1;
}

/*  ACCESSORY
------------------------------------- */
.c_triangle { position: relative; }

.c_triangle::before {
	display: inline-block;
	position: absolute;
	top: calc(50% - (12px / 2));
	left: 20px;
	z-index: 999;
	width: 0;
	height: 0;
	border-width: 5px 6px 5px 0;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
	content: "";
}

.c_triangle:hover::before {
	border-color: transparent #004ea2 transparent transparent;
}


/*----------------------------------------------
	c_list_type01
---------------------------------------------*/
.c_list_type01 li {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 1.8rem;
}

#top .c_list_type01 li {
	font-weight: normal;
}

.c_list_type01 li::before {
	display: inline-block;
	position: relative;
	top: -3px;
	width: 5px;
	height: 5px;
	margin-right: 10px;
	border-radius: 50%;
	background: #000;
	content: "";
}

.c_list_type01.is_red li::before {
	background: #f00;
}

#top .c_list_type01 li {
	padding-left: 1.6rem;
	font-size: 1.6rem;
	text-indent: -1.6rem;
}

.c_list_type01 .c_ses {
	display: inline-block;
	width: 50px;
}

.c_list_type01 .c_ttl {
	display: inline-block;
	width: 450px;
}

/*----------------------------------------------
  .c_box_type01
---------------------------------------------*/
.c_box_type01 {
  background: #fbf9f0;
  border: 1px solid #face79;
  margin: 40px 0;
  padding: 32px;
}

.c_box_type01_header {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}


/*----------------------------------------------
	c_ttl
---------------------------------------------*/
/*  TYPE01
------------------------------------- */
.c_ttl_type01 {
	max-width: 320px;
	width: 100%;
	margin: 0 0 20px;
}


/*  TYPE02
------------------------------------- */
.c_ttl_type02 {
	font-weight: bold;
	font-size: 3.8rem;
	text-align: center;
	color: #fff;
}

.c_ttl_type02.is_sm {
	font-size: 2.6rem;
}

/*  TYPE03
------------------------------------- */
.c_ttl_type03 {
	font-weight: bold;
	font-size: 3rem;
	text-align: center;
	color: #292F9E;
}

.c_ttl_type03.is_sm {
	font-size: 1.8rem;
}

.c_ttl_type03.is_message {
	line-height: 1.2;
}

/*  TYPE04
------------------------------------- */
.c_ttl_type04{
	background: #f2f2f2;
	padding: 1px 10px;
	font-weight: bold;
	font-size: 1.8rem;
}

@media screen and (max-width: 750px) {
	.c_ttl_type01 {
		font-size: 1.6rem;
	}

	.c_ttl_type02 {
		font-size: 3rem;
	}

	.c_ttl_type02.is_sm {
		font-size: 2rem;
	}

	.c_ttl_type03 {
		font-size: 2.8rem;
	}
	
	.c_ttl_type03.is_sm {
		font-size: 1.6rem;
	}
}


/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
	width: 100%;
	margin: 0 auto;
}

.c_table_type01 a{
	color: #4EA3FF;
}

.c_table_type01 tr.is_canceled td {
	background: #EEEEEE;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 8px;
	font-size: 1.3rem;
}

.c_table_type01 th {
	text-align: left;
	background: #676767;
	color: #fff;
	font-weight: normal;
	border: 1px solid #fff;
	text-align: center;
}

.c_table_type01 th:first-child {
	border-left: 1px solid #676767;
}
.c_table_type01 th:last-child {
	border-right: 1px solid #676767;
}

.c_table_type01 th.is_cancel {
	font-size: 1.1rem;
	width: 80px;
}

.c_table_type01 th.is_mail {
	font-size: 1.1rem;
	width: 70px;
}

.c_table_type01 td {
  background: #fff;
	border: 1px solid #BFBFBF;
}

.c_table_type01 td.is_cancel,
.c_table_type01 td.is_mail,
.c_table_type01 td.is_edit {
  text-align: center;
}

/* .c_table_type01 tr:first-child th {border-top: 1px solid #79b8ee;} */


.c_icon_cancel{
	filter: grayscale(1);
	opacity: 0.2;
	cursor: pointer;
	border: none;
}

.c_icon_cancel:hover,
.c_table_type01 tr.is_canceled td .c_icon_cancel{
	filter: none;
	opacity: 1;
}

.c_table_type01 tr.is_canceled td .c_icon_cancel:hover{
	filter: grayscale(1);
	opacity: 0.2;
}

.c_icon_edit{
	border: none;
}

.c_icon_edit:hover{
	opacity: 0.6;
	cursor: pointer;
}


/*----------------------------------------------
	.c_table_type01.is_edit
---------------------------------------------*/
.c_table_type01.is_edit th,
.c_table_type01.is_edit td {
  padding: 13px;
	font-size: 1.6rem;
}

.c_table_type01.is_edit th{
  text-align: right;
	width: 20%;
}

.c_table_type01.is_edit tr:last-child th{
  border: none;
}

@media screen and (max-width: 750px) {
	.c_table_type01.is_edit th,
	.c_table_type01.is_edit td {
		display: block;
		font-size: 1.4rem;
	}
	.c_table_type01.is_edit th{
		text-align: left;
		width: 100%;
		border: none;
	}

	.c_table_type01.is_edit tr.is_canceled td .c_icon_cancel:hover{
		filter: none;
		opacity: 1;
	}
	.c_icon_cancel:hover{
	filter: grayscale(1);
	opacity: 0.2;
}
}


/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  margin: 20px auto;
}
.c_table_type02 th {
  background: #E9F1DA;
  font-weight: bold;
  padding: 10px;
  border: 2px solid #fbf9f0;
  min-width: 10rem;
}
.c_table_type02 td {
  border: solid 1px #E9F1DA;
  padding: 10px;
  background: #fff;
}


@media screen and (max-width: 768px) {
  .c_table_type02 tr,
  .c_table_type02 td{
    padding: 7px;
  }
  /*
  .c_table_type02 {
    width: 80%;
  } 
  .c_table_type02 .thead {
    display: none;
  }
  .c_table_type02 tr,
  .c_table_type02 td{
    display: block;
    width: 100%;
    position: relative;
    background: transparent;
    border: transparent;
  }
  .c_table_type02 td {
    padding: 3px 10px;
  }
  .c_table_type02 tr {
    margin-bottom: 20px;
    border-bottom: 1px solid #E9F1DA;
    padding-bottom: 20px;
  }*/
}




.c_box{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	background: #E4F3FF;
	color: #163F82;
	font-size: 1.6rem;
	font-weight: bold;
	height: 146px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.c_box span{
	-ms-writing-mode: initial;
  writing-mode: initial;
	line-height: 1.1;
}

/*c_slider_link*/
.c_slider_link {
  margin-top: 40px;
}
.c_slider_link img {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
.c_slider_link.slick-dotted {
  margin-bottom: 60px !important;
}
.c_slider_link .slick-dots {
  bottom: -50px !important;
}
.c_slider_link li.banner a {
  height: 92px;
  padding: 0 15px;
  text-decoration: none;
  line-height: 1.3;
  color: #000;
  display: flex;
  justify-content: center;
  max-width: 600px;
  height: 116px;
  margin: 0 auto;
  align-items: center;
  border: #000 1px solid;
  transition: .3s;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .c_slider_link li.banner a {
  height: auto !important;
    padding: 25px;
}
}
  
/*  絞り込み機能  */

.interview_fillter ol {
  list-style: none;
}
.interview_fillter .container {
  max-width: 1400px;
  margin: 0 auto;
}
 
.interview_fillter input[type="radio"] {
  position: absolute;
  left: -9999px;
}
.interview_fillter .filters {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.interview_fillter .filters li {
  flex-grow: 1;
  text-align: center;
  /*border-left: 1px solid #000;*/
  width: 100px;
  margin: 10px 15px;
}
/*.interview_fillter .filters li:first-of-type {
    border-left: none;
}*/
.interview_fillter .filters label {
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
  color: #999;
  opacity: 0.4;
}
.interview_fillter .filters label:hover {
  /* background: #994B8A; */
  color: #333;
  opacity: 1.0;
}
.interview_fillter .targets {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
.l_business_item img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  padding: 0 15px;
  }
.interview_fillter .targets .target {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.interview_fillter .targets .target .list_tex { padding: 10px; }
.interview_fillter .targets .target .img_list {
  width: 100%;
}
.interview_fillter .targets .target-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}
.interview_fillter .targets .target-title:hover {
  text-decoration: none;
}
/*.interview_fillter .targets .target:hover {
    opacity: 0.6;
}*/
.interview_fillter .targets figcaption {
  padding: 0.5rem;
  font-size: 0.75rem;
}
.interview_fillter .targets .target-categories {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}
.interview_fillter .targets .target-categories * {
  display: inline-block;
}
.interview_fillter .targets .target-categories li {
  margin-bottom: 0.2rem;
}
/* フィルタリング  */
[value="All"]:checked ~ .filters [for="All"],
[value="cat-1"]:checked ~ .filters [for="cat-1"],
[value="cat-2"]:checked ~ .filters [for="cat-2"], 
[value="cat-3"]:checked ~ .filters [for="cat-3"], 
[value="cat-4"]:checked ~ .filters [for="cat-4"], 
[value="cat-5"]:checked ~ .filters [for="cat-5"] {
  /*background: #994B8A;
  color: #fff;*/
  opacity: 1;
  color: #333;
}
[value="All"]:checked ~ .targets [data-category] {
  display: block;
}
[value="cat-1"]:checked ~ .targets .target:not([data-category~="cat-1"]), 
[value="cat-2"]:checked ~ .targets .target:not([data-category~="cat-2"]), 
[value="cat-3"]:checked ~ .targets .target:not([data-category~="cat-3"]),
[value="cat-4"]:checked ~ .targets .target:not([data-category~="cat-4"]), 
[value="cat-5"]:checked ~ .targets .target:not([data-category~="cat-5"]) {
  display: none;
}

.is_cat_0 p, .is_cat_1 p, .is_cat_2 p, .is_cat_3 p, .is_cat_4 p {
  color: #fff;
}
.is_cat_0 { 
background: #333;
  border-radius: 5px;
}
.is_cat_1 { 
background: #A4B33E;
  border-radius: 5px;
}
.is_cat_2 { 
background: #B3793E;
  border-radius: 5px;
}
.is_cat_3 { 
background: #3EABB3;
  border-radius: 5px;
}
.is_cat_4 { 
background: #9874B8;
  border-radius: 5px;
}

.c_tag_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}
.c_tag_box p {
  margin: 5px;
  font-size: 1.1rem;
  color: #fff;
  padding: 2px 5px;
}
.c_tag_box .c_tagA {
  background: #A4B33E;
  border-radius: 50px;
}
.c_tag_box .c_tagB {
  background: #B3793E;
  border-radius: 50px;
}
.c_tag_box .c_tagC {
  background: #3EABB3;
  border-radius: 50px;
}
.c_tag_box .c_tagD {
  background: #9874B8;
  border-radius: 50px;
}


@media screen and (max-width: 750px) {
  .interview_fillter .targets {
  display: block;
}
  .interview_fillter .targets .target {
    margin-bottom: 20px;
  }
  .interview_fillter .filters li.is_cat_0 {
    width: 100% !important;
  }
}
