@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
	font-size: 16px;
	background: #E2EDF2 url(../images/bg_body.png) no-repeat center top 150px / contain;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.75;
}
pre{
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

li {
	list-style: none;
}

a:link, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}


.br::before {
	content: "\A";
	white-space: pre;
	font-family: "serif";
}

/** ヘッダー  **/
header {
	padding-left:2%;
	padding-right:2%;
}

.header_inner {
	background: #004098;
	margin: 20px 0%;
	min-width: 1000px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	border-radius: 30px;
	padding: 0 3%;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.header_left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-width: 430px;
}

.header_inner>p{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	padding-left: 10px;
	padding-right: 10px;
}
.header_inner>p:nth-of-type(2){
	min-width:240px;
	text-align: right;
}

a.button_toppage {
	color: #fff;
	line-height: 38px;
	height: 38px;
	padding: 0 20px 0 40px;
	border: 2px solid #fff;
	border-radius: 8px;
	margin-left: 20px;
	font-size: 16px;
	box-sizing: border-box;
}

a.button_toppage span {
	position: relative;
}

a.button_toppage span::before {
	position: absolute;
	content: '';
	background: url(../images/icon_home.svg) no-repeat;
	width: 20px;
	height: 17px;
	top: 0;
	left: -25px;
}

a.button_toppage:hover {
	color: #004098;
	background: #fff;
	border: 2px solid #fff;
}

a.button_toppage:hover span::before {
	background: url(../images/icon_home_blue.svg) no-repeat;
}


a.button_logout {
	line-height: 38px;
	color: #fff;
	border-radius: 8px;
	padding: 0 20px;
	height: 38px;
	border: 2px solid #fff;
	box-sizing: border-box;
	font-size: 16px;
	min-width:128px;
}

a.button_logout:hover {
	color: #004098;
	background: #fff;
	border: 2px solid #fff;
}

header h1 {
	font-size: 22px;
	color: #fff;
	white-space: nowrap;
	line-height: 50px;
}

header h1.left {
	text-align: left;
	font-size: 42px;
}

header h1 img {
	margin-top: 30px
}

.header_button {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_button li {
	border-radius: 6px;
	width: 120px;
	height: 50px;
	text-align: center;
	line-height: 50px;
}

.header_button li a {
	border-radius: 6px;
	display: block;
	background: #ddd;
	color: #333;
	position: relative;
	padding-left: 20px;
}

.header_button li a::after {
	position: absolute;
	content: '';
	background: url("../images/icon_human.png")no-repeat left center;
	background-size: auto;
	width: 13px;
	height: 16px;
	left: 10px;
	top: 18px;
	background-size: contain;
}

.header_button li.type2 {
	margin-right: 10px;
}

.header_button li.type2 a {
	background: #ffeb99;
	padding-left: 30px;
}

.header_button li.type2 a::after {
	position: absolute;
	content: '';
	background: url("../images/icon_top.png")no-repeat left center;
	background-size: auto;
	width: 18px;
	height: 16px;
	left: 20px;
	top: 17px;
	background-size: contain;
}

.center_btn {
	justify-content: center;
	margin: 50px auto 0;
}

.center_btn.header_button li.type2 {
	margin: 0;
}

.center_btn.header_button li.type2 a {

	padding: 0;
}

.center_btn.header_button li.type2 a::after {
	display: none;
}


/*共通*/
.center {
	text-align: center;
}

.flex_area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex_area .flex_area_inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex_area .flex_area_inner input,
.flex_area .flex_area_inner select {
	margin-right: 5px;
	padding: 0 10px;

}

.flex_area_start {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.flex_area_end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.flex_area_end button:not(:first-of-type) {
	margin-left: 20px;
}


/* form設定 */
input {
	font-size: 16px;
	background: #FBFBFB;
	border: 1px solid #CCCCCC;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0 10px;
}

input[type="radio"],
input[type="checkbox"] {
	margin-top: -3px;
	width: 1.3em;
	height: 1.3em;
	margin-right: 5px;
	box-shadow: none;
}

select {
	background: #FBFBFB;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	font-size: 16px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	font-family: 'Noto Sans JP', sans-serif;
}

textarea {
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	width: 460px;
	font-size: 16px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px;
}

.txt_area {
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	box-sizing: border-box;
	background: #FBFBFB;
}

.w500 {
	width: 500px;
	height: 50px;
}

.w460 {
	width: 460px;
	height: 44px;
}

.w300 {
	width: 300px;
	height: 44px;
}

.w200 {
	width: 200px;
	height: 44px;
}

.w460_35 {
	width: 460px;
	height: 35px;
}

.wfull {
	width: 100%;

}

.middle {
	height: 44px;
}

.short {
	height: 35px;
}

.directory_input {
	height: 44px;
	width: 330px;
	margin-left: 10px;
}

.answer_area {
	display: flex;
	align-items: center;
	height: 44px;
	margin: 20px 0;
}

input#answer {
	margin-right: 30px;
	width: 20px;
	height: 20px;
}

input#answer_txt {
	display: none;
}

