/**
 * Body CSS
 */

 html,
 body {
   height: 100%;
   
 }
 html {
	overflow-y: scroll;
	/* font-size: 62.5%; */
}

body {
	font-size: 16px;
	/* font-size: 1.6rem;  */
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif !important;
}

 html,
 body,
 input,
 textarea,
 button {
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
 }

/**
 * Header CSS
 */
 header {
	/* position: sticky; */
	z-index: 999;

	position: fixed;
	/* z-index: 2; */
	top: 0;
	right: 0;
	left: 0;
  }
  
  header ul.mui-list--inline {
	margin-bottom: 0;
  }
	header ul.mui-list--inline>li {
		padding-left: 15px;
	}
  header a {
	color: white;
  }
  
  header table {
	width: 100%;
  }
 
  /**
   * Content CSS
   */
   #content-wrapper {
	/* min-height: 100%; */
  margin-left: auto;
  margin-right: auto;
  background-color:#FFF;
  
	/* sticky footer */
	box-sizing: border-box;
	margin-bottom: -50px;
	padding-bottom: 50px;

	min-height: 100vh;
	min-height: 100dvh;
  }

  #content-wrapper-inner {
	width:95%;
	margin:0 auto; 
	margin-bottom: 50px;
 }

/* タイトル */
#content-wrapper div.title01 {
	text-align: center;
	position: relative;
	padding: 0 0 12px;

	font-weight: 400;
    font-size: 24px;
	/* font-size: 2.4rem;  */
    line-height: 32px;
	margin-top: 20px;
    margin-bottom: 10px;
}
#content-wrapper div.title01::after{
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	width: 80px;
	margin: auto;
	border-bottom: 3px solid #303F9F;
} 

#content-wrapper div.title02 {
	color: #303F9F;
    margin: 2rem 0;
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    border-bottom: 2px dotted #c5c5c5;
	text-align: left;
	font-weight: 700;
    font-size: 20px;
	/* font-size: 2.0rem;  */
    line-height: 28px;
	margin-top: 20px;
    margin-bottom: 10px;
}
 #content-wrapper div.title02::before {
    content: "";
    width: 6px;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #303F9F;
}

div.title03 {
    margin: 32px 0 10px 0;
    padding: 8px 4px 8px 15px;
    border-left: 10px solid #303F9F;
    border-radius: 4px;
    background: #efefef;

	font-size: 16px;
	font-weight: 700;
    line-height: 1.35;
}

#content-wrapper div.title03 .title03_sub {
	font-size: 12px;
	font-weight: 400;
    line-height: 1.35;
}

div.title04 {
    margin: 32px 0 10px 0;
    padding: 8px 4px 8px 15px;
    border-left: 10px solid #07084D;
    background: #E8EAF6;
	font-weight: 700;
    line-height: 1.35;
}

div.title04 .title03_sub {
	font-size: 12px;
	font-weight: 400;
    line-height: 1.35;
}

div.title05 {
	font-size: 14px;
    color: #FF0000;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.title_h2 {
	color: #07084D;
	margin-bottom: 15px;
	border-bottom: 2px solid #00267F;
	padding-bottom: 5px;
	margin-top: 40px;
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	text-align: left;
}

@media (max-width: 768px) {
	.title_h2 {
		font-size: 18px;
	}
}

/* login */
.login-container {
	align-items: center;
	width: 80%;
	max-width: 400px;
	padding: 20px;
}

.login-container img {
	width: 300px;
	height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.btn-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.btn-container button {
	padding: 12px 20px;
	border: none;
	border-radius: 3px;
	font-size: 1em;
	cursor: pointer;
	width: 48%;
  }
  
  button.cancel-btn {
	background-color: #fff;
	color: #07084D;
	border: 1px solid #07084D;
  }
  
  button.login-btn {
	background-color: #07084D;
	color: #fff;
  }
  
  .login-password {
	color: #848484;
	text-decoration: none;
}

.login-password:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.login-container {
		width: 95%;
		padding: 0 !important;
	}
	.login-container img {
		max-width: 200px;
	}

	button {
		font-size: 0.9em;
		padding: 12px 20px;
	}
}

.form-group {
	width: 100%;
	margin-bottom: 20px;
  }
  
  .form-group label {
	display: block;
	margin-bottom: 5px;
  }
  
  .form-group input {
		width: 100%;
		padding: 10px;
		border: 1px solid #D3D3D3;
		border-radius: 3px;
		font-size: 1em;
		box-sizing: border-box;
		height: 40px;
  }

