@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
::-webkit-scrollbar {
	background: var(--lbg);
	border-radius: 15px;
	width: 7px;
	margin: 1rem 0;
}
::-webkit-scrollbar-thumb {
	background-color: var(--bl);
	border-radius: 15px;
}

@media screen and (max-width: 1080px) {
	::-webkit-scrollbar{
		width: 4px;
	}

}


/*----------------------------------------------
	pagenation
---------------------------------------------*/
.c_section_pagination {
	text-align: center;
	margin: 4rem 2rem;
}
.c_pagination_list li {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    width: 36px;
    text-align: center;
    background: var(--wh);
    color: var(--bl);
    margin: 0 0.3rem;
    border-radius: 5px;
}
.c_pagination_list li.pre, .c_pagination_list li.next, .c_pagination_list li.active {
    background: var(--gr);
    color: var(--wh);
}
.c_pagination_list .pre a,.c_pagination_list .next a {
    background-color: var(--bl);
    color: var(--wh);
}
.c_pagination_list .this {
    background-color: var(--bl);
    color: var(--wh);
}
.c_pagination_list li a {
    display: block;
    border-radius: 5px;
}
.c_pagination_list li a:hover {
	background-color: var(--bl);
    color: var(--wh);
}

/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_section_type01
---------------------------------------------*/
.c_section_type01 {
  padding: 40px 0;
  position: relative;
  z-index: 98;
}

/*  .c_section_type01_wrapper
---------------------------------------------*/
.c_section_type01_wrapper {
	background: var(--wh);
	padding:3rem;
	border-radius:10px;
	box-shadow: 0px 4px 11px 0px #4b6c9d0f;
}

/*  .c_section_type02
---------------------------------------------*/
.c_section_type02 {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	position: relative;
	z-index: 98;
}

/*  .c_section_type02_wrapper
---------------------------------------------*/
.c_section_type02_wrapper {
	background: var(--wh);
	padding:6rem;
	border-radius:10px;
	box-shadow: 0px 4px 11px 0px #4b6c9d0f;
}

@media screen and (max-width: 1080px) {
	.c_section_type01 {
		padding: 20px 0;
	}
	.c_section_type01_wrapper {
		padding: 2rem 1.5rem;
	}
	.c_section_type02_wrapper {
		padding: 3rem 2rem;
	}
}

/*----------------------------------------------
	ログイン
---------------------------------------------*/
/*  .c_link_item
---------------------------------------------*/
.c_link_item{
	text-align: end;
	margin-bottom: 3rem;
}
.c_link_item a {
    font-weight: 600;
    color: var(--bl);
    text-decoration: underline;
    line-height: 2.2;
    transition: .3s;
}
.c_link_item a:hover {
    opacity: 0.7;
    transition: .3s;
}

/*----------------------------------------------
	c_news
---------------------------------------------*/
.c_news_item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 2rem;
	background: var(--wh);
	border-top: 1px solid var(--libl);
	text-decoration: none;
}
.c_news_list li:nth-child(2n) a {
	background: var(--libl02);
}
.c_news_list li:last-child a {
	border-bottom: 1px solid var(--libl);
}
.c_news_date {
	width: 10%;
}
.c_news_list .c_no_link{
	pointer-events: none;
}

@media screen and (max-width: 1080px) {
	.c_news_item {
		flex-wrap: wrap;
		padding: 1rem;
	}
	.c_news_date {
		width: 100%;
	}
}

/*----------------------------------------------
	c_single
---------------------------------------------*/
.c_single_content {
	margin-top: 3rem;
}
.c_news_prev_next a {
	background: var(--wh);
	padding: 0.5rem 2rem;
	margin: 0 1rem;
	border-radius: 10px;
}
.c_news_prev_next {
	width: fit-content;
	margin: 4rem auto;
}
.c_news_btn{
	max-width: 300px!important;
}
.c_news_btn a{
	margin:0 auto;
}

