@charset "UTF-8";

:root {
  --main-font: 14px/1.5 "游ゴシック";
  --main-font-mid: 15px/1.5 "游ゴシック";
  --main-font-large: 19px/1.5 "游ゴシック";
  --main-font-meiryo: 14px/1.5 "Meiryo UI";
  --main-font-meiryo-large: 19px/1.5 "Meiryo UI";
  --main-header: 54px;
  --main-table-head: 180px;
  --main-table-head-small: 140px;
  --main-table-height: 34px;
  --main-table-wide: 180px;
  --main-padding: 6px;
  --main-padding-small: 4px;
  --main-padding-large: 16px;
}

/*-all-setting-----------------------------------------------------*/
.html{
	overflow-x: hidden;
}
body {
	width: 100%;
	min-width: 320px;
	height: 100vh;
	cursor: default;
	color: var(--main-black);
	margin: 0 auto;
	padding: 0px;
	font: var(--main-font-mid);
	background-color: white;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	overflow-x: hidden;
}

.pc_only{
    display: none;
}
.sp_only{
    display: block !important;
}

table.list {
	width: 100%;
	max-width: 100%;
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
/*-content-sub------------------------------------------------------*/
#sub {
	display: none;
}
#sp-sub ul a .modal_del_wide {
	line-height: 2.5em;
}
/*-content-main------------------------------------------------------*/
#contents {
	width: 100%;
}
#container {
}
#main {
	min-width: auto;
	min-width: initial;
	width: 100%;
	padding: var(--main-padding-large) var(--main-padding);
}
#main h2.accent {
	font: var(--main-font-large);
	font-weight: bold;
	color: var(--main-color);
	margin: 0 auto 12px;
	border-left: 3px solid;
	padding: 4px 12px;
	display: block;
	background: var(--main-color-high);
	margin: 12px auto 12px;
}
header {
	height: calc(var(--main-header) - 1px);
	box-sizing: border-box;
}
header h1 {
	font: var(--main-font-large);
	font-weight:bold;
	padding-left: 50px;
	line-height: calc(var(--main-header) - 1px);
	height: calc(var(--main-header) - 1px);
}
header h1 a {
	padding-top: 2px;
	display:block;
	height: calc(var(--main-header) - 3px);
}
.shift_on {
	width: 100%;
	font-size: 0.9em;
	margin: 0 auto;
}
.shift_off {
	width: 100%;
	font-size: 0.9em;
	margin: 0 auto;
}

/*-home-span------------------------------------------------------*/
.span-box {
	width: 100%;
	height: auto;
	display: block;
}
.span-left {
	width: 100%;
	margin-right: 0;
}
.span-right {
	width: 1000%;
	overflow-x: hidden;
}
.flex-item_pickup {
	max-width: 50%;
	min-height: 2em;
}

/*-sp-menu----------------------------------------------------------*/
#nav-drawer {
	display: block;
	/* position: fixed; */
	float: left;
	height: auto;
	width: 62px;
	padding: 6px;
	vertical-align: middle;
	text-align: right;
	box-sizing: border-box;
}
.nav-unshown {
	display:none;
}
#nav-open {
	display: inline-block;
	width: 30px;
	height: 24px;
	vertical-align: middle;
	border: 2px solid white;
	border-radius: 5px;
	padding: 6px;
	text-align: center;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 4px; /*線の太さ*/
	width: 30px; /*長さ*/
	border-radius: 3px;
	background: white;
	display: block;
	content: '';
	cursor: pointer;
	margin-top: 2px;
}
#nav-open span:before {
	bottom: -16px;
}
#nav-open span:after {
	bottom: -8px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .2s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  transition: .2s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*- login -----------------------------------------------------*/
#form_body {
	margin-bottom: 20px;
}
#form_dialog {
	margin: 10% 4% 5% 4%;
	width: 96%;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
#form_password{
	text-align: left;
	width: 100%;
	color: var(--main-black);
	margin-bottom: var(--main-padding-large);
	border-collapse: separate;
	border-spacing: 0px var(--main-padding);
	padding:0px;
	margin: 0 auto;
}
#form_password tbody {
	width: 100%;
}
#form_password th{
	padding-left: var(--main-padding-small);
	width: 100%;
	color: var(--main-color);
	background-color: white;
	border: none;
	display: block;
	text-align: left;
}
#form_password td{
	width: 100%;
	border: none;
	display: block;
	text-align: left;
}
.btn_logout {
	margin-top: 1.5em;
	padding: 4px;
}
#modal_logo {
	margin-top: 20px;
}
#modal_btn {
	width: 100%;
	margin-top: 20px;
}
#modal_btn a{
	width: 100%;
}

