@charset "UTF-8";
/**
 * Author: Taigo Ito
 * Author URI: https://qwel.design/
 */
/**
 * Foundation
 * Normalize.css v8.0 | MIT License | github.com/necolas/normalize.css
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: var(--root-font-size, 16px);
}

@media (max-width: 599px) {
  html {
    font-size: 3.84vw;
  }
}

body {
  margin: 0;
  background-color: white;
  color: #262626;
  font-family: var(--font-family-base, "游ゴシック", "Yu Gothic", sans-serif);
  font-weight: var(--font-weight-base, 500);
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font-family, "游ゴシック", "Yu Gothic", sans-serif);
  font-weight: var(--heading-font-weight, 500);
}

h1 {
  font-size: var(--xxl-font-size, 2rem);
}

h2 {
  font-size: var(--xl-font-size, 1.5rem);
}

h3 {
  font-size: var(--lg-font-size, 1.33rem);
}

h4 {
  font-size: var(--md-font-size, 1.17rem);
}

h5 {
  font-weight: bold;
  font-size: var(--nr-font-size, 1rem);
}

h6 {
  font-weight: bold;
  font-size: var(--sm-font-size, 0.875rem);
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

ol, ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

li {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

strong {
  font-weight: bold;
}

small {
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

blockquote {
  margin-top: 0;
  margin-bottom: 0.75rem;
  padding-left: 1em;
  border-left: 4px solid #262626;
}

blockquote p, blockquote cite {
  font-style: italic;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

a {
  color: #4d4d4d;
  text-decoration: none;
}

a:hover {
  color: originalColor("primary");
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  display: block;
  margin: 0 auto 0.75rem;
}

figcaption {
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  text-align: center;
}

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

th {
  font-weight: 500;
  text-align: left;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

/**
 * Component - Icon
 */
.icon {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  fill: currentColor;
}

.icon__cnt {
  width: 100%;
  height: 100%;
  background: inherit;
  fill: inherit;
  pointer-events: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -ms-transform: translate(0.5px, -0.3px);
}

.icon--m {
  width: 3rem;
  height: 3rem;
}

.icon--l {
  width: 4.5rem;
  height: 4.5rem;
}

.wrapper {
  width: 100%;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #80dfff, white, #80dfff);
}

.container {
  position: relative;
  width: var(--container-base, 21rem);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .container {
    width: calc(var(--container-base, 21rem) * 3 / 2);
  }
}

@media (min-width: 768px) {
  .container {
    width: calc(var(--container-base, 21rem) * 2);
  }
}

@media (min-width: 1152px) {
  .container {
    width: calc(var(--container-base, 21rem) * 3);
  }
}

.title {
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 6px #006080;
}

.subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subMenu__item a {
  margin: auto;
  padding: .5rem 1rem;
  border: none;
  background-color: #00a1d6;
  color: white;
  text-decoration: none;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: block;
  width: 9rem;
  margin: 0 .75rem;
  padding: .25rem 1rem;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00a1d6), to(#006080));
  background: linear-gradient(#00a1d6, #006080);
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  -webkit-box-shadow: 1px 2px 2px #4d4d4d;
          box-shadow: 1px 2px 2px #4d4d4d;
  opacity: .85;
}

.subMenu__item a:hover {
  background-color: #00bdfc;
  color: white;
  text-decoration: none;
}

.subMenu__item a:hover {
  opacity: 1;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.nav {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1152px) {
  .nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

.nav__menuItem a {
  margin: auto;
  padding: .5rem 1rem;
  border: none;
  background-color: #00a1d6;
  color: white;
  text-decoration: none;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: block;
  width: 85%;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00a1d6), to(#006080));
  background: linear-gradient(#00a1d6, #006080);
  -webkit-box-shadow: 1px 2px 2px #4d4d4d;
          box-shadow: 1px 2px 2px #4d4d4d;
  opacity: .85;
}

.nav__menuItem a:hover {
  background-color: #00bdfc;
  color: white;
  text-decoration: none;
}

.nav__menuItem a:hover {
  opacity: 1;
}

.schedule {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1152px) {
  .schedule {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

.schedule__header {
  text-align: center;
}

.schedule__caption {
  display: inline-block;
  font-size: 1rem;
}

.schedule__main {
  margin-bottom: 1.5rem;
}

.schedule__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.schedule__menuItem {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .schedule__menuItem {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

.schedule__menuItem a {
  margin: auto;
  padding: .5rem 1rem;
  border: none;
  background-color: #00a1d6;
  color: white;
  text-decoration: none;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: block;
  width: 85%;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#6bd600), to(#408000));
  background: linear-gradient(#6bd600, #408000);
  -webkit-box-shadow: 1px 2px 2px #4d4d4d;
          box-shadow: 1px 2px 2px #4d4d4d;
  opacity: .85;
}

.schedule__menuItem a:hover {
  background-color: #00bdfc;
  color: white;
  text-decoration: none;
}

.schedule__menuItem a:hover {
  opacity: 1;
}

.control {
  display: inline-block;
}

.--calendar .control {
  display: block;
  width: 100%;
  text-align: right;
}

.control .select, .control .mode {
  display: inline-block;
  margin: 0 .75rem;
}

.calendar {
  width: 100%;
  padding-top: .75rem;
  background: url(./assets/logo.svg) no-repeat 50% 50%, radial-gradient(rgba(128, 223, 255, 0.3), rgba(255, 255, 255, 0.3));
}

.calendar.--editMode {
  background: url(./assets/logo.svg) no-repeat 50% 50%, rgba(128, 255, 128, 0.3);
}

.calendar__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: .75rem;
}

.calendar__prev, .calendar__next {
  display: block;
  width: 4.5rem;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  text-align: center;
}

.calendar__viewWrap {
  width: 100%;
  height: 30rem;
  overflow: scroll;
}

.calendar__viewWrap thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #d1f0fc;
}

.calendar__viewWrap tr th:first-child, .calendar__viewWrap tr td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #d1f0fc;
}

.calendar__viewWrap thead th:first-child {
  z-index: 2;
}

.calendar__view {
  margin: 0 auto 1.5rem;
}

.calendar__view tr {
  border-bottom: 1px solid gray;
}

.calendar__view tr:first-child {
  border-top: 1px solid gray;
}

.calendar__view th, .calendar__view td {
  border-right: 1px solid gray;
  text-align: center;
}

.calendar__view th:first-child, .calendar__view td:first-child {
  border-left: 1px solid gray;
}

.calendar__view th span, .calendar__view td span {
  opacity: .85;
}

.calendar__view th a, .calendar__view td a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  opacity: 1;
}

.calendar__view th a {
  display: block;
  background-color: rgba(128, 128, 128, 0.3);
  text-decoration: none;
}

.calendar__view.--small {
  min-height: 18rem;
}

.calendar__view.--small th, .calendar__view.--small td {
  width: 60px;
  height: 45px;
}

.calendar__view.--small th:first-child, .calendar__view.--small td:first-child {
  color: #d63600;
}

.calendar__view.--small th:last-child, .calendar__view.--small td:last-child {
  color: #00a1d6;
}

.calendar__view.--large {
  width: 72rem;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.calendar__view.--large th, .calendar__view.--large td {
  width: 30px;
  height: 30px;
}

.calendar__view.--large th:first-child, .calendar__view.--large td:first-child {
  width: 12rem;
}

.calendar__view.--large th.--sun, .calendar__view.--large td.--sun {
  color: #d63600;
}

.calendar__view.--large th.--sat, .calendar__view.--large td.--sat {
  color: #00a1d6;
}

.report {
  width: 100%;
  min-height: 30rem;
}

.report.--loading {
  text-align: center;
  -webkit-animation: blink 1s ease-in-out infinite alternate;
          animation: blink 1s ease-in-out infinite alternate;
}

.report__item {
  padding: 0 1.5rem;
  border: 4px solid #b3b3b3;
  border-radius: 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.report__info {
  width: 100%;
  margin: 1.5rem 0;
}

.report__info caption {
  font-weight: 700;
  text-align: left;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.report__info tr:nth-of-type(odd) {
  background-color: rgba(77, 77, 77, 0.15);
}

.report__info th {
  width: 9rem;
  padding-left: 1.5rem;
}

.report__info th, .report__info td {
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.report__activity {
  width: 100%;
  margin: 1.5rem 0;
}

.report__activity caption {
  font-weight: 700;
  text-align: left;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.report__activity th {
  width: 12rem;
  padding-left: 1.5rem;
}

.report__activity th, .report__activity td {
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.report__note {
  list-style: square;
  padding-left: 1.5rem;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
}

.report__note li {
  margin: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: 64rem;
  height: 36rem;
  margin: auto;
  border-radius: 3rem;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-transition: all ease-in-out .65s;
  transition: all ease-in-out .65s;
}

.modal.--collapse {
  width: 0;
  -webkit-transition: all ease-in-out .35s;
  transition: all ease-in-out .35s;
}

.modal__inner {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity ease-in-out .35s;
  transition: opacity ease-in-out .35s;
}

.modal__inner.--hide {
  opacity: 0;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1099;
  width: 100%;
  height: 100vh;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s;
  overflow: hidden;
}

.modal__overlay.--hide {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .35s;
  transition: opacity ease-in-out .35s;
}

.modal__overlay.--collapse {
  width: 0;
  -webkit-transition: none;
  transition: none;
}

.modal__close, .modal__prev, .modal__next {
  position: fixed;
  z-index: 1101;
  width: 4.5rem;
  height: 4.5rem;
  margin: auto;
  color: #ffffff;
}

.modal__close:hover, .modal__prev:hover, .modal__next:hover {
  text-decoration: none;
}

.modal__close.--collapse, .modal__prev.--collapse, .modal__next.--collapse {
  display: none;
}

.modal__close {
  top: 1.5rem;
  right: 1.5rem;
}

.modal__prev {
  top: 0;
  left: 1.5rem;
  bottom: 0;
}

.modal__next {
  top: 0;
  right: 1.5rem;
  bottom: 0;
}

.modal__content {
  display: none;
}

.section {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__inner {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

.section__heading {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.33rem;
  text-align: center;
}

.section__image, .section__video {
  display: block;
  width: auto;
  height: 16rem;
  margin: .75rem auto;
}

.section__image.--lg, .section__video.--lg {
  width: 100%;
  height: auto;
  margin: 0;
}

.section__image.--hide, .section__video.--hide {
  display: none;
}

.section__content {
  width: 48rem;
  margin: auto;
}

.activitiesList {
  width: 54rem;
  margin: auto;
}

.activitiesList table {
  width: 100%;
}

.activitiesList table tr:nth-child(odd) {
  background-color: rgba(128, 223, 255, 0.5);
}

.activitiesList table th, .activitiesList table td {
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: .85rem;
}

.activitiesList table th:first-child, .activitiesList table td:first-child {
  padding-left: .75rem;
}

.form {
  width: 48rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.form label {
  display: block;
}

.form input[type="text"], .form input[type="tel"], .form input[type="url"], .form input[type="email"], .form input[type="password"], .form input[type="file"], .form select, .form optgroup, .form textarea {
  display: block;
  width: 100%;
  margin-top: .375rem;
  margin-bottom: .75rem;
  padding-left: 8px;
  padding-right: 8px;
}

.form input[type="text"], .form input[type="tel"], .form input[type="url"], .form input[type="email"], .form input[type="password"], .form input[type="file"], .form select, .form optgroup {
  height: 2.8rem;
}

.form input[type="file"] {
  outline: 0;
}

.form textarea {
  padding-top: 8px;
  padding-top: 8px;
  resize: vertical;
}

.form [type="button"], .form [type="reset"], .form [type="submit"] {
  display: block;
  margin: auto;
  padding: .625rem 5rem;
  border: none;
  background-color: #00a1d6;
  color: white;
  text-decoration: none;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.form [type="button"]:hover, .form [type="reset"]:hover, .form [type="submit"]:hover {
  background-color: #00bdfc;
  color: white;
  text-decoration: none;
}

.form__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__select .form__group {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1152px) {
  .form__select .form__group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

.form__select .form__group label {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .form__select .form__group label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

.form__select .form__group select {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .form__select .form__group select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__group label {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .form__group label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media (min-width: 1152px) {
  .form__group input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

.form__messageArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__messageArea label {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .form__messageArea label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

.form__messageArea textarea {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
}

@media (min-width: 1152px) {
  .form__messageArea textarea {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

.form__receptionMonths, .form__receptionWeeks {
  margin: 1.5rem auto;
}

.form__receptionMonths caption, .form__receptionWeeks caption {
  text-align: left;
}

.form__receptionMonths tr, .form__receptionWeeks tr {
  border-bottom: 1px solid gray;
}

.form__receptionMonths tr:first-child, .form__receptionWeeks tr:first-child {
  border-top: 1px solid gray;
}

.form__receptionMonths th, .form__receptionMonths td, .form__receptionWeeks th, .form__receptionWeeks td {
  width: 3rem;
  height: 3rem;
  border-right: 1px solid gray;
  text-align: center;
}

.form__receptionMonths th:first-child, .form__receptionMonths td:first-child, .form__receptionWeeks th:first-child, .form__receptionWeeks td:first-child {
  border-left: 1px solid gray;
}

.form__message {
  margin: .75rem auto;
  font-size: 87.5%;
  line-height: 2.025;
  letter-spacing: 0.04rem;
  text-align: center;
  -webkit-transition: opacity ease-in-out .5s;
  transition: opacity ease-in-out .5s;
}

.form__message.--fade {
  opacity: 0;
}

td[data-state="0"] {
  background: rgba(128, 255, 128, 0.5);
}

td[data-state="1"] {
  background: linear-gradient(135deg, rgba(128, 255, 128, 0.5) 50%, rgba(255, 255, 128, 0.5) 51%);
}

td[data-state="2"] {
  background: linear-gradient(135deg, rgba(128, 255, 128, 0.5) 50%, rgba(255, 128, 128, 0.5) 51%);
}

td[data-state="3"] {
  background: linear-gradient(135deg, rgba(255, 255, 128, 0.5) 50%, rgba(128, 255, 128, 0.5) 51%);
}

td[data-state="4"] {
  background: rgba(255, 255, 128, 0.5);
}

td[data-state="5"] {
  background: linear-gradient(135deg, rgba(255, 255, 128, 0.5) 50%, rgba(255, 128, 128, 0.5) 51%);
}

td[data-state="6"] {
  background: linear-gradient(135deg, rgba(255, 128, 128, 0.5) 50%, rgba(128, 255, 128, 0.5) 51%);
}

td[data-state="7"] {
  background: linear-gradient(135deg, rgba(255, 128, 128, 0.5) 50%, rgba(255, 255, 128, 0.5) 51%);
}

td[data-state="8"] {
  background: rgba(255, 128, 128, 0.5);
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