/* クリックで開閉 */
.accordion-title {
	cursor: pointer;
	position: relative;
}
.accordion-title::after {
	content: "＋";
	position: absolute;
	right: 20px;
}
.accordion-title.open::after {
	content: "－";
}

/* クリックで開閉 */
#content-wrapper .accordion-title-plus {
	cursor: pointer;
	padding: 10px;
	color: #333;
	background: #E8EAF6;
	position: relative;
}
#content-wrapper .accordion-title-plus::after {
	content: "＋";
	position: absolute;
	right: 20px;
}
#content-wrapper .accordion-title-plus.open::after {
	content: "－";
}

/* button-group */
.button-group,
.button-group-fix {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}


.button-group .button,
.button-group-fix .button {
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin: 0 10px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.button-group-fix .button {
	display: block;
	margin: 10px 10px;
	padding: 10px 5px !important;
}

.button-group .button:hover,
.button-group-fix .button:hover {
	-webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0.7;
}

.button-group .primary-btn,
.button-group-fix .primary-btn {
	background-color: #07084D;
	color: white;
	width: 30%;
}
.button-group .primary-btn-fit {
	background-color: #07084D;
	color: white;
	width: fit-content;
	block-size: fit-content;
}

.button-group-fix .primary-btn {
	width:85% !important;
}

.button-group .secondary-btn,
.button-group-fix .secondary-btn {
	background-color: #fff;
	color: #001f3f;
	border: 1px solid #001f3f;
	width: 30%;
}
.button-group .secondary-btn-delete {
	background-color: #fff;
	color: #001f3f;
	border: 1px solid #001f3f;
	width: fit-content;
	block-size: fit-content;
}
.button-group-fix .secondary-btn {
	width:85% !important;
}

.button-group .confirm-btn,
.button-group-fix .confirm-btn {
	color: #001f3f;
	background-color: #F4F3F2;
	border: 1px solid #707070;
	width: fit-content;
	block-size: fit-content;
}
.button-group-fix .confirm-btn {
	width:85% !important;
}

@media (max-width: 768px) {
	.button-group .primary-btn-confirm {
		width: fit-content;
		block-size: fit-content;
	}
	
}
/* btn-edit-prof */
.btn-edit-prof button {
	padding: 12px 20px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1em;
	color: #001f3f;
	background-color: #F4F3F2;
	border: 1px solid #707070;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	width: fit-content;
	block-size: fit-content;
}
.btn-edit-prof button:hover, .btn-edit-prof button:focus {
	-webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0.7;
}

/* search-filters */
.search-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.filter-section {
	margin-bottom: 15px;
	/* width: 32.5%; */
	width: 32%;
}

@media (max-width: 1160px) {
	.filter-section {
		width: 32%;
	}
	
}

@media (max-width: 768px) {

	.search-filters {
		flex-direction: column;
	}

	.filter-section {
		width: 100%;
	}
}

.filter-header {
	background-color: #07084D !important;
	color: white;
	padding: 10px;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
}

.filter-content {
	padding: 10px;
}

.filter-content ul {
	list-style: none;
	padding: 0;
}

.filter-content li {
	margin-bottom: 5px;
}

/* クリックで開閉 */
.accordion-title-prof-plus {
	cursor: pointer;
	color: #FFF;
	position: relative;
}
.accordion-title-prof-plus::after {
	content: "＋";
	position: absolute;
	right: 20px;
	color: #FFF;
}
.accordion-title-prof-plus.open::after {
	content: "－";
	color: #FFF;
}

/* checkbox-group */
.checkbox-group {
	color: #07084D;
	margin-top: 30px;
    width: 100%;
}

.checkbox-group .item-index {
	display: inline-block;
	margin-right: 30px;
	margin-bottom: 10px;
}

.checkbox-group .item-label {
	display: inline-block;
	margin-right: 30px;
	margin-bottom: 10px;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.checkbox-group .item-index {
		display: block;
	}
}

.checkbox-group input[type="checkbox"] {
	margin-right: 5px;
}

.search-input-box {
	background-color: #F4F3F2;
	padding: 30px;
	width: calc(100%);
	margin-left: -30px;
}

@media (max-width: 768px) {
	.search-input-box {
		padding-right: 0;
	}
}

/* text-input */
.text-input{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.text-input label {
	width: 20%;
	height: 40px;
	line-height: 40px;
	color: white;
	padding: 0 10px;
	background: #07084D;
	text-align: center;
	border: 1px solid #07084D;
}

.text-input input[type="text"], 
.text-input input[type="password"],
.text-input select {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0px;
	width: 80%;
	height: 40px;
	border: 1px solid #07084D;
	background: #FFFFFF;
	color: #000000;
	padding: 0 8px;
}

select::-ms-expand {
	display: none;
}

.text-input-sel {
	width: 40%;
	position: relative;
}

.text-input-sel select {
	width: 100%;
}

.text-input-sel::before {
  border-bottom: 4.5px solid #07084D;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 9px;
  top: 12px;
  width: 0;
}

.text-input-sel::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #07084D;
  content: "";
  position: absolute;
  right: 9px;
  top: 23px;
  width: 0;
}

.text-input select::after {
	position: absolute;
	top: 1px;
	left: 4px;
	transform: rotate(50deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #07084D;
	border-bottom: 2px solid #07084D;
	content: '';
}

.search-filters input[type='checkbox'],
.checkbox-group input[type='checkbox'] {
	appearance: none;
	outline: none;
	border-radius: 0px;
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #07084D;
	background: #FFFFFF;
	vertical-align: -2px;
}

.search-filters input[type='checkbox']:checked::before,
.checkbox-group input[type='checkbox']:checked::before {
	position: absolute;
	top: 1px;
	left: 4px;
	transform: rotate(50deg);
	width: 4px;
	height: 8px;
	border-right: 2px solid #07084D;
	border-bottom: 2px solid #07084D;
	content: '';
}

.search-filters input[type='checkbox']:checked::before {
	top: 0.5px;
	left: 3.5px;
}

.checkbox-group input[type='radio'] {
	appearance: none;
	outline: none;
	border-radius: 0px;
	position: relative;
	width: 16px;
	height: 16px;
	border: 1px solid #07084D;
	background: #FFFFFF;
	border-radius: 50%;
	vertical-align: -2px;
}

.checkbox-group input[type='radio']:checked::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #000;
	content: '';
}

.pass_view_btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #999;
}