input#answer_txt.active {
	display: block;
}

/* table設定 */

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.table_type01 {
	display: table;
	table-layout: fixed;
	/* border-right: 1px solid #ddd;
	border-left: 1px solid #ddd; */
	border-bottom: 1px solid #ddd;

}

.table_type01 th {
	background: #ECECEC;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #000;
	font-weight: normal;
	text-align: center;
	padding: 10px 0;
	box-sizing: border-box;
	vertical-align: top;
	line-height: 1.5;
	border-right: 1px solid #ddd;
}

.table_type01 th:first-child {
	width: 15%;
	border-radius: 5px 0 0 0;
	border-left: 1px solid #ddd;
}

.table_type01 th:last-child {
	width: 15%;
	border-radius: 0 5px 0 0;
}

.table_type01 td {
	padding: 10px 15px;
	text-align: center;
	border-right: 1px solid #ddd;
	word-break: break-all;
}

.table_type01 .delete td {
	color:#ddd;
}

.table_type01 td:first-of-type {
	border-left: 1px solid #ddd;
}

.table_type01 td:last-child {
	width: 40%;
}

.table_type01 tr:nth-child(2n+1) td {
	background: #FBFBFB;
}

.table_type01 tr:nth-child(2n) td {
	background: #fff;
}

.table_type01 tr:hover td {
	background-color: #F1F6FE;
}


.table_type01 td span {
	font-size: 13px;
	color: #555555;
	text-align: center;
	display: block;
	background: #dddddd;
	border: 1px solid #aaaaaa;
	width: 90px;
	height: 26px;
	border-radius: 6px;
	line-height: 26px;
}
table .sankaku{
	display: inline-block;
	margin-left: 10px;
}
table .sankaku span{
	position: relative;
	padding-right: 15px;
}

table .sankaku span::before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 7.5px 0 7.5px;
	border-color: #022222 transparent transparent transparent;
	top: 3px;
	right: 0;

}

.bg_gray {
	background: #FBFBFB;
	padding: 20px 0;
	margin-bottom: 20px;
}

.bg_gray table {
	margin: 0 auto;
	width: 90%;
}

.bg_border {
	border: 2px solid #eee;
	padding: 20px 0;
	margin-bottom: 20px;
	background: #fff;
}

.bg_border table {
	width: 94%;
	margin: 5px auto 20px;
}

.bg_border .bg_gray {
	width: 94%;
	margin: 0 auto;
}

.bg_border .bg_gray table {
	margin: 0 auto;
}


.table_type02 {
	border-top: 1px solid #ddd;
}

.table_type02 tr {
	border-bottom: 1px solid #DDDDDD;
	display: flex;
	align-items: stretch;
}


