@charset "UTF-8";
/*---------------------------
    Common
---------------------------*/
* {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  word-break: break-all;
  word-wrap: break-word;
  box-sizing: border-box;
}

html {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: #333333;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 1.6px;
}

a {
  color: #333333;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #9F9F9F;
}
a:hover img {
  opacity: 0.5;
}

ul {
  list-style: none;
}

.img_wrapper {
  display: block;
  overflow: hidden;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*---------------------------
    フォーム部品
---------------------------*/
ol.wizard {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
ol.wizard:after {
  content: "";
  display: table;
  clear: both;
}
ol.wizard > li {
  position: relative;
  float: left;
  margin: 0 5px 0 15px;
  padding: 0 5px 0 10px;
  height: 40px;
  line-height: 40px;
  color: #009A5A;
  background-color: #FFE5E7;
}
ol.wizard > li:before, ol.wizard > li:after {
  position: absolute;
  margin: 0;
  padding: 0;
  content: "";
  border-style: solid;
  border-width: 20px 15px;
}
ol.wizard > li:before {
  left: -15px;
  border-color: #FFE5E7 transparent #FFE5E7 transparent;
}
ol.wizard > li:after {
  right: -30px;
  border-color: transparent transparent transparent #FFE5E7;
}
ol.wizard > li:first-child {
  margin-left: 0;
}
ol.wizard > li:first-child:before {
  border: none;
}
ol.wizard > li.active {
  color: #FFFFFF;
  background-color: #009A5A;
}
ol.wizard > li.active:before {
  border-color: #009A5A transparent #009A5A transparent;
}
ol.wizard > li.active:after {
  border-color: transparent transparent transparent #009A5A;
}

input[type="text"], input[type="password"] {
  padding: 4px;
  width: 100%;
  height: 30px;
  max-width: 700px;
  font-size: 12px;
  border: 1px solid #CCCCCC;
  transition-duration: 0.5s;
}
input:-ms-input-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input:focus {
  border-color: #FDACB0;
}
input[disabled], input[readonly] {
  background-color: #EEEEEE;
}

label.calendar {
  position: relative;
  margin: 0;
}
label.calendar > span {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 6px;
  border-left: 1px solid #CCCCCC;
  cursor: pointer;
}
label.calendar > span > i {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #9F9F9F;
}
label.calendar > span > i:hover {
  color: #CCCCCC;
}

textarea {
  resize: vertical;
  overflow-y: scroll;
  padding: 4px;
  width: 100%;
  height: 150px;
  max-width: 700px;
  font-size: 12px;
  border: 1px solid #CCCCCC;
  transition-duration: 0.5s;
}
textarea:-ms-input-placeholder {
  color: #999999;
}
textarea::-moz-placeholder {
  color: #999999;
}
textarea::-webkit-input-placeholder {
  color: #999999;
}
textarea:focus {
  border-color: #FDACB0;
}
textarea[disabled], textarea[readonly] {
  color: #999999;
  background-color: #EEEEEE;
}

div.length-rest,
div.length-over {
  width: 100%;
  max-width: 700px;
  font-size: 11px;
  text-align: right;
}

div.length-over {
  color: #CC0033;
}

select {
  padding: 4px;
  width: 100%;
  max-width: 700px;
  font-size: 12px;
  color: #333333;
  border: 1px solid #CCCCCC;
  transition-duration: 0.5s;
}
select:focus {
  border-color: #FDACB0;
}

label {
  margin-right: 20px;
}
label[for="publish_start_date"], label[for="publish_end_date"] {
  margin-right: 0;
}
label.checkbox {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding-left: 25px;
  overflow: hidden;
  cursor: pointer;
}
label.checkbox:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #CCCCCC;
  z-index: 3;
}
label.checkbox:after {
  display: block;
  position: absolute;
  top: 40%;
  left: 4px;
  content: '';
  margin-top: -9px;
  width: 5px;
  height: 10px;
  border-right: 3px solid #FDACB0;
  border-bottom: 3px solid #FDACB0;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: block;
  position: absolute;
  left: -42px;
  margin: 0;
  padding: 0;
  width: 15px;
  height: 15px;
  box-shadow: 42px 0 #FFFFFF;
  z-index: 2;
}
label.checkbox input[type="checkbox"]:checked {
  box-shadow: none;
}
label.checkbox input[type="checkbox"]:checked:focus {
  opacity: 0.1;
  box-shadow: 42px 0 #FFFFFF;
}
label.checkbox input[type="checkbox"]:focus {
  box-shadow: 42px 0 #FFFFFF;
}
label.checkbox input[type="checkbox"]:disabled {
  box-shadow: 42px 0 #EEEEEE;
}
label.check_button {
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  cursor: pointer;
}
label.check_button > span {
  display: inline-block;
  margin: 0 2px 2px 0;
  padding: 2px 10px;
  color: #FFFFFF;
  text-align: center;
  background-color: #CCCCCC;
  border-radius: 4px;
  white-space: nowrap;
  transition-duration: 0.5s;
}
label.check_button input[type="checkbox"],
label.check_button input[type="radio"] {
  display: none;
}
label.check_button input[type="checkbox"]:disabled + span,
label.check_button input[type="radio"]:disabled + span {
  background-color: #999999;
  cursor: default;
}
label.check_button input[type="checkbox"]:checked + span,
label.check_button input[type="radio"]:checked + span {
  background-color: #FD6A0A;
}
label.check_button_pay {
  cursor: pointer;
}
label.check_button_pay img {
  max-height: 50px;
  margin-top: 5px;
  margin-bottom: 5px;
  vertical-align: middle;
  max-width: 250px;
}
img.button_pay_1, img.button_pay_2 {
  margin-left: 10px;
}
img.button_pay_3, img.button_pay_5 {
  margin-left: 20px;
}
label.check_switch {
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  cursor: pointer;
}
label.check_switch > span.switch_on,
label.check_switch > span.switch_off,
label.check_switch > span.switch {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  width: 40px;
  height: 20px;
  background-color: #CCCCCC;
  border-radius: 10px;
  vertical-align: middle;
  transition-duration: 0.3s;
}
label.check_switch > span.switch:after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  transition-duration: 0.3s;
}
label.check_switch > span.switch_on:after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  transition-duration: 0.3s;
  left: 20px;
  }
  label.check_switch > span.switch_off:after {
    position: absolute;
    display: block;
    box-sizing: border-box;
    content: "";
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    transition-duration: 0.3s;
    }