.pc-only-placeholder::placeholder {
	font-size: 0.9em;
}
/* IE */
.pc-only-placeholder:-ms-input-placeholder {
	font-size: 0.9em;
}
/* Edge */
.pc-only-placeholder::-ms-input-placeholder {
	font-size: 0.9em;
}

.pc-placeholder-s::placeholder {
	font-size: 0.9em;
}
/* IE */
.pc-placeholder-s:-ms-input-placeholder {
	font-size: 0.9em;
}
/* Edge */
.pc-placeholder-s::-ms-input-placeholder {
	font-size: 0.9em;
}

@media (max-width: 768px) {
	.text-input label {
		block-size: fit-content;
		font-size: 0.9em;
		white-space:nowrap;
		width: 30%;
	}
	.text-input input::placeholder {
		font-size: 0.6em;
	}

	.pc-only-placeholder::placeholder {
		color: transparent;
	}
	/* IE */
	.pc-only-placeholder:-ms-input-placeholder {
		color: transparent;
	}
	/* Edge */
	.pc-only-placeholder::-ms-input-placeholder {
		color: transparent;
	}

	.pc-placeholder-s::placeholder {
		font-size: 0.9em !important;
	}
	/* IE */
	.pc-placeholder-s:-ms-input-placeholder {
		font-size: 0.9em !important;
	}
	/* Edge */
	.pc-placeholder-s::-ms-input-placeholder {
		font-size: 0.9em !important;
	}

}

/* pc_only for maypage */
@media screen and (min-width: 769px) {

	.search-item-box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 15px;
	}
	.search-item-box .text-input label {
		width: 30%;
	}
	.search-item-box .text-input input[type="text"] {
		width: 70%;
	}
	.text-input-sel {
		width: 35%;
	}
	.search-item-box .text-input {
		width: 33%;
	}
}
@media screen and (max-width: 1060px) and (min-width: 769px) {
	.search-item-box .text-input label {
		font-size: 0.9em;
		padding: 0;
	}
}

div.search-chk-box label {
	font-size: 14px;
    line-height: 2.2;
}

