@charset "UTF-8";

/* ======================================================
	Reset
====================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, a, img, ins, kbd, q, samp, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  vertical-align: baseline;
  font-size: 100%;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
}

html{
  position: relative;
}
/* datepickerがずれるため無効化
body{
  position: relative;
}
*/

body {
  line-height: 1;
}

img {
  line-height: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

a {
  outline: none;
}

em {
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* ======================================================
	body
====================================================== */

html {
	height:100%;
}

body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	font-size: 12px;
	color: #333;
	line-height: 1.4;
	background: #FDF1F5;

}

/* ================================================================================ */
#wrap {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

.pc,
.pc-inline {
	display: none !important;
}
.smt-inline {
	display: inline-block !important;
}

:placeholder-shown {
	color: #ddd; }
::-webkit-input-placeholder {
	color: #ddd; }
:-moz-placeholder {
    color: #ddd; opacity: 1; }
::-moz-placeholder {
    color: #ddd; opacity: 1; }
:-ms-input-placeholder {
    color: #ddd; }

a{
	color: #3fafca;
	text-decoration: none;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}
a[href]:hover{
	text-decoration: none;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
a[href]:hover img,
input[type="image"]:hover{
	filter: Alpha(opacity=70);
	opacity: .7;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
a img,
input[type="image"]{
	filter: none;
	opacity: 1;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}

@media print,screen and (min-width: 800px)
{
	.pc {
		display: block !important;
	}
	.pc-inline {
		display: inline-block !important;
	}
	.smt,
	.smt-inline {
		display: none !important;
	}
}

.tx-red {
	color: #ff1d25 !important;
}
.tx-pink {
	color: #ff5992 !important;
}

/* ======================================================
	Header
====================================================== */
header
{	display: block;
	max-width: 1100px;
	width: 100%;
	min-width: 320px;
	margin: 1.5em auto 0.5em;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 0.5rem;
}

/* */
header h1
{	display: none;
}

/* -------------------- */
.header-layout
{	display: flex;
}
.header-layout .left
{	display: none;
}
.header-layout .right
{	flex: 1 1 0%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 800px)
{
	header
	{	margin-top: 2.0em;
		margin-bottom: 1.5em;
	}
	.header-layout
	{	justify-content: space-between;
		align-items: center;
	}
	.header-layout .left
	{	display: flex;
		align-items: center;
		flex: 1 1 0%;
	}
	.header-layout .right
	{	flex-grow: 0;
		flex-basis: auto;
	}
}

/* ----------------------------------------- */
header .header-logo
{	display: none;
	width: 15%;
	max-width: 100px;
	vertical-align: middle;
}
header .header-logo a
{	display: block;
}
header .header-logo img
{	width: 100%;
	display: block;
}
#breadcrumb-wrap
{	display: none;
	flex: 1 1 0%;
	padding: 0 0.5em;
	vertical-align: middle;
	box-sizing: border-box;
}

#breadcrumb-wrap ol
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
#breadcrumb-wrap ol > *
{	display: inline-block;
	display: flex;
	letter-spacing: normal;
	font-size: 14px;
	font-size: 1.2vw;
	max-width: 20em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#breadcrumb-wrap ol > :first-child
{	background: url("../img/common/ico-home.png") no-repeat center left;
	background-size: auto 80%;
	padding-left: 1.2em;
}
#breadcrumb-wrap ol > :after
{	content: '>';
	margin-right: 0.4em;
	margin-left: 0.4em;
}
#breadcrumb-wrap ol > :last-child:after
{	content: none;
}
#breadcrumb-wrap a
{	text-decoration: underline;
	display: block;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 800px)
{
	header .header-logo
	{	display: inline-block;
	}
	#breadcrumb-wrap
	{	display: inline-block;
	}

}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 1100px)
{	#breadcrumb-wrap li
	{	font-size: 14px;
	}
}

/* ------------------------------------- */
header .login-hud
{	display: flex;
	overflow: hidden;
	justify-content: space-between;
	align-items: center;
	font-size: 10px;
}
header .login-hud > *
{
	display: inline-block;
	vertical-align: middle;
	display: flex;
	align-items: center;
}

/* -- */
header .login-hud > :first-child
{	order: 1;
	margin-right: 0.5em;
}

header .login-hud > :first-child::before
{	background: url("../img/common/ico-people.png") no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	content: "";
	width: 1.5em;
	height: 1.5em;
}

/* -- */
header .login-hud > :nth-child(2)
{	order: 2;
	margin-right: 0.5em;
}

header .login-hud > :nth-child(2) span
{	background-color: palevioletred;
	background-color: var(--pink,palevioletred);
	display: block;
	color: white;
	border-radius: 0.4em;
	padding: 0.2em 0.5em;

}

/* -- */
header .login-hud > :nth-child(3)
{	order: 4;
	width: 9.0vw;
	height: 9.0vw;
	padding: 0;
}
header .login-hud li:nth-child(3) img
{
	display: block;
	width: 100%;
}

/* -- */
header .login-hud > :last-child
{	order: 3;
	margin-right: 0.5em;
}

header .login-hud > :last-child a
{
	background: url("../img/common/ico-logout.png") no-repeat center center #fff;
	background-size: auto 90%;
	display: block;
	width: 8.5vw;
	height: 8.5vw;
	border: 1px solid #646464;
	border-radius: 0.4em;
}
header .login-hud > :last-child a:hover
{	background-color: #72B7E8;
}

header .login-hud > :last-child a span
{	display: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 320px)
{
	header .login-hud
	{	font-size: 3.25vw;
	}
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 800px)
{
	header .login-hud
	{
		font-size: 14px;
		font-size: 1.2vw;
		float: right;
	}
	header .login-hud > :last-child
	{
		float: right;
		margin-right: 0;
	}
	header .login-hud > :last-child a
	{
		background: url("../img/common/ico-logout.png") no-repeat 3px center #fff;
		background-size: auto 70%;
		width: auto;
		height: 2.2vw;
		color: #333;
	}

	header .login-hud > :last-child a span
	{
		display: inline-block;
		margin: 0.1em 0.5em 0.2em 1.5em;
	}
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 1100px)
{
	header .login-hud
	{	font-size: 14px;
	}
	header .login-hud > :last-child a
	{	height: 24px;
	}

}

/* ---------------------------------------------------------------------------- */
#menu-smt {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	display: none;
}
#menu-smt ul
{	display: block;
	max-height: 100%;
	max-height: 100vh;
	overflow: auto;
}
#menu-smt ul li
{
	background: #7FBE26;
	color: #fff;
	border-bottom: 1px solid #fff;
	font-size: 4.6vw;
	font-weight: 600;
	box-sizing: border-box;
}

/* +++++++++++++++ */
#menu-smt ul li:first-child
{
	background-color: #F9E3E9;
	color: Black;
}
#menu-smt ul li.users
{	background-color: #E07593;
}
#menu-smt ul li.staff
{	background-color: #72B7E8;
}
#menu-smt ul li.top
{	background-color: #ccc;
	color: Black;
}


/* --- */
#menu-smt ul li a,
#menu-smt ul li a:hover
{	color: inherit;
	text-decoration: none;
}
#menu-smt ul li a,
#menu-smt ul li span
{
	display: block;
	padding: 1.0em;
	cursor: pointer;
}

#menu-smt ul li a:active
{	background-color: Black;
	color: White;
}

/* ++++++ */
#menu-smt ul li:first-child a
{
	background: url("../img/common/close.png") no-repeat 94% center;
	background-size: auto 34%;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@media print,screen and (min-width: 800px)
{
	#menu-smt
	{	display: none !important;
	}
}


/* ======================================================
	Footer
====================================================== */
footer
{
	display: block;
	position: static;
	text-align: center;
	overflow: hidden;
}

#copyright
{
	background-color: palevioletred;
	background-color: var(--pink,palevioletred);
	display: block;
	padding: 0.5em 0;
	color: white;
	font-size: 9px;
	font-size: 3vw;
	text-align: center;
}
.login #copyright
{
	background-color: transparent;
	color: palevioletred;
	color: var(--pink,palevioletred);
}

@media print,screen and (min-width: 800px)
{
	#copyright
	{
		font-size: 9px;
		font-size: 1vw;
	}

}

@media print,screen and (min-width: 1100px)
{
	#copyright
	{	font-size: 9px;
	}
}



/* ======================================================
	Form
====================================================== */

select {
	font-size: 3.8vw;
	padding: 0.3em;
}
select:not(:first-child) {
	margin-left: 0.5em;
}
input[type="text"],
input[type="number"],
input[type="time"],
input[type="tel"],
input[type="email"],
input[type="password"] {
	font-size: 3.8vw;
	padding: 0.3em;
	margin-left: 0.5em;
}
textarea {
	font-size: 3.8vw;
	padding: 0.3em;
}

.bt {
	display: block;
}
.bt > a.search {
	display: block;
	width: 60%;
	max-width: 362px;
	margin: 15px auto;
}
.bt > a.save {
	display: block;
	width: 50%;
	max-width: 124px;
	margin: 15px auto;
}
.bt > a.check,
.bt > a.check-ok {
	display: block;
	width: 70%;
	max-width: 525px;
	margin: 15px auto;
}
.bt > a.search > img,
.bt > a.save > img,
.bt > a.check > img,
.bt > a.check-ok > img {
	width: 100%;
}
.bt > a.back {
	display: block;
	width: 60%;
	max-width: 150px;
	margin: 1.0em auto;
	padding: 0.2em 0;
	background: #ED7A9B;
	border-radius: 0.5em;
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 6.6vw;
}
.bt > a.close {
	display: block;
	width: 60%;
	max-width: 160px;
	margin: 1.0em auto;
	padding: 0.2em 0;
	background: #646464;
	border-radius: 0.5em;
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 6.6vw;
}

p.error {
	display: block;
	padding: 0.5em 0 1.5em;
	color: #E61D60;
	font-weight: 600;
	font-size: 4.6vw;
}


@media print,screen and (min-width: 800px) {

	select {
		font-size: 18px;
		font-size: 1.6vw;
		padding: 0.3em;
		margin-left: 0.5em;
	}
	input[type="text"],
	input[type="number"],
	input[type="time"],
	input[type="tel"],
	input[type="email"],
	input[type="password"] {
		font-size: 18px;
		font-size: 1.6vw;
		padding: 0.3em;
		margin-left: 0.5em;
	}
	textarea {
		font-size: 18px;
		font-size: 1.6vw;
		padding: 0.3em;
	}

	.bt {
	}
	.bt > a.search {
		max-width: 250px;
	}
	.bt > a.search > img,
	.bt > a.save > img,
	.bt > a.check > img,
	.bt > a.check-ok > img {
		width: 100%;
	}
	.bt > a.save {
		max-width: 144px;
	}
	.bt > a.check {
		max-width: 262px;
	}
	.bt > a.check-ok {
		max-width: 262px;
	}
	.bt > a.back {
/*
		max-width: 250px;
*/
		font-size: 27px;
		font-size: 2.6vw;
	}
	.bt > a.close {
		max-width: 160px;
		font-size: 27px;
		font-size: 2.6vw;
	}

	p.error {
		width: 96%;
		max-width: 1000px;
		margin: 0 auto;
		font-size: 24px;
		font-size: 2.3vw;
	}

}


@media print,screen and (min-width: 1100px) {

	select {
		font-size: 18px;
	}
	input[type="text"],
	input[type="number"],
	input[type="time"],
	input[type="tel"],
	input[type="email"],
	input[type="password"] {
		font-size: 18px;
	}
	textarea {
		font-size: 18px;

	}

	.bt > a.back {
		font-size: 27px;
	}
	.bt > a.close {
		font-size: 27px;
	}

	p.error {
		font-size: 24px;
	}

}


/* ======================================================
	Main
====================================================== */

main {
	display: block;
	background: #fff;
	border-radius: 0.5em;
	width: 92%;
	padding: 4% 2% 2%;
	margin: 0 2%;
}


/* TOP */

#top-logo {
	display: block;
	width: 80%;
	/*width: 60%;*/
	margin: 1.5em auto;
}
#top-logo img {
	width: 100%;
}
.top_name{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10%;
}
.top section {
}
.top section > h2 {
	color: #ED7A9B;
	font-weight: 600;
	font-size: 5.0vw;
	margin-bottom: 0.3em;
}
.top section.sec-b > h2 {
	color: #72B7E8;
}
.top section.sec-c > h2 {
	color: #7FBE26;
}
.top section.sec-d > h2 {
	color: #646464;
}
.top section > ul {
	display: block;
	letter-spacing: -.4em;
	width: 100%;
}
.top section > ul li {
	display: inline-block;
	letter-spacing: normal;
	width: 33.3%;
	width: -webkit-calc(92%/3);
	width: -moz-calc(92%/3);
	width: calc(92%/3);
	vertical-align: top;
	margin: 0 0 1.5em;
}
.top section > ul li:nth-child(3n-1) {
	margin: 0 4% 1.5em;
}
.top section > ul li a {
	display: block;
	background: #ED7A9B;
	box-shadow: 0.3em 0.3em #C8C8C8;
	color: #fff;
	padding: 0.5em 0;
	border-radius: 0.5em;
	text-align: center;
	font-weight: 600;
	line-height: 1.4;
	font-size: 3.2vw;
}
.top section.sec-b > ul li a {
	background: #72B7E8;
}
.top section.sec-c > ul li a {
	background: #7FBE26;
}
.top section.sec-d > ul li a {
	background: #FBCD40;
	color: #646464;
}
.top section > ul li a img {
	width: 100%;
}
.top section > ul li a span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.0em;
}

/* LOGIN */

.login main {
	display: block;
	background: none;
	border-radius: 0.5em;
	width: 92%;
	padding: 4% 2%;
	margin: 0 2%;
}
.login section {
	background: #fff;
	width: 72%;
	padding: 4%;
	margin: 2.0em auto 0;
	border-radius: 1.0em;
	text-align: center;
}
.login section h2 {
	display: block;
	padding: 0.2em 0 0.5em;
	font-weight: 600;
	font-size: 5.0vw;
}
.login section table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}
.login section table th {
	display: block;
	width: 100%;
	padding: 0.2em 0;
	text-align: left;
	font-weight: 600;
	font-size: 4.0vw;
}
.login section table th b {
	color: #e71f19;
}
.login section table th i {
	display: block;
	float: right;
	color: #e71f19;
	font-size: 3.6vw;
}
.login section table td {
	display: block;
	width: 100%;
}
.login section table td input {
	width: 96%;
	margin-left: 0;
}
.login section .error {
	display: block;
	color: #e71f19;
	padding: 0.5em 0;
	font-size: 3.4vw;
}
.login section a {
	display: block;
	color: #6896d8;
	text-decoration: none;
	padding: 0.5em 0;
	font-size: 4.0vw;
}
.login section a.bt-login {
	display: block;
	width: 70%;
	margin: 0 auto;
}
.login section a img {
	width: 100%;
}
.login section p {
	display: block;
	text-align: left;
	color: #e71f19;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 3.2vw;
}


/* FORGOT */

.login section.forgot {
	background: #fef5d9;
}
.login section.forgot h2 {
	color: #ed7a9b;
}
.login section.forgot div {
	display: block;
	text-align: left;
	padding: 0 0 0.5em;
	color: #646464;
	font-size: 3.3vw;
}

/* OTHER */

main img {
	width: 100%;
}
main > h2 {
	display: block;
	text-align: center;
	color: #ED7A9B;
	padding: 0.5em 0 1.0em;
	font-weight: 600;
	font-size: 4.6vw;
}
main > h2 > span {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	color: #ED7A9B;
	line-height: 1.4;
	font-weight: 600;
	font-size: 4.6vw;
}
main > h2 img {
	display: inline-block;
	margin-right: 0.5em;
	width: 12%;
	height: 12%;
	vertical-align: middle;
}

.pagination {
	display: block;
}
.pagination > ul {
	display: block;
	letter-spacing: -.4em;
	margin: 20px auto;
	padding: 0;
	width: 100%;
	text-align: center;
}
.pagination > ul li {
	display: inline-block;
	letter-spacing: normal;
	margin: 0 2px;
}
.pagination > ul li a {
	display: block;
	border: 1px solid #ED7A9B;
	border-radius: 0.2em;
	color: #ED7A9B;
	width: 7.6vw;
	height: 7.6vw;
	font-size: 5.6vw;
}
.pagination > ul li a.on {
	background: #ED7A9B;
	color: #fff;
}
.pagination > ul li.prev a,
.pagination > ul li.next a {
	border: 0;
	color: #F29BB4;
}

#current-selectBox,
#current-selectBox-nonTab {
	cursor: pointer;
	position: relative;
	width: 100%;
	width: -webkit-calc(100% - 1.0em);
	width: -moz-calc(100% - 1.0em);
	width: calc(100% - 1.0em);
	padding: 0.2em 0.5em;
	color: #fff;
	border: 1px solid #ed7a9b;
	border-radius: 0.3em;
	background: #ed7a9b;
	font-size: 4.2vw;
}
#current-selectBox img,
#current-selectBox-nonTab img {
	width: 2.0em;
	vertical-align: middle;
	margin-right: 0.5em;
}
#current-selectBox:before,
#current-selectBox-nonTab:before {
	content: '▼';
	display: block;
	position: absolute;
	top: 0.5em;
	right: 0.8em;
	font-size: 4.2vw;
}
#current-selectBox.on,
#current-selectBox-nonTab.on {
	border-radius: 0.3em 0.3em 0 0;
	border-bottom: 0;
}
nav#selectBox,
nav#selectBox-nonTab {
	display: none;
	width: 100%;
	padding: 0;
}
nav#selectBox ul,
nav#selectBox-nonTab ul {
	display: block;
	letter-spacing: -.4em;
	width: 100%;
	padding: 0;
}
nav#selectBox ul li,
nav#selectBox-nonTab ul li {
	width: 100%;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	letter-spacing: normal;
}
nav#selectBox ul li.on,
nav#selectBox-nonTab ul li.on {
	display: none;
}
nav#selectBox ul li a,
nav#selectBox-nonTab ul li a {
	display: block;
	width: 100%;
	width: -webkit-calc(100% - 1.0em);
	width: -moz-calc(100% - 1.0em);
	width: calc(100% - 1.0em);
	padding: 0.2em 0.5em;
	color: #333;
	text-decoration: none;
	border-left: 1px solid #ed7a9b;
	border-right: 1px solid #ed7a9b;
	border-bottom: 1px solid #ed7a9b;
	font-size: 4.2vw;
}
nav#selectBox ul li a img,
nav#selectBox-nonTab ul li a img {
	width: 2.0em;
	vertical-align: middle;
	margin-right: 0.5em;
}
/*
nav#selectBox ul li:last-child a,
nav#selectBox-nonTab ul li:lastchild a {
	border-radius: 0 0 0.3em 0.3em;
}
*/
nav#selectBox ul li a:hover,
nav#selectBox-nonTab ul li a:hover {
	text-decoration: none;
}


