#bigbox {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
}

#bigbox .header {
  height: 5rem;
  width: 100%;
  background: url(../img/schedule-bg.png) no-repeat center center;
  background-size: 100% 100%;
  text-align: center;
  line-height: 5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

#bigbox .mainbox {
  position: relative;
  margin: 2rem auto;
  width: 92%;
  height: calc(100vh - 9rem);
}

#bigbox .mainbox .itembox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#bigbox .mainbox .itembox .code {
  font-size: 2rem;
  background: #cbc4c6;
  padding: 1.5rem 1rem;
  margin-bottom: 2.5rem;
}

#bigbox .mainbox .searchbox {
  position: absolute;
  bottom:  4rem;
  left: 50%;
  transform: translate(-50%, 0);
}

#bigbox .mainbox .searchbox .searchbtn {
  width: 30rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  background: #f2f2f4;
  border-radius: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #979797;
}

#bigbox .mainbox .searchbox .tips {
  text-align: center;
  color: #464646;
  font-size: 1.5rem;
}

.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1rem;
	max-width: 90%;
	width: calc(100% - 2rem);
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 1rem;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: 400;
	font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1rem;
	width: 40%;
	color: #8e8e8e;
	font-weight: bold;
	font-size:  1.5rem;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6rem 0;
	width: 100%;
}

.input--manami {
	overflow: hidden;
}

.input__field--manami {
	width: 100%;
	background: transparent;
	padding: 1.6rem;
	margin-bottom: 3rem;
	color: #f9f7f6;
	z-index: 100;
	opacity: 0;
}

.input__label--manami {
	width: 100%;
	position: absolute;
	text-align: left;
	padding: 1.5rem 0;
	pointer-events: none;
	font-size: 1.5rem;
}

.input__label--manami::before,
.input__label--manami::after {
	content: '';
	position: absolute;
	width: 100%;
	left: 0;
}

.input__label--manami::before {
	height: 100%;
	background: #A8A8A8;
	top: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

.input__label--manami::after {
	height: 2px;
	background: #A8A8A8;
	top: 100%;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.input__label-content--manami {
	padding: 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: -webkit-transform 0.2s, color 0.2s;
	transition: transform 0.2s, color 0.2s;
}

.input__field--manami:focus,
.input--filled .input__field--manami {
	opacity: 1;
	-webkit-transition: opacity 0s 0.2s;
	transition: opacity 0s 0.2s;
}

.input__label--manami::before,
.input__label--manami::after,
.input__label-content--manami,
.input__field--manami:focus,
.input--filled .input__field--manami {
	-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input__field--manami:focus + .input__label--manami::before,
.input--filled .input__label--manami::before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.input__field--manami:focus + .input__label--manami::after,
.input--filled .input__label--manami::after {
	opacity: 0;
}

.input__field--manami:focus + .input__label--manami .input__label-content--manami,
.input--filled .input__label--manami .input__label-content--manami {
	color: #cbc4c6;
	-webkit-transform: translate3d(0, 4.1rem, 0) scale3d(0.9, 0.9, 1);
	transform: translate3d(0, 4.1rem, 0) scale3d(0.9, 0.9, 1);
}