.table_type02 th {
	background: #ECECEC;
	text-align: left;
	padding: 15px 20px;
	box-sizing: border-box;
	width: 25%;
	vertical-align: middle;
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

span.must {
	background: #DE4D4D;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
	border-radius: 2px;
	text-align: center;
	vertical-align: middle;
	width: 36px;
	height: 18px;
	line-height: 18px;
}

.table_type02 td {
	padding: 15px 20px;
	line-height: 1.8;
	background: #fff;
	width: 75%;
	box-sizing: border-box;
	overflow-wrap: break-word;
    word-break: break-word;
}

.table_type02 td span.note {
	display: block;
	margin: 5px 0 0 0;
	font-size: 14px;
}

.table_type02 .cat_ttl {
	background: #ddd;
	padding: 5px;
	text-align: center;
}

.table_type02 .cat_ttl.mt15 {
	margin-top: 10px;
}

th.txtarea_ttl {
	padding: 15px 0 15px 30px;
	width: 100%;
}

.table_type02 td.max {
	width: 100%;
}

/* B015 */

.table_type02.half{
	width: 49%;	
}

.table_type02.half th{
	width: 35%;	
	justify-content: center;
	padding: 15px 0;
}


.table_type02.half.center th{
	justify-content: center;
	background: #1e9357;
	color: #fff;
}
.table_type02.half.center th:nth-child(1),
.table_type02.half.center td:nth-child(1){
	border-right: 1px solid #DDDDDD;
	width: 30%;
}
.table_type02.half.center th:nth-child(2),
.table_type02.half.center td:nth-child(2){
	
	width: 70%;
}


/* ボタン設定 */

button {
	cursor: pointer;
	border: none;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	position: relative;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

button a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
}

.button_serch {
	background: #238AD5;
	text-indent: -9999999px;
	width: 44px;
	height: 44px;
	padding-left: 10px;
	border-radius: 5px;

}

.button_serch:hover {
	background: #51B6FF;
}

.button_serch::before {
	position: absolute;
	content: '';
	background: url("../images/icon_megane.svg") no-repeat center left;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-size: contain;
}

.button.up,
.button.dl {
	width: 200px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	padding-left: 20px;
	background: #238AD5;
	color: #fff;
}

.button.up:hover,
.button.dl:hover {
	background: #51B6FF;
}

.button.up::before {
	position: absolute;
	content: '';
	background: url("../images/icon_up.svg") no-repeat center left;
	width: 15px;
	height: 14px;
	left: 15px;
	top: 19px;
	background-size: contain;
}

.button.dl::before {
	position: absolute;
	content: '';
	background: url("../images/icon_dl.svg") no-repeat center left;
	width: 15px;
	height: 14px;
	left: 15px;
	top: 19px;
	background-size: contain;
}

.button_add {
	width: 160px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	padding-left: 20px;
	background: #004098;
	border: none;
	color: #fff;
}

.button_add a {
	color: #fff;
}

.button_add:hover {
	background: #156EE8;
}

.button_add::before {
	position: absolute;
	content: '';
	background: #fff;
	width: 16px;
	height: 2px;
	left: 24px;
	top: 50%;
}

.button_add::after {
	position: absolute;
	content: '';
	background: #fff;
	width: 2px;
	height: 16px;
	left: 31px;
	top: calc(50% - 7px);
}


.button1 {
	color: #fff;
	text-align: center;
	font-size: 20px;
	background: #004098;
	box-sizing: border-box;
	width: 260px;
	height: 60px;
	margin: 30px auto;
	display: block;
}

.button1 a {
	color: #fff;
	font-size: 20px;
	line-height: 60px;
}

.button1:hover {
	background: #156EE8;
	color: #fff;
}

.button2 {
	color: #fff;
	text-align: center;
	font-size: 16px;
	box-sizing: border-box;
	width: 130px;
	height: 46px;
	border: none;
	margin: 0;
	display: block;
}

/* 削除 */
.button2.delate {
	background: #333;
	line-height: 46px;
}

.button2.delate:hover {
	background: #666666;
}

/* 修正 */
.button2.fix {
	background: #238AD5;
}

.button2.fix:hover {
	background: #51B6FF;
}

.button_wrapper_inner button:last-of-type {
	margin-left: 15px;
}

.button2.delete2{
	line-height: 1.8;
    height: auto;
    background-color: #333;
    width: auto;
    font-size: 10px;
    position: absolute;
	top:0;
	right:0;
	border-radius:0 0 0 4px;
}
.button2.delete2:hover{
	background-color: #666;
}

/* 一覧へ戻る */
.button3 {
	color: #333;
	text-align: center;
	font-size: 16px;
	box-sizing: border-box;
	width: 260px;
	height: 46px;
	margin: 80px auto 0;
	display: block;
	line-height: 46px;
	background: #fff;
}

.button3:hover {
	background: #004098;
	color: #fff;
}

.button3 a {
	color: #333;
}

.button3:hover a {
	color: #fff;
}

.button_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.button_wrapper.w600{
	max-width: 600px;
	margin: 0 auto;
}

.button_wrapper_inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.button_wrapper .button1 {
	margin: 0;
}

.button_wrapper .button3 {
	margin: 0;
}

a.link_center {
	display: block;
	margin: 50px auto 0;
	color: #555;
	text-decoration: underline;
	text-align: center;
	font-size: 20px;
}

a.link_center:hover {
	text-decoration: none;
}

.management_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.management_btn li {
	width: 48%;
}

.management_btn li.full {
	width: 100%;
}

.management_btn li a {
	background: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100px;
	margin-bottom: 20px;
	border-radius: 4px;
	color: #222;
	transition: 0.3s;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.management_btn li a:hover {
	background: #004098;
	color: #fff;
	text-decoration: none;
}

.management_btn li a span {
	position: relative;
	padding-left: 65px;
	line-height: 1.3;
}

.management_btn li a span::before {
	position: absolute;
	content: '';
	left: 0;
	top: calc(50% - 20px);
}

.management_btn li.shop a span::before {
	background: url("../images/icon_shop.svg") no-repeat left center;
	width: 43px;
	height: 40px;
	background-size: contain;
}

.management_btn li.shop a:hover span::before {
	background: url("../images/icon_shop_wh.svg") no-repeat left center;
}

.management_btn li.pen a span::before {
	background: url("../images/icon_pen.svg") no-repeat left center;
	width: 45px;
	height: 40px;
	background-size: contain;
}
.management_btn li.movie a span::before {
	background: url("../images/icon_movie.svg") no-repeat left center;
	width: 44px;
	height: 32px;
	background-size: contain;
}
.management_btn li.movie a:hover span::before {
	background: url("../images/icon_movie_wh.svg") no-repeat left center;
}
.management_btn li.seminar a span::before {
	background: url("../images/icon_seminar.svg") no-repeat left center;
	width: 48px;
	height: 40px;
	background-size: contain;
}
.management_btn li.seminar a:hover span::before {
	background: url("../images/icon_seminar_wh.svg") no-repeat left center;
}


.management_btn li.pen a:hover span::before {
	background: url("../images/icon_pen_wh.svg") no-repeat left center;
}

.management_btn li.team span {
	padding-left: 80px;
}

.management_btn li.team a span::before {
	background: url("../images/icon_team.svg") no-repeat left center;
	width: 56px;
	height: 33px;
	background-size: contain;
	top: calc(50% - 16px);
}

.management_btn li.team a:hover span::before {
	background: url("../images/icon_team_wh.svg") no-repeat left center;
}

.management_btn li.background a span::before {
	background: url("../images/icon_background.svg") no-repeat left center;
	width: 56px;
	height: 33px;
	background-size: contain;
	top: calc(50% - 16px);
}

.management_btn li.background a:hover span::before {
	background: url("../images/icon_background_wh.svg") no-repeat left center;
}

.management_btn li.bill a span::before {
	background: url("../images/icon_bill.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.bill a:hover span::before {
	background: url("../images/icon_bill_wh.svg") no-repeat left center;
}

.management_btn li.category a span::before {
	background: url("../images/icon_category.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.category a:hover span::before {
	background: url("../images/icon_category_wh.svg") no-repeat left center;
	background-size: contain;
}

.management_btn li.links a span::before {
	background: url("../images/icon_links.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.links a:hover span::before {
	background: url("../images/icon_links_wh.svg") no-repeat left center;
	background-size: contain;
}

.management_btn li.partners a span::before {
	background: url("../images/icon_partners.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.partners a:hover span::before {
	background: url("../images/icon_partners_wh.svg") no-repeat left center;
	background-size: contain;
}

.management_btn li.privacypolicy a span::before {
	background: url("../images/icon_privacypolicy.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.privacypolicy a:hover span::before {
	background: url("../images/icon_privacypolicy_wh.svg") no-repeat left center;
	background-size: contain;
}

.management_btn li.note span {
	padding-left: 50px;
}

.management_btn li.note a span::before {
	background: url("../images/icon_note.svg") no-repeat left center;
	width: 34px;
	height: 44px;
	background-size: contain;
	top: calc(50% - 22px);
}

.management_btn li.note a:hover span::before {
	background: url("../images/icon_note_wh.svg") no-repeat left center;
}

.management_btn li.key span {
	padding-left: 40px;
}

.management_btn li.key a span::before {
	background: url("../images/icon_key.svg") no-repeat left center;
	width: 22px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.key a:hover span::before {
	background: url("../images/icon_key_wh.svg") no-repeat left center;
}

.management_btn li.gnavi a span::before {
	background: url("../images/icon_gnavi.svg") no-repeat left center;
	width: 36px;
	height: 40px;
	background-size: contain;
	top: calc(50% - 20px);
}

.management_btn li.gnavi a:hover span::before {
	background: url("../images/icon_gnavi_wh.svg") no-repeat left center;
	background-size: contain;
}



/** ポップアップ A006 **/
.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}

.popup.is-show {
	opacity: 1;
	visibility: visible;
}

.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 600px;
	padding: 50px;
	background-color: #fff;
	z-index: 2;
	border: #707070 solid 5px;
}

.popup-inner h3 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 30px;
}

.popup-inner ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-inner ul li a {
	background: #004BB1;
	display: block;
	padding: 10px 30px;
	border-radius: 20px;
	color: #fff;
	font-weight: bold;
	margin: 0 15px;
}

.close-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}

.close-btn i {
	font-size: 20px;
	color: #333;
	font-style: normal;
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	z-index: 1;
	cursor: pointer;
}


/** メイン  **/
main {
	width: 1000px;
	margin: 0 auto 100px;
	display: block;
	min-height: calc(100vh - 180px - 100px);
}

main h2 {
	color: #222222;
	font-size: 40px;
	text-align: center;
	margin: 60px 0 40px;
	letter-spacing: 0.05em;
}


main h3.square {
	font-size: 32px;
	font-weight: bold;
	color: #004098;
}

main .main_block {
	background: #fff;
	padding: 60px 30px 30px;
	margin-bottom: 50px;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

main .main_block table {
	box-shadow: none
}

main .main_block h3.square {
	margin-top: -30px;
}



p strong {
	font-size: 20px;
}

.txt01 {
	font-size: 18px;
	color: #595757;
	text-align: left;
	display: block;
	margin-bottom: 5px;
}

.login_area {
	width: 500px;
	margin: 0 auto;
}

.select_img {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.select_img li {
	width: calc(100% / 5 - 10px);
	margin-bottom: 20px;
}

.select_img li:not(:nth-of-type(5n)) {
	margin-right: 10px;
}

.select_img li img {
	border: 4px solid #fff;
	max-width: 150px;
	max-height: 150px;
}

.select_img li img:hover {
	border: 4px solid #238AD5;
}


/* ページャー */
.pager {
	display: flex;
	margin: 0 0 0 auto;
	justify-content: flex-end;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	/* max-width: 240px; */
	box-sizing: border-box;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	padding-left: 10px;
}

.pager li {
	font-size: 20px;
	text-align: center;
	/* width: calc(100% / 6); */
width:40px;
}

.pager li:first-of-type {
	border-radius: 4px 0 0 4px;
}

.pager li:last-of-type {
	border-radius: 0 4px 4px 0;
}

.pager li.active {
	background: #004098;
	color: #fff;
}

.pager li.arrow {
	background: #fff;
	position: relative;
}

.pager li.arrow::before {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #004098;
	border-right: 2px solid #004098;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: calc(50% - 4px);
	left: 13px;
}

.pager li a {
	display: block;
	color: #222;
	background: #fff;
	height: 100%;
	border-right: 1px solid #ddd;
}

.pager li a:hover {
	text-decoration: none;
	background: #F1F6FE;
}



/* 注意書き */
.attention {
	border: 3px solid #004098;
	padding: 10px;
	max-width: 700px;
	margin: 100px auto;
}

.attention p {
	color: #000;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}




/* 登録フォーム */

.original_file_btn {
	border: none;
	display: inline-block;
	padding: 5px 10px;
	position: relative;
	color: #fff;
	/* float: left; */
	background: #238AD5;
	border-radius: 5px;
}

.original_file_btn input[type="file"] {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	color: #fff;
	border-radius: 5px;
}

.original_upload_btn {
	margin-bottom: 10px;
}

.thumbnailwrap {
	color: #777777;
}

.thumbnailwrap_movie {
	margin-top: 10px;
}

.thumbnailwrap_movie input {
	margin-left: 10px;
}

.thumbnailwrap img,
.thumbnailwrap_movie img {
	max-width: 180px;
	max-height: 60px;
	width: auto;
	height: auto
}



.radio-input {
	display: none;
}

.radio-input+label {
	padding-left: 20px;
	position: relative;
	margin: 20px 0 25px 90px;
	display: block;
	color: #595757;
}

.radio-input+label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 2px solid #595757;
	border-radius: 50%;
}


.radio-input:checked+label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 2px solid #ed1c24;
	border-radius: 50%;
}

.radio-input:checked+label::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 11px;
	height: 11px;
	background: #d01137;
	border-radius: 50%;
}

.thumbnailwrap {
	display: none;
}

.thumbnailwrap.show {
	display: inline-block;
}

#bglist {
	display: flex;
	flex-wrap: wrap;
}

#bglist li {
	list-style: none
}

#bglist li label {
	position: relative;
	display: block
}

#bglist li label img {
	width: 200px;
	height: auto;
	display: block
}