/*----------------------------------------------
	modal
---------------------------------------------*/
.button-open {
	display: block;
	margin: 0 auto;
	width: 20rem;
	padding: 1em;
	background-color: #3140c9;
	color: #eaeaea;
	border-radius: 20rem;
	cursor: pointer;
}
.modal-window {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	background-color: var(--wh);
	border: 3px solid var(--bl);
	border-radius: 10px;
	z-index: 110;
	max-width: 720px;
}
.button-close {
	position: absolute;
	top: -1.5rem;
	right: -2rem;
	width: 50px;
	height: 50px;
	background-color: var(--wh);
	border: 3px solid var(--bl);
	color: var(--bl);
	border-radius: 50%;
	line-height: 0;
	cursor: pointer;
	z-index: 10;
}
.button-close i {
	font-size: 3rem;
}
.button-close.button-close_type02 {
	position: initial;
	height: auto;
	line-height: inherit;
	font-weight: 600;
	display: block;
	width: 150px;
	padding: 0.8rem 0;
	background-color: var(--lbk);
	border-radius: 10px;
	border: none;
	color: var(--wh);
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
}
.button-close.button-close_type02 i {
	font-size: initial;
}
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 100;
}
.sidemenu-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 100;
}
.c_modal_ttl {
	color: var(--bl);
	border-bottom: 3px solid var(--bl);
	padding: 2rem;
	z-index: 1;
    position: relative;
}
.c_modal_inner {
	padding: 2rem;
	max-width: 100%;
	max-height: 80vh;
	/* min-height: 10vw; */
	overflow: auto;
}
.c_modal_sm {
	max-width: 35%;
}
.c_modal_xs {
	max-width: 25%;
}
/* モーダルウィンドウ表示領域外へはスクロールさせない
---------------------------------------------*/
.no_scroll {
	overflow: hidden;
}

@media screen and (max-width: 1080px) {
	.modal-window {
		width: 94%;
	}
	.c_modal_sm {
		max-width: 80%;
	}
	.c_modal_xs {
		max-width: 50%;
	}
	.c_modal_ttl {
		padding: 1rem 1.5rem;
	}
	.c_modal_inner {
		padding: 1rem 1.5rem;
		max-height: 60vh;
	}
	.button-close {
		width: 35px;
		height: 35px;
		top: -1rem;
		right: -1rem;
	}
	.button-close.button-close_type02{
		width: inherit;
	}
}

@media screen and (max-width: 768px) {
	.c_modal_sm {
		max-width: 100%;
	}
	.c_modal_xs {
		max-width: 100%;
	}

}

/*----------------------------------------------
	required
---------------------------------------------*/
.c_required {
	font-size: 1.2rem;
	color: var(--wh);
	background: var(--rd);
	padding: 0rem 0.7rem 0.2rem;
	border-radius: 4px;
	margin-left: 1rem;
}

/*----------------------------------------------
	radio
---------------------------------------------*/
.c_radio {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
#c_radio_content1, #c_radio_content2 {
	display: none;
}

.c_radio_option, .c_radio_option label {
	cursor: pointer;
}

/*----------------------------------------------
	checkbox
---------------------------------------------*/
[type="checkbox"] {
    margin: 0 1rem 0 0;
    transform: scale(1.2);
}
fieldset{
	border:none;
}
.c_checkbox_inner{
	display: none;
	margin-top:2rem;
} 
input[type="checkbox"]:checked + .c_checkbox_inner{
	display:block;
}

.c_checkbox_label {
	cursor: pointer;
}

/*----------------------------------------------
	select
---------------------------------------------*/
.c_select{
	display: block;
	position: relative;
	font-size: 1.4rem;
	background: var(--lbg);
	border: none;
	width: 100%;
	height: 30px;
	padding: 0 1.5rem;
	border-radius: 50px;
}

.c_select:disabled {
	background: var(--gr) !important;
}

select.c_select:focus {
	outline: 2px solid var(--bl);
}

select.c_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("/static/img/arrow.svg");
	background-repeat: no-repeat;
	background-position-x: 98%;
    background-position-y: 12px;
}

/*----------------------------------------------
	label input
---------------------------------------------*/
.c_label_item {
	margin-bottom: 1.5rem;
}
.c_label_item input:focus,.c_label_item textarea:focus,.c_label_item select:focus{
	outline: 2px solid var(--bl);
}
.c_label_item input:read-only:focus{
	outline: inherit;
}
.c_input_ttl{
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 2;
}
.c_input_text {
	display: block;
	font-size: 1.4rem;
	background: var(--lbg);
	border: none;
	width: 100%;
	height: 30px;
	padding: 1.5rem 1.5rem;
	border-radius: 50px;
}
.c_input_textarea {
	display: block;
	font-size: 1.4rem;
	background: var(--lbg);
	border: none;
	width: 100%;
	height: 100px;
	padding: 1rem 1rem;
	border-radius: 5px;
}
.c_input_text:disabled,.c_input_textarea:disabled,
.c_input_text:read-only,.c_input_textarea:read-only
.c_select:disabled {
	background: var(--gr);
}
.c_input_text::placeholder,.c_input_textarea::placeholder{
	color: var(--ligr);
}
.c_input_text:focus {
	outline: 2px solid var(--bl);
}