.modal_del_wide {
	width: 100%;
	max-width: 100%;
}

#form_dialog footer {
	padding-top: 2em;
}
/*- password-change-form ------------------------------------------------*/
#form_password_change {
    width: 100%;
    max-width: 100%;
}
#form_password_change table#form_password th {
	width: 100%;
}
#form_password_change table#form_password td {
	width: 100%;
}

/*- form_register ------------------------------------------------*/
#form_register {
    width: 100%;
    max-width: 100%;
}

/*-Application-box----------------------------------------------------*/
.top-flex {
	display: flex;
	height: auto;
	max-height: initial;
	width: 100%;
	overflow: wrap;
	overflow-x: none;
	flex-wrap: wrap
	align-items: flex-start;
}
.flex-item{
	padding-top: 0px;
	margin: 0 1% 12px 1%;
	width: 31%;
	min-width: initial;
	height: 100%;
	max-height: initial;
}
.flex-ele{
	padding-top: 0px;
	margin: 0 1% 2em 1%;
	width: 98%;
	min-width: initial;
	height: auto;
	background: #fff;
	text-align: center;
	box-sizing: border-box;
}
.flex-ele canvas{
	width: 100%;
	height: auto !important;
}
.flex-ele span {
	display: block;
	width: 100%;
	font-size: 1.1em;
	line-height: 1.8em;
	margin: 0;
}

.badge::before {
	font-size: 8px;
	padding: 3px;
	top: 5px;
	width: 26px;
	height: 26px;
	left: -34px;
}

.flex-item:first-child{
	margin-left: 1%;
}
.flex-item a img{
	height: auto !important;
	width: 100%;
	object-fit: cover;
	background-color: #FFF;
	cursor: poiter; align-items: flex-start;
}
.flex-item a,
.flex-item input {
	margin: 0 auto;
	display: block;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: auto !important;
	width: 100%;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.flex-item a:hover{
	cursor: poiter;
}

.flex-item_rinen {
	width: 25%;
	max-width:initial;
}
.flex-item_rinen img {
	width: 100%;
}
.bottom-low {
	margin-bottom: -1em;
}

/*-Table-----------------------------------------------------*/
table.list th,
table.list td {
	min-width: 28px;
	max-width: var(--main-table-wide);
}

table.benefit_list {
	font-size: 0.7em;
	width: 100%;
	max-width: 100%;
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	max-width: initial;
}
table.benefit_list th,
table.benefit_list td{
	max-width: initial;
}
table.wide {
	width: 100%;
	height: 58vh;
}
table.wide tbody th.max-width{
	max-width: 90px;
}
table.wide th, table.wide td {
	min-width: 70px !important;
}
/*-Table- light -----------------------------------------------------*/
table.light-table {
  border: 0;
  width:100%
}
table.light-table .max-width150{
	box-sizing: border-box;
	width: 100%;
	max-width: initial;
}
table.light-table th{
  background-color: #eee;
  display: block;
  border: none;
}
table.light-table thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

table.light-table tr {
  display: block;
  margin-bottom: 1em;
}

table.light-table td {
  border-bottom: 1px solid #bbb;
  display: block;
  font-size: .8em;
  text-align: right;
  position: relative;
  padding: .625em .625em .625em 7em;
  border: none;
}

table.light-table td::before {
  content: attr(data-label);
  font-weight: bold;
  position: absolute;
  left: 10px;
}

table.light-table td:last-child {
  border-bottom: 0;
}
/*-Information-----------------------------------------------------*/
#main h2.info_title {
	white-space: normal;
	height: auto;
	word-wrap:break-word;
	overflow-wrap: break-word;
}
.info_body {
}
.info_body img {
	max-width: 100%;
	height: auto;
	margin: 0 aut
}
#form_information table th{
	padding-left: var(--main-padding-small);
	width: 100%;
	color: var(--main-color);
	background-color: white;
	border: none;
	display: block;
	text-align: left;
}
#form_information table td{
	width: 100%;
	border: none;
	display: block;
	text-align: left;
}

/*-form-common-------------------------------------------*/
#form_common table th{
	padding-left: var(--main-padding-small);
	width: 100%;
	color: var(--main-color);
	background-color: white;
	border: none;
	display: block;
	text-align: left;
}
#form_common table td{
	width: 100%;
	border: none;
	display: block;
	text-align: left;
}