#bglist input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgb(255 255 255 / 0.75);
	margin: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block
}

#bglist input[type="radio"]:checked {
	background-color: rgb(255 255 255 / 0);
}

#bglist input[type="radio"]:focus {
	outline: none;
}

.pdf_btn {
	float: right;
	margin-top: -100px;
}

.pdf_btn a {
	display: block;
	font-size: 13px;
	color: #555;
	border: 1px solid #b4091e;
	border-radius: 8px;
	padding: 5px 10px;
}

.pdf_btn span {
	padding-left: 20px;
	position: relative;
}

.pdf_btn span::before {
	position: absolute;
	content: '';
	background: url("../images/icon_pdf.png")no-repeat center left;
	background-size: contain;
	left: 0;
	top: 2px;
	width: 13px;
	height: 15px;
}

.choice_box {
	display: none;
	margin: 10px 0;
}

.choice_box input {
	margin: 0 0 5px 5px;
}

.choice_box textarea {
	margin: 0 0 5px 5px;
}

.choice_box span {
	display: inline-block;
	vertical-align: top;
}

.d {
	display: inline-block;
}

.e {
	display: none;
}

.anim {
	display: inline-block;
}

.anim:hover {
	animation: shake 500ms ease-in-out forwards;
}

.tooltip {
	position: relative;
	margin: 0;
	padding: 0;
}