div.search-chk-box label > input[type='checkbox'] {
	font-size: inherit;
	line-height: inherit;
    margin-left: -25px !important;
	margin-block: calc((1lh - 1.0em) / 2);
	block-size: 1.0em;
	inline-size: 1.0em;
	vertical-align: bottom;
}

.search-list-box {
	text-align: center;
	margin: 0 auto 120px auto;
}

/* prof-list-buttons */
.prof-list-buttons {
	margin-top: 15px;
	margin-bottom: 15px;
	gap: 10px;
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}

.prof-list-buttons button {
	padding: 12px 20px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1em;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	width: fit-content;
	block-size: fit-content;
}

.prof-list-buttons button:hover {
	-webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0.7;
}

/* mui-textfield */
.mui-textfield>textarea {
	border: 1px solid rgba(0, 0, 0, 0.26) !important;
	padding: 5px !important;
    border-radius: 3px 3px 3px 3px !important;
}
.mui-textfield>textarea {
	overflow: hidden;
	overflow-wrap: break-word;
	resize: horizontal;
	min-height: 100px;
	max-width: 100% !important;
	resize: none;
}
.mui-textfield>label, 
.mui-select>label {
	color: #848484;
	font-size: 14px;
	overflow: visible !important;
	
}
.valid-text {
	font-size: 14px;
}
@media (max-width: 768px) {
	.valid-text {
		font-size: 12px;
	}
}
	/**
   * Footer CSS
   */
div#footer_link{
	margin:0 auto;
}
div#footer_link a {
  color: rgba(0,0,0,.54);
  font-size: .9em;
	/* font-size: 0.9rem;  */
}
footer {
	box-sizing: border-box;
	height: 50px;
	background-color: #eee;
	border-top: 1px solid #e0e0e0;
	line-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7em;
	white-space: nowrap;
	/* text-align: center; */
}

#page-top {
	position: fixed;
	right: 15px;
	bottom: 60px;
	z-index: 2;
}
#page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #07084D;
	border-radius: 5px;
	width: 102px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1em;
	transition: all 0.3s;
	/* opacity: 0.8; */
}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}

@media (max-width: 768px) {
	#page-top {
		right: 5px;
	}
	#page-top a {
		width: 60px;
		height: 60px;
		font-size: 0.7em;
		transition: all 0.3s;
		/* opacity: 0.8; */
	}
}
/**
* srch_table CSS
*/

.srch_table{
	margin-bottom: 0;
}
.srch_table td.td_src_item{
	vertical-align: bottom;
	width:80%;
}
.srch_table td.td_src_btn{
	text-align: center;
	vertical-align: bottom;
	width:20%;
}
.srch_table td.td_src_detail{
	text-align: left;
	vertical-align: top;
	width:30%;
}

.srch_table .mui-textfield,
	.srch_table .mui-select {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.srch_table th,
	.srch_table td{
		display: block;
		text-align: left;
	}
	.srch_table td.td_src_item,
	.srch_table td.td_src_btn{
		width:100%;
	}
	.srch_table td.td_src_detail{
		width:95%;
	}
}