/*----------------------------------------------
	input_validation_error
---------------------------------------------*/
.input_validation_error {
    display: block;
    background: var(--lird);
    border: 2px solid var(--rd);
}

input.input_validation_error {
	border-radius: 50px;
}

textarea.input_validation_error, fieldset.input_validation_error  {
	border-radius: 5px;
}

.input_date_container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/*----------------------------------------------
.c_label_half
---------------------------------------------*/
.c_label_half {
    display: flex;
	align-items: center;
}
.c_label_half .c_input_text,.c_label_half .c_select {
    width: 50%;
	display: flex;
}

/*----------------------------------------------
	c_date_flex
---------------------------------------------*/
.c_date_flex {
	display: flex;
}
.c_date_flex .c_input_text, .c_date_flex .c_date_align {
	width: 100%;
}

.c_date_flex .c_input_text {
	cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	content: url("/static/img/calendar-days.svg");
}

input[type="date"] {
    -webkit-appearance: none;
	-moz-appearance: none;
}

@media screen and (max-width: 1080px) {
	.c_label_half .c_input_text, .c_label_half .c_select {
		width: 100%;
		flex-wrap: wrap;
	}
	.c_label_half{
		align-items: end;
	}
	.c_date_flex {
		flex-wrap: wrap;
	}
	.c_date_flex .c_input_text {
		width: 100%;
	}
}