.tooltip::before,
.tooltip::after {
	position: absolute;
	content: '';
	/*opacity: 0;*/
	transition: all 0.4s ease;
	animation-name: fade02;
	animation-duration: 0.8s;
	animation-timing-function: ease;
}

.tooltip::before {
	border-width: 10px 8px 0 8px;
	border-style: solid;
	border-color: #f4f4f4 transparent transparent transparent;
	bottom: 20px;
	transform: translateY(-3000px);
}

.tooltip::after {
	content: attr(data-tooltip);
	background: #f4f4f4;
	width: 230px;
	height: auto;
	font-size: 13px;
	bottom: 30px;
	left: -130px;
	padding: 1em 1em 2em;
	transform: translateY(-3000px);
	color: #555555;
}

.tooltip:hover::before,
.tooltip:hover::after {
	/*opacity: 1;*/
	transform: translateY(-2px);
	animation-name: fade;
	animation-duration: 0.5s;
	animation-timing-function: ease;
}


/*B006*/
.item {
	width: 300px;
	height: auto;
}

.item img {
	width: 300px;
	height: 200px;
	object-fit: none;
	display: block;
	margin: 0 auto;
	border: 1px solid #cccccc;
}

.item p {
	text-align: left;
	font-size: 16px;
	margin: 10px 0 30px;
}