/**
* pager CSS
*/
.tp_list {
	position: relative;
}
.tp_list_count {
	position: absolute;
	top: 0px;
	left: 0px;
}
.tp_list_count_cur {
	color: #3d96fb;
	font-size: 18px;
}
.tp_list_count_sel {
	position: absolute;
	top: 0px;
	left: 0px;
}
.tp_list_pager {
	text-align: center;
	white-space: nowrap;
}
@media (max-width: 768px) {
	.tp_list_pager {
		margin: 40px auto;
		font-size: 12px;
	}
}
.tp_list_pager_box {
	color: #3d96fb;
	padding: 0.2em 0.5em;
	border: 1px solid #3d96fb;
	cursor: pointer;
	opacity: 1;
	-webkit-transition: opacity 0.300s ease;
			transition: opacity 0.300s ease;
}
.tp_list_pager_box:hover {
	text-decoration: none;
	opacity: 0.7;
}
.tp_list_pager_inactive {
	color: #333333;
	background: #f0f0f0;
	border: 1px solid #333333;
	cursor: default;
}
.tp_list_pager_cur {
	color: #333333;
	border: 1px solid #333333;
	cursor: default;
}
.tp_list_section {
	width: 100%;
	border: 1px solid #666666;
	display: table;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.tp_list_section_row {
	display: table-row;
	background: #ffffff;
}
.tp_list_section_row:nth-child(odd) {
	background: #f0f0f0;
}
.tp_list_section_row:first-child {
	color: #ffffff;
	background: #666666;
}
.tp_list_section_column {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	border-left:1px solid #cccccc;
}
.tp_list_section_column_inner {
	padding: 1em 0em;
}
.tp_list_section_column_btn {
	width:370px;
}
.tp_list_section_column_time {
	width: 100px;
}

/* student-list */
.student-list-main {
	margin: 20px auto;
}
.student-list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  column-gap: 10px;
  row-gap:10px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.student-card {
  padding-bottom: 10px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  width: 99%;
  text-align: center;
}

.student-card button {
	padding: 12px 20px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 1em;
	width: 30%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	background-color: #07084D;
	color: white;
}

.student-card button:hover {
	-webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
	opacity: 0.7;
}

@media screen and (min-width: 768px) and (max-width: 991.9px){
	.student-card {
		width: 48%;
	}
}
@media screen and (min-width: 992px){
	.student-card {
		width: 32%;
	}
}
.student-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.student-info {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.face_image{
	width: 150px;
	display: block;
	clear: both;
}
  
.ico_require::after {
	content: "必須入力";
	color: #FF0000;
	font-size: 14px;
	/* font-weight: bold; */
	min-width: 10px;
	padding: 3px 7px;
	/* margin: 0px 5px; */
	/* line-height: 1; */
	/* vertical-align: middle; */
	align-items: center;
	white-space: nowrap;
	text-align: center;
	border-radius: 10px;
	display: inline-block;
  }

.tp_noread:before{
	content: "未読";
	background-color: #FF9100;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	min-width: 10px;
	padding: 3px 7px;
	margin: 0px 5px;
	line-height: 1;
	vertical-align: middle;
	white-space: nowrap;
	text-align: center;
	border-radius: 10px;
	display: inline-block;
}

table.mui-table td.td_date{
	width: 20%;
}

/* 一覧 横スクロール */
.scrollable-table {
    max-width: 100%;
    overflow: auto;
    display: block;
}

/* 一覧 */
table.list_member_table{
	width: 100%;
	padding:0;
	margin:1em auto;
	border-collapse:collapse;
}
.list_member_table th,
.list_member_table td{
	border: 1px solid #CCC;
	padding: 1em;
}
.list_member_table th{
	color: #333;
	font-weight: bold;
	text-align: center !important;
	background-color: #CCC;
	color: #333;
	border: 1px solid #CCC;
	border-right: 1px solid #fff !important;
	border-left: 1px solid #fff !important;
	border-bottom: 1px solid #fff !important;
}
.list_member_table td:before {
	display: block;
	float: left;
	height: 1em;
	content: "";
}

/* 編集 */
/* 編集_member画面用 */
table.edit_table_mem{
	/* width: 80%; */
	padding:0;
	margin:0 0;
	border-collapse:collapse;
}
table.edit_table_mem td{
	text-align: left;
}
@media screen and (max-width: 768px) {
	table.edit_table_mem{
		width: 100%;
	}
}

table.edit_table{
	width: 100%;
	padding:0;
	margin:0 auto;
	border-collapse:collapse;
}
@media screen and (max-width: 768px) {
	.edit_table th,
	.edit_table td{
		display: block;
		text-align: left;
	}
	table.edit_table td.td_02{
		padding: 10px 0px;
		padding-left:0;
	}
}
@media print, screen and (min-width: 769px) {

	table.edit_table th{
		width: 20%;
	}
	table.edit_table th.th_basic{
		width: 20%;
	}
	table.edit_table td.td_02{
		padding: 10px 0px;
		padding-left:20px;
		padding-right:20px;
	}
	table.edit_table td.td_03{
		padding: 10px 0px;
		padding-left:20px;
		padding-right:20px;
		width: 30%;
	}
}

table.edit_table th{
	background-color:#eeeeee;
}

table.edit_table th.th_basic{
	background-color:#303F9F;
}

table.edit_table th.th_01{
	padding:10px 10px;
	text-align:left;
	border-bottom:3px solid #ffffff;
}

table.edit_table th.th_02{
	height:70px;
	text-align:left;
	border-bottom:3px solid #ffffff;
}

table.edit_table th.admin{
	background:#ffdee5;
}

table.edit_table td.td_01{
	padding: 10px 0px;
	width:58px;
	text-align:right;
}

table.edit_table td.td_02{
	vertical-align:middle;
}

/*入力フォーム用*/
table.edit_table.input_part{
	margin-bottom:5px;
}
.ebnabled_area {
	margin-bottom:5px;
	
}
/*追従保存ボタン*/
 @media screen and (max-width: 768px) {
	#fix_btn_area{
		/* top: 40%; */
		display: none;
	}
}
@media screen and (min-width: 769px) {
	#fix_btn_area{
		/* background-color: #dde7ff; */
		background-color: rgba(221, 231, 255, 0.8);
		border: double 3px #ccc;
		padding: 5px 5px;
		position: fixed;
		right: 0%;
		top: 50%;
		width: 120px;
		/* opacity: 0.8; */
		font-size: 0.8em;
	}
	#fix_btn_area .button{
		opacity: 1;
	}
}