.modal {
	width: 82%;
	margin: 0 auto;
	padding: 4%;
	background: #f9e3e9;
	border-radius: 10px;
}
.modal strong {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 4.2vw;
}
.modal ul {
	display: block;
	letter-spacing: -.8em;
	margin: 1.0em auto;
	width: 80%;
}
.modal ul li {
	display: inline-block;
	letter-spacing: normal;
	width: 46%;
	padding: 0 2%;
}
.modal ul li a,
.modal ul li button {
	display: block;
	width: 100%;
}
.modal ul li a img,
.modal ul li button img {
	width: 100%;
}

.reload {
	text-align: center;
	color: #c00;
	line-height: 1.6;
	font-weight: 600;
	font-size: 4.2vw;
}
.group-add-btn {
	background-color: var(--pink,palevioletred);
	display: block;
	color: white;
	border-radius: 0.4em;
	padding: 0.2em 0.5em;
	margin-left: 0.7rem;
}

.group-remove-btn {
	background-color: #dddddd;
	width: 30px !important;
	height: 30px;
	border-radius: 3px;
}

@media only screen and (min-width: 700px) {

	#top-logo {
		width: 44.5%;
		max-width: 175px;
		margin: 1.5em auto;
	}
	.top_name{
		font-size: 34px;
	}

	.top section {
		width: 100%;
		/*max-width: 875px;*/
		max-width: 700px;
		margin: 0 auto;
	}
	.top section > h2 {
		font-size: 25px;
	}
	.top section > ul li {
		/*
		width: 20%;
		width: -webkit-calc(84%/5);
		width: -moz-calc(84%/5);
		width: calc(84%/5);
		*/
		width: 25%;
		width: -webkit-calc(88%/4);
		width: -moz-calc(88%/4);
		width: calc(88%/4);
		margin: 0 0 3.0em;
	}
	.top section > ul li:nth-child(3n-1) {
		margin: 0 0 3.0em;
	}
	/*
	.top section > ul li:nth-child(5n-1) {
		margin: 0 4% 3.0em 0;
	}
	.top section > ul li:nth-child(5n-2) {
		margin: 0 4% 3.0em 0;
	}
	.top section > ul li:nth-child(5n-3) {
		margin: 0 4% 3.0em;
	}
	*/
	.top section > ul li:nth-child(4n-1) {
		margin: 0 4% 3.0em 0;
	}
	.top section > ul li:nth-child(4n-2) {
		margin: 0 4% 3.0em;
	}
	.top section > ul li a {
		font-size: 17px;
	}
	.top section > ul li a:hover {
		box-shadow: 0.3em 0.3em #666;
	}

}