.item a p {
	color: #333;
}

.item div button {
	display: block;
	margin: 0 auto;
}

.item div span {
	background: #999999;
	color: #fff;
	width: 200px;
	height: 32px;
	line-height: 32px;
	border-radius: 6px;
	text-align: center;
	display: block;
}

.item a:hover {
	opacity: 0.7;
	text-decoration: none;
}

.item.recommended {
	position: relative;
}

.item.recommended::before {
	position: absolute;
	content: 'おすすめ商品';
	color: #b4091e;
	font-size: 12px;
	border: 1px solid #b4091e;
	width: 80px;
	height: 24px;
	border-radius: 6px;
	top: -30px;
	right: 0;
	line-height: 24px;
	text-align: center;
}

.item_add {
	border: 1px solid #cccccc;
	background: #f4f4f4;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.item_add button {
	color: #333333;
	width: 300px;
	height: 200px;
	display: block;
	line-height: 200px;
	padding-top: 20px;
	box-sizing: border-box;
	font-weight: bold;
}

.item_add::before {
	position: absolute;
	content: '';
	background: url("../images/icon_plus2.png")no-repeat top center;
	background-size: contain;
	width: 30px;
	height: 30px;
	top: 50px;
	left: calc(50% - 15px);
}




footer {
	background: #fff;

}

footer p {
	padding: 10px 0;
	color: #999999;
	text-align: center;
}