/* 一括アップロード */
table.tbl-ad-code{
    width: 100%;
    max-width: 100%;
}
table.tbl-ad-code th{
	padding:3px 10px;
	white-space:nowrap;
	background-color:#505050;
	color:#fff;
}
table.tbl-ad-code td{
	padding:3px 10px 6px 10px;
	border-bottom:1px solid #eee;
	border-right:1px solid #eee;
}
table.tbl-ad-code td:first-child{
	border-left:1px solid #eee;
}

.input_ad_pdf_title{
	width:150px;
	border: 1px solid rgba(0, 0, 0, 0.26) !important;
	padding: 5px !important;
	border-radius: 3px 3px 3px 3px !important;
}

/* rireki_table */
.rireki_table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
	max-width: 100%;
	text-align: center;
  }
  .rireki_table th, .rireki_table td {
	border: 2px solid #CCC;
	padding: 1em;
  }
  .rireki_table thead th {
	background-color: #CCC;
	color: #333;
	border: 2px solid #CCC;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
  }
  .rireki_table thead th:last-of-type {
	border-right: 2px solid #CCC;
  }
  .rireki_table tbody th {
	color: #333;
	font-weight: bold;
	text-align: center;
  }
  @media screen and (max-width: 787px) {
	.rireki_table {
	  text-align: left;
	}
	.rireki_table thead {
	  display:none;
	}
	.rireki_table th, .rireki_table td {
	  display: block;
	  border: 0;
	  border-bottom: 2px solid #CCC;
	}
	.rireki_table tbody th{
	  background: #CCC;
	  color:#333;
	}
	.rireki_table td::before{
	  content: attr(data-label);
	  color: #333;
	  font-weight: bold;
	  display: inline-block;
	  width: 100%;
	  min-width: 100%;
	}
  }

  	/* switch_label */
	.switch_label {
		font-size: 14px;
		display: flex;
		align-items: center;
		width: 200px;
		white-space: nowrap;
		margin-left: 5px;
	}
	.switch_label_on{
		font-size: 14px;
		display: flex;
		align-items: center;
		width: 200px;
		white-space: nowrap;
	}
	@media screen and (max-width: 787px) {
		.switch_label,
		.switch_label_on{
			width: 100px;
		}
	}
	.switch_label .switch {
		position: relative;
	}
	.switch_label .switch > input[type='checkbox'] {
		position: absolute;
		width: 0;
		height: 0;
	}
	.switch_label .base {
		width: 56px;
		border-radius: 15px;
		height: 32px;
		background-color: #ddd;
	}
	.switch_label .title {
		color: #848484;
		margin-left: 4px;
	}
	.switch_label_on .title_on {
		color: #07084D;
		margin-left: 4px;
	}
	.switch_label .circle {
		position: absolute;
		top: 4px;
		left: 4px;
		width: 24px;
		height: 24px;
		border-radius: 12px;
		background-color: white;
		transition: 0.5s;
	}
	.switch_label .switch_label.switch > input:checked ~ .base {
		background-color: #9AB8FF;
		transition: 0.5s;
	}
	.switch_label .switch > input:checked ~ .circle {
		transform: translateX(100%);
		background-color: #00267F;
	}
 /*----------------------------------------------------*/
/*【共通】共通部分*/
/*----------------------------------------------------*/
img{
	border:none;
}
img.example{
	vertical-align:middle;
}
a{
	text-decoration:none;
	color:#000000;
}

/*----------------------------------------------------*/
/*【共通】仕様頻度の高いもの*/
/*----------------------------------------------------*/
/*フロートクリア*/
.clear{
	clear:both;
}