@media print,screen and (min-width: 800px) {

	main {
		max-width: 1100px;
		max-width: -webkit-calc(1100px - 12%);
		max-width: -moz-calc(1100px - 12%);
		max-width: calc(1100px - 12%);
		margin: 0 auto !important;
	}

	/* LOGIN */

	.login main {
		max-width: 1100px;
		max-width: -webkit-calc(1100px - 12%);
		max-width: -moz-calc(1100px - 12%);
		max-width: calc(1100px - 12%);
		margin: 0 auto !important;
		padding: 0;
	}
	.login section {
		width: 40.5%;
		max-width: 550px;
		max-width: -webkit-calc(550px - 4%);
		max-width: -moz-calc(550px - 4%);
		max-width: calc(550px - 4%);
		padding: 2%;
	}
	.login section h2 {
		font-size: 29px;
		font-size: 2.3vw;
	}
	.login section table {
	}
	.login section table th {
		font-size: 22px;
		font-size: 1.7vw;
	}
	.login section table th b {
	}
	.login section table th i {
		font-size: 18px;
		font-size: 1.4vw;
	}
	.login section table td {
	}
	.login section table td input {
	}
	.login section .error {
		font-size: 20px;
		font-size: 1.5vw;
	}
	.login section a {
		font-size: 22px;
		font-size: 1.7vw;
	}
	.login section a.bt-login {
		width: 50%;
	}
	.login section a img {
	}
	.login section p {
		font-size: 15px;
		font-size: 1.1vw;
	}

	/* FORGOT */

	.login section.forgot.finish {
		width: 80.0%;
		max-width: 800px;
		max-width: -webkit-calc(800px - 4%);
		max-width: -moz-calc(800px - 4%);
		max-width: calc(800px - 4%);
		padding: 2%;
	}
	.login section.forgot div {
		font-size: 19px;
		font-size: 1.4vw;
	}

	/* OTHER */

	main > h2 {
		width: 96%;
		max-width: 1000px;
		margin: 0 auto 10px;
		text-align: left;
		padding: 0;
		font-size: 24px;
		font-size: 2.3vw;
	}
	main > h2 > span {
		font-size: 24px;
		font-size: 2.3vw;
	}
	main > h2 img {
		max-width: 70px;
	}

	.pagination {
		width: 96%;
		max-width: 1000px;
		margin: 0 auto;
	}
	.pagination > ul {
		width: 100%;
	}
	.pagination > ul li {
	}
	.pagination > ul li a {
		width: 35px;
		width: 3.3vw;
		height: 35px;
		height: 3.3vw;
		font-size: 24px;
		font-size: 2.3vw;
	}
	.pagination > ul li a.on {
		background: #ED7A9B;
		color: #fff;
	}
	.pagination > ul li.prev a,
	.pagination > ul li.next a {
		border: 0;
		color: #F29BB4;
	}

	.navi {
		display: block;
		width: 96%;
		max-width: 960px;
		margin: 1.5em auto 0;
	}
	#current-selectBox {
		cursor: default;
		display: inline-block;
		display: none;
		width: auto;
		padding: 0.2em 1.0em 0.2em 0.5em;
		border-radius: 0.3em 0.3em 0 0;
		border-bottom: 0;
		font-size: 16px;
		font-size: 1.4vw;
	}
	#current-selectBox img {
	}
	#current-selectBox:before {
		display: none;
	}
	#current-selectBox.on {
	}
	nav#selectBox {
		display: inline-block;
		width: auto;
	}
	nav#selectBox ul {
		width: auto;
	}
	nav#selectBox ul li {
		width: auto;
		margin-right: 4px;
	}
	nav#selectBox ul li.on {
		display: inline-block;
	}
	nav#selectBox ul li a {
		display: block;
		width: 100%;
		width: -webkit-calc(100% - 1.5em);
		width: -moz-calc(100% - 1.5em);
		width: calc(100% - 1.5em);
		color: #ed7a9b;
		padding: 0.2em 1.0em 0.2em 0.5em;
		border: 1px solid #ed7a9b;
		border-bottom: 0;
		border-radius: 0.3em 0.3em 0 0;
		font-size: 16px;
		font-size: 1.4vw;
	}
	nav#selectBox ul li.on a {
		color: #fff;
		background: #ed7a9b;
	}
	nav#selectBox ul li a img {
	}
	nav#selectBox ul li:last-child a {
		border-radius: 0.3em 0.3em 0 0;
	}
	nav#selectBox ul li a:hover {
	}

	.navi.nonTab {
		width: 100%;
		max-width: 1000px;
		margin: 1.0em auto;
	}
	#current-selectBox-nonTab {
		width: 40%;
		width: -webkit-calc(40% - 1.0em);
		width: -moz-calc(40% - 1.0em);
		width: calc(40% - 1.0em);
		padding: 0.2em 0.5em;
		font-size: 1.4vw;
	}
	#current-selectBox-nonTab:before {
		font-size: 1.4vw;
	}
	nav#selectBox-nonTab {
		width: 40%;
	}
	nav#selectBox-nonTab ul li a {
		font-size: 1.4vw;
	}

	.modal {
		width: 72%;
		max-width: 720px;
	}
	.modal strong {
		font-size: 22px;
	}
	.modal ul {
		margin: 4.0em auto 2.0em;
		width: 60%;
	}
	.modal ul li {
		width: 40%;
		padding: 0 5%;
	}
	.modal ul li a,
	.modal ul li button {
	}
	.modal ul li a img,
	.modal ul li button img {
	}

	.reload {
		font-size: 20px;
		font-size: 1.6vw;
	}
}