/*----------------------------------------------
	c_blk-frame
---------------------------------------------*/
.c_blk-iframe {
	max-width: 100%;
	max-height: 30rem;
	height: 100%;
	margin: 0rem auto 2.5rem;
	overflow: auto;
}
.c_blk-iframe_list {
	line-height: 1.8;
}
.c_blk-iframe_list li {
	font-size:1.4rem;
	border-bottom: 1px solid var(--gy);
	padding: 0.5rem 1rem;
}
.c_blk-iframe_list li .delete-file-btn {
	display: block;
    font-weight: 600;
    min-width: 80px;
    width: fit-content;
    line-height: initial;
    padding: 10px 12px;
    background-color: var(--rd);
    border-radius: 10px;
    border: none;
    color: var(--wh);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-list li {
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 1rem 1rem;
	word-break: break-all;
}

/*----------------------------------------------
	c_border
---------------------------------------------*/
.c_border{
	border-bottom: 2px solid var(--bl);
}

/*----------------------------------------------
	error_alert
---------------------------------------------*/

.error_alert {
    position: relative;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
	font-weight: 700;
}

.error_alert_danger {
    color: var(--rd);
    background-color: var(--lird);
    border-color: var(--lird);
}


/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl
---------------------------------------------*/
.c_ttl {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: var(--bl);
	font-weight: bold;
}

/*  .c_ttl_small
---------------------------------------------*/
.c_ttl_small {
	font-size: 2.6rem;
	margin-left: 1rem;
}

/*  .c_ttl_nosidebar
---------------------------------------------*/
.c_ttl_nosidebar {
	font-size: 2.6rem;
	text-align: center;
	margin: 0 auto 3rem;
	color: var(--bl);
}

/*  .c_sub_ttl
---------------------------------------------*/
.c_sub_ttl {
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 4rem;
	color: var(--bl);
}

@media screen and (max-width: 1080px) {
	.c_ttl {
		font-size: 2.2rem;
	}
	.c_sub_ttl {
		font-size: 1.6rem;
		margin-bottom: 2rem;
	}
	.c_ttl_nosidebar {
		font-size: 1.6rem;
	}
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  max-width: 160px;
}

.custom-upload-btn {
	cursor: pointer;
}

.custom-upload-btn input[type="file"], .file_upload input[type="file"]{
	display: none;
}

.c_btn_type01 a, .c_btn_type01 button, .custom-upload-btn {
	display: block;
	font-weight: 600;
	min-width: 160px;
	width: fit-content;
	line-height: initial;
	padding: 1rem 2rem;
	background-color: var(--bl);
	border-radius: 10px;
	border: none;
	color: var(--wh);
	text-decoration: none;
	text-align: center;
	margin-top: 1.5rem;
	transition: all 0.3s ease;
}

.c_btn_type01 a:hover,.c_btn_type01 button:hover, .custom-upload-btn:hover {
	opacity: 0.7;
	transition: all 0.3s ease;
}

.c_btn_type01 a {
	color: var(--wh) !important;
}

@media screen and (max-width: 1080px) {
	.c_btn_type01 {
		max-width: inherit;
		width: 100%;
	}
	.c_btn_type01 a,.c_btn_type01 button, .custom-upload-btn {
		font-size: 1.2rem;
		width: 100%;
		padding: 1rem 1rem;
  }
}

/*  .c_btn_type01 .c_btn_gray
---------------------------------------------*/
.c_btn_type01.c_btn_gray a, .c_btn_type01.c_btn_gray button {
	background-color: var(--lbk);
}

/*  .c_btn_type01 .c_btn_white
---------------------------------------------*/
.c_btn_type01.c_btn_white a, .custom-upload-btn.c_btn_white{
	background-color: var(--wh);
	color: var(--bl);
	border: 2px solid var(--bl);
}

/*  .c_btn_type01 .c_btn_red
---------------------------------------------*/
.c_btn_type01.c_btn_red a,.c_btn_type01.c_btn_red button{
	background-color: var(--rd);
	color: var(--wh);
}

/*  .c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
	max-width: 150px;
}
.c_btn_type02 a, .c_btn_type02 button {
	display: block;
	font-weight: 600;
	width: fit-content;
	padding: 0.5rem 2rem;
	background-color: var(--wh);
	border-radius: 5px;
	border: none;
	color: var(--bl);
	border: 2px solid var(--bl);
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
}
.c_btn_type02 a:hover,.c_btn_type02 button:hover {
	background-color: var(--bl);
	color: var(--wh);
	transition: all 0.3s ease;
}

@media screen and (max-width: 1300px) {
	.c_btn_type02 a {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 1080px) {
	.c_btn_type02 {
		max-width: inherit;
	}
	.c_btn_type02 a, .c_btn_type02 button {
		width: 100%;
	}
}

/*  .c_btn_type02 .c_btn_red
---------------------------------------------*/
.c_btn_type02.c_btn_red a,.c_btn_type02.c_btn_red button{
	background-color: var(--wh);
	color: var(--rd);
	border: 2px solid var(--rd);
}
.c_btn_type02.c_btn_red a:hover,.c_btn_type02.c_btn_red button:hover{
	background-color: var(--rd);
	color: var(--wh);
}

/*  .c_btn_type02 .c_btn_gray
---------------------------------------------*/
.c_btn_type02.c_btn_gray a,.c_btn_type02.c_btn_gray button{
	background-color: var(--lbk);
	color: var(--wh);
	border: 2px solid var(--lbk);
}
.c_btn_type02.c_btn_gray a:hover,.c_btn_type02.c_btn_gray button:hover{
	opacity: 0.7;
	transition: all 0.3s ease;
}

/*----------------------------------------------
	file_upload_area
---------------------------------------------*/
.c_file_upload_area {
	width: 100%;
	background: var(--lbg);
	border: 2px dashed var(--bl);
	border-radius: 10px;
	text-align: center;
	padding: 4rem;
	margin: 0 0 2.5rem;
}
.c_file_upload_icon {
	font-size: 10rem;
	color: var(--wh);
}

/*----------------------------------------------
	tbl
---------------------------------------------*/
/*  .c_tbl_type01
---------------------------------------------*/
.c_tblbox_type01 {
	overflow-x: hidden;
}
.c_tbl_type01 {
	border-collapse: collapse;
	font-size: 1.3rem;
	white-space: normal;
	width: 100%;
}
.c_tbl_type01_head {
	background: var(--lbg);
	border-bottom: 2px solid var(--bl);
	text-align: left;
}
.c_tbl_type01_body {
	border-bottom: 2px solid var(--lbg);
}
.c_tbl_type01 th,.c_tbl_type01 td {
	padding: 1rem;
	vertical-align: baseline;
	width: auto;
	word-break: auto-phrase;
}
.c_tbl_type01 th {
	white-space: nowrap;
	word-break: keep-all;
}
.c_tbl_type01 td button {
	min-width: 100px;
}
.l_sharedman_contents .c_tbl_type01 td,.l_accounts_contents .c_tbl_type01 td{
	vertical-align: middle;
}

.c_tbl_type01_body:last-child {
	border-bottom: none;
}


@media (max-width: 1080px) {
	.c_tblbox_type01 {
		overflow-x: scroll;
		margin-bottom: 2rem;
	}
	.c_tbl_type01 {
		white-space: nowrap;
	}
	.l_fileman_contents .c_tbl_type01_body {
		/* border-bottom: 0; */
	}
	.c_tbl_type01_wrapper{
		padding-bottom: 2rem;
		border-bottom: 2px solid var(--lbg);
	}
}

/*  .c_tbl_file
---------------------------------------------*/
.c_tb_file {
	color: var(--bl);
	cursor: pointer;
	display: flex;
	word-break: keep-all;
	align-items: center;
}
.c_tb_file_more {
	display: none;
}
.is_open .c_tb_file_more {
	display: block;
}

/*  .c_tbl_memo
---------------------------------------------*/
.c_tbl_type01 th.c_tbl_memo{
	width: 10%;
}

/*----------------------------------------------
	.c_grid
---------------------------------------------*/
.c_grid {
	display: grid;
	/* align-items: center; */
}

.is_gr_2_2 {
	grid-template-columns: 1fr 1fr;
}

.is_gr_2_2_1{
	grid-template-columns: 2fr 2fr 1fr;
}
.is_gr_1_4{
  grid-template-columns: 1fr 4fr;
}
.is_gr_1_5{
	grid-template-columns: 1fr 5fr;
}
.is_gr_1_10{
	grid-template-columns: 1fr 10fr;
}
.is_gap4{
	gap: 4rem;
}
.is_gap2{
	gap: 2rem;
}

@media screen and (max-width: 1080px) {
	.is_gr_1_sp{
		grid-template-columns: 1fr;
	}
	.is_gap2_sp{
		gap: 2rem;
	}

}


/*----------------------------------------------
	.c_flex
---------------------------------------------*/
.c_flex {
	display: flex;
	flex-wrap: wrap;
}
/*  column - ぴったりカラム用   */
.is_fl_column2 > * {
	width: calc(100% / 2);
}
.is_fl_column3 > * {
	width: calc(100% / 3);
}
.is_fl_column4 > * {
	width: calc(100% / 4);
}
.is_fl_column5 > * {
	width: calc(100% / 5);
}
.is_fl_column6 > * {
	width: calc(100% / 6);
}
/*  column - space-between用   */
.is_fl_bw_column2 > * {
	width: calc((100% / 2) - 20px);
}
.is_fl_bw_column3 > * {
	width: calc((100% / 3) - 20px);
}
.is_fl_bw_column4 > * {
	width: calc((100% / 4) - 20px);
}
.is_fl_bw_column5 > * {
	width: calc((100% / 5) - 20px);
}
.is_fl_bw_column6 > * {
	width: calc((100% / 6) - 20px);
}
/*  option   */
.is_fl_nowrap {
	/* 横幅に収まる */
	flex-wrap: nowrap;
}
.is_fl_column {
	/* 縦並び */
	flex-direction: column;
}
.is_fl_jc_end {
	/* 右寄せ */
	justify-content: flex-end;
}
.is_fl_jc_center {
	/* 左右中央 */
	justify-content: center;
}
.is_fl_jc_between {
	/* 均等 */
	justify-content: space-between;
}
.is_fl_al_center {
	/* 上下中央 */
	align-items: center;
}
.is_fl_al_end {
	align-content: flex-end;
}

.is_input_size {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.is_sp_fl_column {
		flex-direction: column;
	}
	.is_sp_fl_jc_center {
		justify-content: center;
	}
	.is_sp_fl_column_full > * {
		width: 100%;
	}
	.is_sp_fl_column_full > *:not(:last-child) {
		margin-bottom: 20px;
	}
	/*  column - ぴったりカラム用   */
	.is_sp_fl_column2 > * {
		width: calc(100% / 2);
	}
	/*  column - space-between用   */
	.is_sp_fl_bw_column2 > * {
		width: calc((100% / 2) - 20px);
	}
	.is_input_size {
		width: 90%;
	}
}

/*----------------------------------------------
	.c_block
---------------------------------------------*/
.c_block_pc{
	display: block;
}
.c_block_sp{
	display: none;
}
@media screen and (max-width: 1080px) {
	.c_block_pc{
		display: none;
	}
	.c_block_sp{
		display: block;
	}
}

/*----------------------------------------------
	.c_fade
---------------------------------------------*/
.c_fade{
	animation: fadeUp 1s forwards;
}

/*----------------------------------------------
	.c_wordbreak
---------------------------------------------*/
.c_word_break {
	word-break: break-word;
}


/*----------------------------------------------
	.c_faq
---------------------------------------------*/
.c_faq_wrapper {
	padding: 4rem 8rem;
}

.c_faq_block {
	padding: 5px 0;
}

.c_faq_header {
	color: var(--bl);
	font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    border-bottom: 2px solid var(--bl);
    padding: 15px 0;
}

.c_faq_text {
	font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    margin-block: 20px;
}

@media screen and (max-width: 1080px) {
	.c_faq_wrapper {
		padding: 2rem;
	}
}