label.check_switch input[type="checkbox"],
label.check_switch input[type="radio"] {
  display: none;
}
label.check_switch input[type="checkbox"]:disabled + span,
label.check_switch input[type="radio"]:disabled + span {
  background-color: #999999;
  cursor: default;
}
label.check_switch input[type="checkbox"]:disabled + span:after,
label.check_switch input[type="radio"]:disabled + span:after {
  background-color: #CCCCCC;
  border: 1px solid #999999;
}
label.check_switch input[type="checkbox"]:checked + span,
label.check_switch input[type="radio"]:checked + span {
  background-color: #009A5A;
}
label.check_switch input[type="checkbox"]:checked + span:after,
label.check_switch input[type="radio"]:checked + span:after {
  left: 20px;
  border: 1px solid #009A5A;
}
label.radio {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding-left: 25px;
  overflow: hidden;
  cursor: pointer;
}
label.radio:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  z-index: 3;
}
label.radio:after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #FDACB0;
  z-index: 1;
}
label.radio input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: -20px;
  margin: 0;
  width: 15px;
  height: 15px;
  z-index: 2;
  box-shadow: 20px -1px #FFFFFF;
}
label.radio input[type="radio"]:checked {
  box-shadow: none;
}
label.radio input[type="radio"]:focus {
  opacity: 0.1;
  box-shadow: 20px -1px #FFFFFF;
}
label.radio input[type="radio"]:disabled {
  box-shadow: 20px -1px #EEEEEE;
}

.error > input[type="text"],
input[type="text"].error,
.error > input[type="password"],
input[type="password"].error,
.error > input[type="checkbox"],
input[type="checkbox"].error,
.error > input[type="radio"],
input[type="radio"].error,
.error > textarea,
textarea.error,
.error > select,
select.error {
  border: 1px solid #CC0033;
}