@media print,screen and (min-width: 1100px) {

	main {
		padding: 4% 0;
		max-width: 1100px;
	}

	/*
	.top.light section {
		max-width: 350px;
	}
	*/

	/* LOGIN */

	.login section h2 {
		font-size: 29px;
	}
	.login section table th {
		font-size: 22px;
	}
	.login section table th i {
		font-size: 18px;
	}
	.login section .error {
		font-size: 20px;
	}
	.login section a {
		font-size: 22px;
	}
	.login section p {
		font-size: 15px;
	}

	/* FORGOT */

	.login section.forgot div {
		font-size: 19px;
	}


	/* OTHER */

	main > h2 {
		font-size: 24px;
	}
	main > h2 > span {
		font-size: 24px;
	}

	.pagination > ul li a {
		width: 35px;
		height: 35px;
		font-size: 24px;
	}

	#current-selectBox {
		font-size: 16px;
	}
	nav#selectBox ul li a {
		font-size: 16px;
	}

	#current-selectBox-nonTab {
		font-size: 16px;
	}
	#current-selectBox-nonTab:before {
		font-size: 16px;
	}
	nav#selectBox-nonTab ul li a {
		font-size: 16px;
	}


	.modal strong {
		font-size: 22px;
	}

	.reload {
		font-size: 20px;
	}

}