/*ボールド*/
.bold{
	font-weight:bold;
}
/*赤色*/
.red{
	color:#ff0000;
}
/*緑色*/
.green{
	color:#009900;
}
/*表示を隠す*/
.hidden{
	display:none;
}
/*中央寄せ*/
.center{
	text-align:center;
}

/*文字修飾 シンボル*/
.symbol{
	font-family: Symbol;
}

.gothic{
	font-family: "ＭＳゴシック",sans-serif;
}
/*----------------------------------------------------*/
/*【共通】width調整用*/
/*----------------------------------------------------*/
.width100p{
	width:98.5%;
}
.width100p_max{
	max-width:98.5%;
}

/*----------------------------------------------------*/
/*【共通】margin調整用*/
/*----------------------------------------------------*/
.mrgtop40{
	margin-top:40px;
}
.mrgtop120{
	margin-top:120px;
}

/*----------------------------------------------------*/
/*【共通】テキストボックス*/
/* widthは個別指定*/
/*----------------------------------------------------*/
/*テキストボックス*/
.txt_box{
	height:25px;
	padding:5px;
	border-radius: 5px 5px 5px 5px; /* 角を丸くする */
	border:1px solid #898989;
}
/*テキストエリア（文字修飾付き）*/
.txt_area{
	height:200px;
	padding:5px;
	border:1px solid #898989;
	border-radius: 5px 5px 5px 5px; /* 角を丸くする */
}

/*ラベルテキスト部分*/
.checkbox_label {
	padding    : 0px 15px 0px 10px;
	height     : 20px;
	overflow   : hidden;
	display    : inline-block;
	max-width  :500px;	/*体裁調整の為最大数設けた*/
}
/*----------------------------------------------------*/
/*【オープンウィンドウエリア】*/
/*----------------------------------------------------*/
/* タイトル*/
.openTitle{
	border-bottom: 2px solid #000000;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 5px 0px;
	font-weight: bold;
}

table.open_table{
	padding:0;
	margin:0 auto;
	border-collapse:collapse;
	width:700px;
}

table.open_table th{
	background-color:#eeeeee;
	padding: 10px;
	width:150px;
	text-align:left;
	border-bottom:3px solid #ffffff;
}
table.open_table th.th_01{
	border-bottom:none;
}

table.open_table td{
	padding: 10px;
	width:550px;
	max-width:550px;
	min-width:550px;
}

table.open_table a {
	color: #303F9F;
	text-decoration:none;
}

table.open_table a:hover {
	color: #303F9F;
	text-decoration:underline;
}

/* 送信対象の表 */
.send_to_table {
	display:table;
	border-collapse:collapse;
}
.send_to_table .col_header {
	text-align: center !important;
	background-color: #CCC;
	color: #333;
	border-right: 1px solid #fff !important;
	font-weight: bold;
}
.send_to_table .col_row {
	display:table-row;
}
.send_to_table .col_cell {
	display:table-cell;
	border:#CCC 1px solid;
	padding:10px;
}

/* profile */
.profile-section {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.profile-image-container {
	width: 30%;
	min-width: 200px;
	height: 200px;
	/* border-radius: 8px; */
	/* background-color: #ddd; */
	margin-right: 20px;
}

.profile-image-container img {
	width: 100%;
	height: 200px;
	/* object-fit: cover; */
	object-fit: contain;
	/* border-radius: 10px 10px 0 0; */
}

.profile-details {
	width: 70%;
}

/* プロフィール詳細 */
.view-group {
	display: flex;
	/* align-items: center; */
	margin-bottom: 10px;
	align-items: flex-start;
}

.view-group .col-index {
	font-size: 14px;
	width: 20%;
	min-height: 40px;
	line-height: 40px;
	text-align: center;
	color: #848484;
	/* background-color: #07084D; */
	/* font-weight: bold; */
	padding: 0 10px;
	min-width: 80px;
	/* whitespace: nowrap; */
}

.view-group .col-data {
	width: 80%;
	min-height: 40px;
	box-sizing: border-box;
    text-align: left;
	/* outline: none; */
	/* border: 1px solid #07084D; */
	padding: 8px;
	color: #07084D;
}

/* Responsive Design */
@media (max-width: 768px) {

	.profile-section {
		flex-direction: column;
	}
	
	.profile-image-container {
		width: 100%;
		margin-right: 0;
	}
	
	.profile-details {
		width: 100%;
	}
}

.pc {
	display: inline-block;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}