/*-information----------------------------------------------------*/
.read_on {
	opacity: 0.6;
}

/*-video-frame------------------------------------------------------*/
.signage {
	width: 100%;
}
.signage iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	box-sizing: border-box;
	box-shadow: 2px 2px 4px gray;
	display:block;
	vertical-align:top;
}
img.img-signage,
img.movie {
	width: 100%;
	box-sizing: border-box;
	box-shadow: 2px 2px 4px gray;
	display:block;
	vertical-align:top;
}
.parent_signage {
	overflow-x: auto;
}
.parent_signage .signage_rev{
	width: 280px;
}
.parent_signage .signage_rev .yt .movie{
	height: 157.5px;
}
.yt_play::before { /* YouTubeアイコン */
	width: 42px !important;
	height: 30px !important;
	top: 50%;
	left: 50%;
	opacity: .30 !important;
}
/*-home-search-box------------------------------------------------*/
.search_box {
	height: 7.3em;
}
.search_after {
	transition: 1s;
}
.search_after #titlename{
	display: none;
}
#inputWrapper{
	box-sizing: border-box;
	width: 80%;
	min-width: 100px;
	max-width: 600px;
	height: 44px;
	margin: 12px auto 0;
	background-color: white;
	border: 2px #aaa solid;
	border-radius: 20px;
}

#inputWrapper #serch_btn{
	display: block;
	height: 90%;
	padding-left: 10px;
	box-sizing: border-box;
	color: var(--main-black-up);
}
#inputWrapper #serch_btn:hover{
	cursor: default;
}
#inputWrapper input[type='search']{
	width: calc(85% - 14px);
	margin-left: 2.3em;
	height: 40px;
	font: var(--main-font-meiryo);
	border:none;
}
#serch_clean{
	font-family: FontAwesome;
	height: 90%;
	box-sizing: border-box;
	color: var(--main-black-up);
	cursor: pointer;
	font-size: 1.3em;
	width: 1.5em;
	outline : none;
	text-align: left;
	display: block;
	z-index: 2;
	padding-top: 4px;
	right: 0.2em;
}

#inputWrapper select{
	width: 49%;
	margin-top: 0.7em;
	font-size: 0.9em;
	padding-left: 0.4em;
	height: 2.4em;
	border: 1px #aaa solid;
	background-color: white;
}

/*-information-config-edit-form-------------------------------------------*/
#user_body iframe {
	width: 100%;
}
#user_body div.yt{
	width: 100%;
}

/*-pagetop-------------------------------------------*/
.pagetop {
	bottom: 1em;
	right: 1em;
}

/*--harassment-article----------------------------------------------------------*/
section.harassment_flex {
	min-width: initial;
}
section.harassment_flex div {
	width: 100%;
	margin: 0;
}
section.harassment_flex div article {
	width: 100%;
	margin: 0;
}
#harassment_post_male,
#harassment_post_female{
	width: 49%;
}

textarea.harassment_txt {
	height: 200px;
}

/* -select filter -------------------------------------------*/
select.select_filter {
	max-width: 100%;
}

/*-Print Body------------------------------------------------------*/
#print_parent {
	padding: 0 !important;
}
.print_shain font{
	width: calc(88% - 1em) !important;
	float: left;
}
.print_shain .shain{
	width: 12%;
}
.print_title {
	margin-top: 1em;
}
#print_area {
	font-size: 0.9em !important;
	padding: var(--main-padding-small) !important;
}
#print_area table {
	width: 100% !important;
}
#print_area table .for_date {
	min-width: 5em !important;
}
#print_area table .for_division {
	min-width: 11em !important;
}
#print_area table .for_name {
	min-width: 7em !important;
}
#print_area table.list {
	max-width: calc(100% - 0.4em) !important;
	margin: 1em 0.2em !important;
	font-size: 0.9em !important;
}
#print_area table.list th,
#print_area table.list td{
	padding: 4px 1px !important;
	font-size: 0.9em !important;
}

/* shinsei--------------------------------------------------------------*/
#form_common td.shinsei_accent {
	margin-top: 1em;
}

/*-flex-box-likeEB-----------------------------------------------------*/
.top-flex-likeEB .flex-item{
	padding-top: 0px;
	margin: 6px 6px 6px 6px;
	width: 120px;
	min-width: 120px;
	height: calc( 168px + 4em);
	background: #fff;
	text-align: center;
	box-sizing: border-box;
	box-shadow: 2px 2px 4px gray;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}