/*20180428
下書き保存 テキスト用の装飾*/
.flash {
	background: #fce4ec;
    text-align: center;
    padding: .5rem;
    font-size: 140%;
    color: #ed7a9b;
    font-weight: bold;
    margin: 20px auto;
}
.flash.blue {
	background: #e0effa;
	color:	#72b7e8;
}

/*ADD 20191111 koike -> */
.bg-light {
	background-color: #e9e9e9 !important;
}
.bg-dark {
	background-color: #d4d4d4 !important;
}
.pc-cell {
	display: table-cell !important;
}
.pc-row {
	display: table-row !important;
}
.pc-1 {
	display: block !important;
}
.smt-row {
	display: none !important;
}
.pc-search.month .body > ul > li > ol > li:not(:first-child) {
	margin-left: 10px;
}
.pc-search.month .body > ul > li > ol > li input[type="text"] {
	border: 1px solid #999;
}
.program-year-edit.month > .table-box table th {
	padding: 0.5em 0.5em;
	width: 9em;
	box-sizing: border-box;
}
.program-year-edit.month > .table-box table td {
	height: 25px;
}
.program-year-edit.month > .table-box th.empty {
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	background: #fff;
}
.program-year-edit.month > .table-box th[rowspan] {
	background: #D4D4D4;
	width: 20px !important;
	box-sizing: border-box;
}
.program-year-edit.month > .table-box th.w1 {
	width: 100px !important;
	box-sizing: border-box;
}
.program-year-edit.month > .table-box td.space {
	border-left: 1px solid #fff !important;
	border-right: 1px solid #fff !important;
}
.school-name {
	display: none !important;
	font-size: 16px;
	display: block;
	text-align: center;
	margin-bottom: -20px;
}
.program-year-edit.month .week-num {
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;
}
.program-year-edit.week > .table-box table td {
	padding: 0.5em 0.5em;
}
.program-year-edit.week > .table-box table:not(:first-of-type) {
	margin-top: 30px;
}