/*新規追加css*/
@keyframes fade {
	0% {
		opacity: 0;
	}

	60% {
		opacity: 0.05;
	}

	80% {
		opacity: 0.85;
	}

	90% {
		opacity: 0.95;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade02 {
	0% {
		opacity: 0.1;
	}

	5% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}
}

/*000*/
.mt000_top {
	width: 500px;
	height: auto;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	/*background:linear-gradient(#fff, #f5f5f6);*/
	padding: 0 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}




/*----------------------------------------------------
      強制スペース
  ----------------------------------------------------*/
.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mt60 {
	margin-top: 60px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.mt100 {
	margin-top: 100px !important;
}

.ml30 {
	margin-left: 30px !important;
}



/*****************
 主催者css .organizer 
 ******************/
body.organizer {
	background: #E2F2EB url(../images/bg_body.png) no-repeat center top 150px / contain;
}

body.organizer .header_inner {
	background: #1E9357;
}


body.organizer a.button_toppage:hover {
	color: #1E9357;
	background: #fff;
	border: 2px solid #fff;
}

body.organizer a.button_toppage:hover span::before {
	background: url(../images/icon_home_green.svg) no-repeat;
}

body.organizer a.button_logout:hover {
	color: #1E9357;
	background: #fff;
	border: 2px solid #fff;
}


body.organizer .button.up,
body.organizer .button.dl {
	background: #87BE05;
}

body.organizer .button.up:hover,
body.organizer .button.dl:hover {
	background: #B5E14E;
}

body.organizer .button_add {
	background: #1E9357;
}

body.organizer .button_add:hover {
	background: #31BC75;
}

body.organizer .button1 {
	background: #1E9357;
}

body.organizer .button1:hover {
	background: #31BC75;
}

body.organizer .button2.fix {
	background: #87BE05;
}

body.organizer .button2.fix:hover {
	background: #B5E14E;
}

body.organizer .button3:hover {
	background: #1E9357;
}

body.organizer .management_btn li a:hover {
	background: #1E9357;
}

body.organizer .management_btn li.shop a span::before {
	background: url("../images/icon_shop_green.svg") no-repeat left center;

}

body.organizer .management_btn li.shop a:hover span::before {
	background: url("../images/icon_shop_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.pen a span::before {
	background: url("../images/icon_pen_green.svg") no-repeat left center;

}

body.organizer .management_btn li.pen a:hover span::before {
	background: url("../images/icon_pen_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.team a span::before {
	background: url("../images/icon_team_green.svg") no-repeat left center;

}

body.organizer .management_btn li.team a:hover span::before {
	background: url("../images/icon_team_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.bill a span::before {
	background: url("../images/icon_bill_green.svg") no-repeat left center;

}

body.organizer .management_btn li.bill a:hover span::before {
	background: url("../images/icon_bill_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.note a span::before {
	background: url("../images/icon_note_green.svg") no-repeat left center;

}

body.organizer .management_btn li.note a:hover span::before {
	background: url("../images/icon_note_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.key a span::before {
	background: url("../images/icon_key_green.svg") no-repeat left center;

}

body.organizer .management_btn li.key a:hover span::before {
	background: url("../images/icon_key_wh.svg") no-repeat left center;
}

body.organizer .management_btn li.pp a span::before {
	background: url("../images/icon_pp_green.svg") no-repeat left center;
	width: 47px;
    height: 40px;
}

body.organizer .management_btn li.pp a:hover span::before {
	background: url("../images/icon_pp_wh.svg") no-repeat left center;
}

body.organizer h3.square {

	color: #1E9357;
}

body.organizer .pager li.active {
	background: #1E9357;

}

body.organizer .pager li.arrow::before {
	border-top: 2px solid #1E9357;
	border-right: 2px solid #1E9357;
}

body.organizer .pager li a:hover {
	background: #DFFFEF;
}

body.organizer .table_type01 tr:hover td {
	background-color: #DFFFEF;
}

body.organizer .original_file_btn {
	background: #87BE05;
}

.color-block {
	height: 15px;
	width: 25px;
	background: #ff0000;
	display: inline-block;
}




/*****************
 出展社css .exhibitor
 ******************/
 body.exhibitor {
	background: #FFF6F7 url(../images/bg_body.png) no-repeat center top 150px / contain;
	word-break: break-all;
}

body.exhibitor .header_inner {
	background: #BF192C;
}


body.exhibitor a.button_toppage:hover {
	color: #BF192C;
	background: #fff;
	border: 2px solid #fff;
}

body.exhibitor a.button_toppage:hover span::before {
	background: url(../images/icon_home_red.svg) no-repeat;
}

body.exhibitor a.button_logout:hover {
	color: #BF192C;
	background: #fff;
	border: 2px solid #fff;
}


body.exhibitor .button.up,
body.exhibitor .button.dl {
	background: #DC900D;
}

body.exhibitor .button.up:hover,
body.exhibitor .button.dl:hover {
	background: #FBB743;
}

body.exhibitor .button_add {
	background: #BF192C;
}

body.exhibitor .button_add:hover {
	background: #EC5566;
}

body.exhibitor .button1 {
	background: #BF192C;
}

body.exhibitor .button1:hover {
	background: #EC5566;
}

body.exhibitor .button2.fix {
	background: #DC900D;
}

body.exhibitor .button2.fix:hover {
	background: #FBB743;
}

body.exhibitor .button3:hover {
	background: #BF192C;
}

body.exhibitor .management_btn li a:hover {
	background: #BF192C;
}

body.exhibitor .management_btn li.shop a span::before {
	background: url("../images/icon_shop_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.shop a:hover span::before {
	background: url("../images/icon_shop_wh.svg") no-repeat left center;
}

body.exhibitor .management_btn li.pen a span::before {
	background: url("../images/icon_pen_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.pen a:hover span::before {
	background: url("../images/icon_pen_wh.svg") no-repeat left center;
}

body.exhibitor .management_btn li.team a span::before {
	background: url("../images/icon_team_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.team a:hover span::before {
	background: url("../images/icon_team_wh.svg") no-repeat left center;
}

body.exhibitor .management_btn li.bill a span::before {
	background: url("../images/icon_bill_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.bill a:hover span::before {
	background: url("../images/icon_bill_wh.svg") no-repeat left center;
}

body.exhibitor .management_btn li.note a span::before {
	background: url("../images/icon_note_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.note a:hover span::before {
	background: url("../images/icon_note_wh.svg") no-repeat left center;
}

body.exhibitor .management_btn li.key a span::before {
	background: url("../images/icon_key_red.svg") no-repeat left center;

}

body.exhibitor .management_btn li.key a:hover span::before {
	background: url("../images/icon_key_wh.svg") no-repeat left center;
}

body.exhibitor h3.square {

	color: #BF192C;
}

body.exhibitor .pager li.active {
	background: #BF192C;

}

body.exhibitor .pager li.arrow::before {
	border-top: 2px solid #BF192C;
	border-right: 2px solid #BF192C;
}

body.exhibitor .pager li a:hover {
	background: #FEE7E9;
}

body.exhibitor .table_type01 tr:hover td {
	background-color: #FEE7E9;
}

body.exhibitor .original_file_btn {
	background: #DC900D;
}

body.exhibitor .popup-inner ul li a{
	background: #BF192C;
}

/* js項目追加テーブル */
.table_type02.detail-create {
	box-shadow: none;
	border-top: 0;
	word-break: break-all;
}
.table_type02.detail-create > tbody {
	overflow: auto;
	position: relative;
}
.table_type02.detail-create > tbody > tr > td{
	padding: 0;
	/* width: 100%; */
	background: none;
}


.table_type02.detail-create > tbody > tr > td:nth-child(1){
	width: 100%;
}
.table_type02.detail-create > tbody > tr > td:nth-child(1):has(+ td){
	/* 確認画面は削除がいらないのでhas指定 */
	width: calc(100% - 150px);
}
.table_type02.detail-create > tbody > tr > td:nth-child(2){
	width: 130px;
	margin-left: auto;
	position: relative;
}
/* .table_type02.detail-create > tbody > tr > td:nth-child(2):empty{
	width: auto;
} */

.table_type02.detail-create > tbody > tr {
	border-bottom: 0;
	margin-bottom: 30px;
}
.table_type02.detail-create > tbody > tr:last-child{
	margin-bottom: 0;
}
.table_type02.detail-create > tbody > tr.ui-sortable-handle{
	cursor: all-scroll;
}

.table_type02.detail-create table{
	border-top: 1px solid #DDDDDD;
	margin-bottom: 0;
}
.table_type02.detail-create > tbody > tr > td:nth-child(2) .btn-line-delete{
	position: absolute;
	top:calc(50% - 20px);
	right: 0;
	transform: translateY(-50%);
}

.btn-line-add_wrap{
	text-align: center;
	margin-bottom: 30px;
}
#pdf_file_thumb a{
	color: #777777;
}
#pdf_file_thumb a:hover{
	text-decoration: underline;
}



/* 製品紹介一覧 */
.product_img{
	display: flex;
	flex-wrap: wrap;
}
.product_img li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 45px;
	text-align: center;
}
.product_img li:nth-child(3n){
	margin-right: 0;
}
.product_img li .product_img_p img{
	width: 320px;
	height: 250px;
	object-fit: contain;
	object-position: center center;
}
.product_img li .button1{
	width: 200px;
	height: 35px;
	margin-top: 15px;
	margin-bottom: 0;
}
.product_img li .button1 a{
	line-height: 35px;
	font-size: 16px;
}

.pagination_center .pager{
	margin: 0 auto;
}

.invalid-feedback{
	color:red;
	font-weight: bold;
}

.remark{
	width: 100%;
    display: block;
    font-size: 12px;
    font-weight: normal;
}
.alert{
	color:red;
	text-align:center;
	font-weight: bold;
}

.organizer .thumbnailwrap{
	position:relative;
}
.deleteimage{
	position:absolute;
	right:-10px;
	top:-10px;
	border-radius: 24px;
	background-color: #1E9357;
	color:#fff;
}

/*20230629追記*/
.question {
	position: relative;
}

th.question .question_icon {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.question_icon img {
	display: inline-block;
	padding-left: 5px;
	cursor: pointer;
}

.question_content {
	display: none;
}

.question_icon:hover + .question_content {
	display: block;
	position: absolute;
	top: calc(50% + 10px);
	border: 1px solid #999999;
	border-radius: 4px;
	padding: 10px;
	font-size: 14px;
	background: #fff;
	width: 100%;
	left: -10px;
	z-index: 99;
	font-weight: normal;
	box-sizing: border-box;
}

td .question_content.boxChange {
	left: 10px;
}

.question_content h3 {
	font-weight: bold;
	font-size: 16px;
	color: #444444;
}

.question_content h3+p,
.question_content p+p {
	margin-top: 5px;
}

.question_content p {
	font-size: 14px;
	color: #444444;
}

.question_content p a {
	text-decoration: underline;
	color: #444444;
}

.question_content p a:hover {
	text-decoration: none;
}

.question_content p.red {
	color: #DE4D4D;
}

.original_file_btn img.td_question {
	position: absolute;
	top: calc(50% - 10px);
	right: 7px;
	z-index: 1;
	filter: brightness(0) invert(1);
}