nav.button {
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
nav.button:after {
  content: "";
  display: table;
  clear: both;
}
nav.button.border-top {
  padding: 10px 0;
  border-top: 1px solid #CCCCCC;
}
nav.button > div.button-left {
  float: left;
  text-align: left;
}
nav.button > div.button-left > button,
nav.button > div.button-left > a.button {
  margin: 0 10px 10px 0;
}
nav.button > div.button-right {
  float: right;
  text-align: left;
}
nav.button > div.button-right > button,
nav.button > div.button-right > a.button {
  margin: 0 0 10px 10px;
}
nav.button button,
nav.button a.button {
  position: relative;
  display: inline-block;
  margin: 0 3px 10px 3px;
  padding: 5px 30px;
  min-width: 140px;
  min-height: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: center;
  background-color: #009661;
  border: 1px solid #009661;
  border-radius: 4px;
}
nav.button button:hover,
nav.button a.button:hover {
  color: #009661;
  background-color: #CAF4EC;
  cursor: pointer;
}
nav.button button:disabled, nav.button button.disabled,
nav.button a.button:disabled,
nav.button a.button.disabled {
  color: #999999;
  background-color: #EEEEEE;
  border: 1px solid #EEEEEE;
  cursor: default;
}
nav.button button:disabled:hover, nav.button button.disabled:hover,
nav.button a.button:disabled:hover,
nav.button a.button.disabled:hover {
  background-color: #EEEEEE;
}
nav.button button > i.fa,
nav.button a.button > i.fa {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  line-height: 30px;
}
nav.button button > i.fa.fa-chevron-circle-left, nav.button button > i.fa.fa-search,
nav.button a.button > i.fa.fa-chevron-circle-left,
nav.button a.button > i.fa.fa-search {
  right: auto;
  left: 10px;
}
nav.button button.red,
nav.button a.button.red {
  background-color: #CC0033;
  border: 1px solid #CC0033;
}
nav.button button.red:hover,
nav.button a.button.red:hover {
  color: #CC0033;
  background-color: #FFE5E7;
}
nav.button button.green,
nav.button a.button.green {
  background-color: #009661;
  border: 1px solid #009661;
}
nav.button button.green:hover,
nav.button a.button.green:hover {
  color: #009661;
  background-color: #CAF4EC;
}
nav.button button.blue,
nav.button a.button.blue {
  background-color: #095590;
  border: 1px solid #095590;
}
nav.button button.blue:hover,
nav.button a.button.blue:hover {
  color: #095590;
  background-color: #E8F0F6;
}
nav.button button.orange,
nav.button a.button.orange {
  background-color: #FD6A0A;
  border: 1px solid #FD6A0A;
}
nav.button button.orange:hover,
nav.button a.button.orange:hover {
  color: #FD6A0A;
  background-color: #FFEDDD;
}
nav.button button.yellow,
nav.button a.button.yellow {
  background-color: #F0E68C;
  border: 1px solid #F0E68C;
}
nav.button button.yellow:hover,
nav.button a.button.yellow:hover {
  color: #F0E68C;
  background-color: #FFF1C0;
}

/*---------------------------
    共通部品
---------------------------*/
p.note,
p.attention {
  margin: 0;
  padding: 2px 0;
  font-size: 11px;
}
p.note:before,
p.attention:before {
  content: "※";
}

p.note {
  color: #9F9F9F;
}

p.attention,
span.red {
  color: #CC0033;
}

p.attention-l {
  margin: 0;
  padding: 2px 0;
  font-size: 1.17em;
}

p.attention-l:before {
  content: "※";
}

p.attention-l,
span.red {
  color: #CC0033;
}

p.info,
p.success,
p.warning,
p.error {
  position: relative;
  padding: 10px 10px 10px 30px;
}
p.info > i.fa,
p.success > i.fa,
p.warning > i.fa,
p.error > i.fa {
  position: absolute;
  left: 7px;
  font-size: 17px;
}

p.info {
  color: #095590;
  background-color: #E8F0F6;
  border-left: 5px solid #095590;
}

p.success {
  color: #009661;
  background-color: #CAF4EC;
  border-left: 5px solid #009661;
}

p.warning {
  color: #FD6A0A;
  background-color: #FFEDDD;
  border-left: 5px solid #FD6A0A;
}

p.error {
  color: #CC0033;
  background-color: #FFE5E7;
  border-left: 5px solid #CC0033;
}

td.nowrap {
  white-space: nowrap;
}

span.icon {
  display: inline-block;
  margin: 0 2px 2px 0;
  padding: 2px 5px;
  color: #FFFFFF;
  text-align: center;
  background-color: #00966156;
  border-radius: 4px;
  white-space: nowrap;
}
span.icon i {
  padding-right: 5px;
  font-size: 12px;
}
span.icon i.no_padding {
  padding: 2px;
}
span.icon > a {
  color: #FFFFFF;
}
span.icon.red {
  background-color: #CC0033;
}
span.icon.green {
  background-color: #009661;
}
span.icon.lime {
  background-color: #66BD66;
}
span.icon.blue {
  background-color: #095590;
}
span.icon.skyblue {
  background-color: #87CEEB;
}
span.icon.orange {
  background-color: #FD6A0A;
}
span.icon.yellow {
  background-color: #F0E68C;
}
span.icon.gray {
  background-color: #CCCCCC;
}
span.icon.goldenrod {
  background-color: #DAA520;
}
span.icon.text-color {
  color: #333333;
}
span.icon.detail {
  background-color: #6EA6A2;
}
span.icon.detail:hover {
  background-color: #009661;
}
span.icon.edit {
  background-color: #FFAB6B;
}
span.icon.edit:hover {
  background-color: #FD6A0A;
}
span.icon.list-approve {
  background-color: #EB4F76;
}
span.icon.list-approve:hover {
  background-color: #CC0033;
}
span.icon.valid {
  font-size: 11px;
  color: #009661;
  background-color: #CAF4EC;
  border: 1px solid #009661;
}
span.icon.invalid {
  font-size: 11px;
  color: #666666;
  background-color: #F2F2F2;
  border: 1px solid #666666;
}
span.icon.important {
  font-size: 11px;
  background-color: #CC0033;
}
span.icon.draft {
  background-color: #009661;
}
span.icon.return {
  background-color: #F0E68C;
}
span.icon.wait {
  background-color: #FD6A0A;
}
span.icon.approve {
  background-color: #095590;
}
span.icon.calendar {
  background-color: #095590;
  border: 1px solid #095590;
  cursor: pointer;
}
span.icon.calendar:hover {
  color: #095590;
  background-color: #E8F0F6;
  border: 1px solid #095590;
}
span.icon.calendar i {
  padding: 2px;
  font-size: 16px;
}
span.icon.badgeforh2 {
  font-size: 13px;
  line-height: 170%;
  font-weight: normal;
}
span.icon.badge-small {
  line-height: 18px;
}

div.search-form > i.fa.search-form-icon {
  display: inline;
}

div.search-form > form > i.fa.search-form-icon {
  display: inline;
}

/* 未検済アイコン */
span.icon.certified {
  color: #009661;
  background-color: #CAF4EC;
  border: 1px solid #009661;
}
/* 未検証アイコン */
span.icon.uncertified {
  color: #CC0033;
  background-color: #FFE5E7;
  border: 1px solid #CC0033;
}

/*---------------------------
    サイズ
---------------------------*/
.text11 {
  font-size: 11px;
}

.text11i {
  font-size: 11px !important;
}

.text12 {
  font-size: 12px;
}

.text12i {
  font-size: 12px !important;
}

.text13 {
  font-size: 13px;
}

.text13i {
  font-size: 13px !important;
}

.text14 {
  font-size: 14px;
}

.text14i {
  font-size: 14px !important;
}

.text15 {
  font-size: 15px;
}

.text15i {
  font-size: 15px !important;
}

.text16 {
  font-size: 16px;
}

.text16i {
  font-size: 16px !important;
}

.text20 {
  font-size: 20px;
}

.text20i {
  font-size: 20px !important;
}

.width100 {
  width: 100px;
}

.width100p {
  width: 100% !important;
}

.width200 {
  width: 200px;
}

.width200i {
  width: 200px !important;
}

.width250 {
  width: 250px;
}

.width250i {
  width: 250px !important;
}

.width500 {
  width: 500px;
}

.width500i {
  width: 500px !important;
}

.height100 {
  height: 100px;
}

.height100i {
  height: 100px !important;
}

.height250 {
  height: 250px;
}

.height250i {
  height: 250px !important;
}

.margin-bottom5 {
  margin-bottom: 5px;
}

.margin-bottom30 {
  margin-bottom: 30px;
}

/*---------------------------
   位置
---------------------------*/
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.ime_disabled {
  ime-mode: disabled;
}

/*---------------------------
   可能・不可能色・抽選・予約済み
---------------------------*/
.available {
  background-color: #87CEEB;
}

.unavailable {
  background-color: #EEEEEE;
}

.available-lottery {
  background-color: #F0E68C;
}

.available-busy {
  background-color: #92D050;
}

.reserved {
  background-color: #000000;
}

/*---------------------------
    メッセージのNewの点滅
---------------------------*/
span.mail > b {
  color: #d70d0d;
  font-size: 16px;
  animation: switchtext 2.0s infinite alternate;
}
@keyframes switchtext {
  from {
    opacity: 1.0;
  }
  to {
    opacity: 0;
  }
}