.pc-search.program.year .left {
	display: inline;
}
.pc-search.program.year .right {
	margin-top: 32px;
	float:right;
}
.face-photo {
	width: 130px;
	vertical-align: middle;
}
.kinder-name {
	font-size: 1.2rem;
	margin-left: 1em;
	display: inline-block;
}
.btn-wp.v1 {
	text-align: right;
}
.btn-wp.v2 {
	text-align: center;
}
.printing {
	width: 100px !important;
}
.excel {
	width: 243px;
}
.progress-wp {
	border: 1px solid #ED7A9B;
	border-radius: 0.5em;
	margin-top: 20px;
	padding: 10px;
}
.progress-tbl {
	width: 100%;
	font-size: 16px;
}
.progress-tbl td {
	padding: 10px 0;
	vertical-align: middle;
}
.progress-tbl tr:not(:first-child) td {
	border-top: 1px solid #ED7A9B;
}
.progress-tbl select {
	font-family: "メイリオ", "ヒラギノ角ゴ ProN W3", sans-serif;
}
.progress-tbl .kigou {
	font-family: "メイリオ", "ヒラギノ角ゴ ProN W3", sans-serif;
	font-size: 1.5em;
	margin-left: 10px;
}



/**/
.pc-search-result.nap-check > ul {
	text-align: left;
}
.pc-search-result.nap-check > ul >li {
	width: auto !important;
}
.pc-search-result.nap-check > ul >li > img {
	margin-left: 5px;
}
.pc-search-result.nap-check .nav-list {
	margin-top: 20px;
}
.pc-search-result.nap-check .bt-check {
	width: 37px;
	margin-left: 0;
	cursor: pointer;
}
.pc-search-result.nap-check .bt-delete {
	width: 104px;
	cursor: pointer;
}
.pc-search-result.nap-check .bt-download {
	width: 187px;
	cursor: pointer;
}
.pc-search-result.nap-check input[type="checkbox"] {
	margin-right: 15px;
	border-radius: 7px;
	border: 1px solid #000;
	width: 20px;
	height: 20px;
	background-color: #fff !important;
}
.inei {
	width: 30px;
}
.print-inline,.print-ib,.print-block {
	display: none !important;
}
.program-year-edit.month > .table-box table.w2 b {
	font-size: 1.2em;
	font-weight: bold;
}
.program-year-edit.month > .table-box table.w2 td {
	text-align: center !important;
}
.print-tbl {
	visibility: hidden;
}
.none {
	display: none !important;
}
.pc-search.program.year ol.check li:not(:first-child) {
	margin-left: 2em;
}
.pc-search select {
	vertical-align: middle;
}
.pc-search label {
	display: inline-block;
	margin: 5px 0;;
}

main {
	width: auto;
	padding-left: 3%;
	padding-right: 3%;
	margin: 0 3%;
}
.in.v2 {
	padding-left: 2%;
	padding-right: 2%;
}
.table-box-wp {
	margin-top: 30px;
}
.util-list {
	margin-top: 10px;
}
.util-list li {
	display: inline-block;
	padding: 5px 8px;
	border-radius: 5px;
	background: #ED7A9B;
	color: #fff;
}
.util-list li:not(:first-child) {
	margin-left: 1%;
}
.util-list li a {
	font-size: 1.3em;
	display: block;
	color: #fff;
}
.b {
	font-weight: bold;
}

@media only screen and (max-width: 899px) {
	.pc-1 {
		display: none !important;
	}
}

@media only screen and (max-width: 799px) {
	.pc-cell,.pc-row {
		display: none !important;
	}
	.smt-row {
		display: table-row !important;
	}
	.pc-search.month .body > ul > li > ol > li:not(:first-child) {
		margin-left: 0;
	}
	.program-year-edit.month > .table-box table.tbl1 {
		width: 100%;
	}
	.program-year-edit.month > .table-box table.tbl1 th {
		display: none;
	}
	.program-year-edit.month > .table-box table.tbl1 td {
		display: block;
		width: auto;
		padding: 0 !important;
		vertical-align: top !important;
		height: 25vw;
	}
	.program-year-edit.month > .table-box table.tbl1 td:before {
		content: attr(data-th);
		display: block;
		background: #E9E9E9;
		padding: 1.0em 0.5em;
		text-align: center;
	}
	.program-year-edit.month > .table-box table.w2 {
		width: 100%;
	}
	.program-year-edit > .table-box table.w2 td {
		border: 1px solid #5D5D5D !important;
	}

	.program-year-edit > .table-box table td {
/*
		border: none !important;
		border-top: 1px solid #5D5D5D !important;
*/
	}
	.program-year-edit > .table-box table.tbl2 td {
		border: 1px solid #5D5D5D !important;
	}

	.pc-search.program.year .left {
		display: block;
		width: 30%;
		float: left;
	}
	.pc-search.program.year .right {
		width: 55%;
		margin-top: 0;
	}
	.pc-search.program.year .right li {
		border-bottom: none !important;
	}
	.face-photo {
		width: 100%;
	}
	.kinder-name {
		margin-top: 10px;
		display: block;
		font-size: 1.1em;
		text-align: center;
	}
	.kinder-name {
		display: block;
	}

	/**/
	.pc-search .body > ul > li > ol > li.date select {
		width: 24%;
		float: none;
	}
	.pc-search-result.nap-check .bt-check {
		width: 21px;
		margin-left: 0;
	}
	.pc-search-result.nap-check .bt-delete {
		width: 60px;
	}
	.pc-search-result.nap-check .bt-download {
		display: none;
	}
	.in.v1 {
		padding-left: 5px;
		padding-right: 5px;
	}
	.pc-search.program.year ol.check li:not(:first-child) {
		margin-left: 0;
	}
	.pc-search.program.year .value {
		float: right;
		width: 50%;
	}
	.table-box table.w3 {
		min-width: 500px;
	}
	.btn-wp.smt.v1,
	.btn-wp.smt.v2
	{
		max-width: 400px;
		margin: 0 auto 5px;
	}
	.in.v2 {
		padding-left: 0;
		padding-right: 0;
	}
	.util-list li {
		display: inline-block;
		padding: 3px 5px;
	}
	.util-list li a {
		font-size: 1em;
	}
}

@media print {
	.print-inline {
		display: inline !important;
	}
	.print-ib {
		display: inline-block !important;
	}
	.print-block {
		display: block !important;
	}
	.school-name {
		display: block !important;
	}
	.print-tbl {
		display: table !important;
		visibility: visible;
	}
}
/*ADD 20191111 koike <- */

.input-alert {
	background-color: #fff3a3;
}

.dailyboard-tab-btn{
	text-align: right;
	width: 70%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.dailyboard-tab-btn__child {
	width: 61px;
	color: white;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 15px;
	margin: 0 0 5px 3px;
	text-align: center;
}

#system-branch {
    position: absolute;
	top: 0.3em;
	right : 0.3em;
}