/* html5doctor.com Reset Stylesheet v1.6.1 Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;700&display=swap");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, 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: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  clear: both;
}

a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  color: #646464;
  overflow-x: hidden;
  width: 100%;
  min-width: 375px;
}

body, #wrapper, #wrap {
  position: relative;
  z-index: 0;
}

#js_loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffe51c;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
#js_loader:after {
  -webkit-animation: loader 1s linear infinite;
          animation: loader 1s linear infinite;
  border: 3px solid #5497a7;
  border-radius: 50%;
  border-right: 3px solid rgba(84, 151, 167, 0.2);
  border-top: 3px solid rgba(84, 151, 167, 0.2);
  content: "";
  height: 50px;
  width: 50px;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#cover {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  display: none;
}

#cover.on {
  display: block;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 80px 0 1em;
  background: #ffe51c;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 100;
}
header.is_home h1 {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
header h1 {
  color: #646464;
  white-space: nowrap;
  display: inline-block;
}
header h1 a {
  text-decoration: none;
  color: #646464;
}
header nav {
  display: none;
}
@media screen and (min-width: 768px) {
  header nav {
    display: block;
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header nav ul li:not(:last-child) {
  border-right: solid 1px #5497a7;
}
header nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #5497a7;
  padding: 0 1em;
}
header > div p {
  margin-bottom: 0.2em;
}
header > div p i {
  margin: 0 0.2em 0 0;
}
header > div p span {
  color: #5497a7;
  font-weight: bold;
  font-size: 120%;
}
header > div > a {
  text-decoration: none;
  display: inline-block;
  background: #5497a7;
  border-radius: 1em;
  padding: 0.3em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 70%;
}
header > div > a i {
  margin: 0 0.8em 0 0;
  color: #ffe51c;
}
header.visible {
  top: 0;
}
header.invisible {
  top: -100%;
}

#g_menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 4em;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  -webkit-transition: all 1s;
  transition: all 1s;
}
#g_menu_wrap .g_menu_ico {
  background: #5497a7;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  margin: 10px;
  cursor: pointer;
}
#g_menu_wrap .g_menu_ico .g_menu_bar {
  display: inline-block;
  width: 50%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#g_menu_wrap .g_menu_ico .bar1 {
  top: 13px;
}
#g_menu_wrap .g_menu_ico .bar2 {
  top: 24px;
}
#g_menu_wrap .g_menu_ico .bar3 {
  top: 35px;
}
#g_menu_wrap .g_menu_on .g_menu_bar {
  top: 50%;
}
#g_menu_wrap .g_menu_on .bar1 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#g_menu_wrap .g_menu_on .bar2 {
  display: none;
}
#g_menu_wrap .g_menu_on .bar3 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#g_nav {
  display: none;
  background: #fff397;
  position: fixed;
  right: 0;
  z-index: 102;
  padding: 2em 2em;
  height: 100%;
  overflow-y: scroll;
  background: #ffe51c;
}
#g_nav > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#g_nav > div > div {
  margin: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#g_nav > div > div h1 {
  text-align: center;
}
#g_nav > div > div h1 img {
  max-width: 100%;
  width: 11em;
}
#g_nav > div > div h1 p {
  margin: 0.5em;
  white-space: nowrap;
}
#g_nav > div > div > div:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em 0;
  text-align: center;
}
#g_nav > div > div > div:nth-of-type(1) i:first-of-type {
  margin: 0 0.3em 0 0;
}
#g_nav > div > div > div:nth-of-type(1) p {
  font-size: calc(14px + 2vw);
  white-space: nowrap;
  font-weight: bold;
  color: #5497a7;
  position: relative;
}
#g_nav > div > div > div:nth-of-type(1) a {
  display: inline-block;
  text-decoration: none;
  margin: 0 0 0 1em;
  color: #5497a7;
  border: solid 1px #5497a7;
  border-radius: 1em;
  padding: 0.2em 0.5em;
  font-size: 90%;
}
#g_nav > div > ul {
  font-size: calc(10px + 1vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#g_nav > div > ul li {
  margin: 0.5em 0;
  width: 48%;
}
#g_nav > div > ul li a {
  display: inline-block;
  width: 100%;
  padding: 1em 1.5em 1em 0.5em;
  text-decoration: none;
  position: relative;
  line-height: 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #5497a7;
  color: #ffe51c;
  border-radius: 3em;
  font-size: calc(10px + 0.8vw);
}
#g_nav > div > ul li a > p {
  margin: 0.2em 0 0 0;
  text-align: center;
}
#g_nav > div > ul li a > p > span {
  white-space: nowrap;
  display: inline-block;
}

#home_top {
  background: #ffe51c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
#home_top > div:first-of-type {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
#home_top > div:first-of-type > div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 2em 1em;
  position: relative;
  z-index: 1;
  height: 100%;
  z-index: 5;
}
#home_top > div:first-of-type > div:first-of-type > div:first-of-type {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#home_top > div:first-of-type > div:first-of-type > div:first-of-type h1 {
  font-size: calc(16px + 3vw);
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  paint-order: stroke;
  white-space: nowrap;
  display: inline-block;
  margin: 3em 0 0 3vw;
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-animation: right_slide 3s forwards;
          animation: right_slide 3s forwards;
}
#home_top > div:first-of-type > div:first-of-type > div:first-of-type .pconly {
  margin: 0 5%;
}
#home_top > div:first-of-type > div:first-of-type > div:nth-of-type(2) {
  width: 30%;
}
#home_top > div:first-of-type > div:first-of-type > div:nth-of-type(2) p.home_pop {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-top: 3em;
  font-size: calc(10px + 2vw);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  opacity: 0;
  -webkit-animation: top_down_fade 3s 2s forwards;
          animation: top_down_fade 3s 2s forwards;
}
#home_top > div:first-of-type > div:first-of-type > div:nth-of-type(2) p.home_pop span {
  white-space: nowrap;
  display: inline-block;
  background: #ffe51c;
  padding: 0.2em;
  margin: 0.3em;
  color: #5497a7;
  display: inline-block;
}
@-webkit-keyframes top_down_fade {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes top_down_fade {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes right_slide {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes right_slide {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
#home_top > div:first-of-type > div#home_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#home_top > div:first-of-type > div#home_container > img {
  position: relative;
  top: -1px;
  width: 100%;
  z-index: 3;
}
#home_top > div:first-of-type > div#home_container > video#introVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: opacity 2s ease, -webkit-transform 3s ease;
  transition: opacity 2s ease, -webkit-transform 3s ease;
  transition: opacity 2s ease, transform 3s ease;
  transition: opacity 2s ease, transform 3s ease, -webkit-transform 3s ease;
  z-index: 2;
}
#home_top > div:first-of-type > div#home_container #introVideo.is-start {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#home_top > div:first-of-type > div#home_container #introVideo.is-end {
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
#home_top > div:first-of-type > div#home_container > div#slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1;
}
#home_top > div:first-of-type > div#home_container > div#slideshow > .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#home_top > div.sponly {
  background: #fff;
  padding: 5vw 0;
}
#home_top > div.sponly table {
  width: 90%;
  margin: 0 5%;
}
#home_top > div.sponly > div {
  margin: 1em 5%;
}

@media screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

.pconly {
  display: none;
}
@media screen and (min-width: 768px) {
  .pconly {
    display: inline-block;
  }
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
#wrapper #wrap {
  width: 100%;
}
#wrapper #side {
  display: none;
}
@media screen and (min-width: 768px) {
  #wrapper #side {
    display: block;
    width: 100%;
  }
}

div.hours table {
  background: #fff;
  border-collapse: collapse;
}
div.hours table tr th:first-of-type {
  width: 6em;
  padding: 0.8em 0;
  line-height: 1.6em;
}
div.hours table tr td, div.hours table tr th {
  border: 1px solid #e5cf7c;
  border-collapse: collapse;
  padding: 3px;
  width: 30px;
  height: 25px;
  text-align: center;
  vertical-align: middle;
}
div.hours table tr th {
  background: #feffd3;
  font-weight: bold;
}
div.hours table tr th > span {
  font-weight: normal;
}
div.hours table tr td {
  color: #5497a7;
}
div.hours table tr td > span {
  font-size: 80%;
  font-weight: bold;
}
div.hours > div {
  margin: 1em 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1em;
}
div.hours > div > span {
  display: inline-block;
  margin: 0 0.6em 0 0;
  background: #ffe51c;
  border-radius: 1em;
  padding: 0.2em 0.8em;
}

article#home_about,
article#about_01 {
  padding: 3em 0 0 0;
}
article#home_about > div:first-of-type,
article#about_01 > div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
article#home_about > div:first-of-type > div,
article#about_01 > div:first-of-type > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: hidden;
  background: url(../_img/home_about_02.png) no-repeat right center;
}
article#home_about > div:first-of-type > div h3,
article#about_01 > div:first-of-type > div h3 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: calc(10px + 2vw);
}
article#home_about > div:first-of-type > div h3 > span,
article#about_01 > div:first-of-type > div h3 > span {
  display: inline-block;
  margin: 0 0.3em;
  padding: 0.2em;
}
article#home_about > div:first-of-type > div h3 > span > span,
article#about_01 > div:first-of-type > div h3 > span > span {
  text-combine-upright: all;
}
article#home_about > div:first-of-type > div h3 > span:first-child,
article#about_01 > div:first-of-type > div h3 > span:first-child {
  background: #fff;
}
article#home_about > div:first-of-type > div h3 > span:not(:first-child),
article#about_01 > div:first-of-type > div h3 > span:not(:first-child) {
  background: #ffe51c;
}
article#home_about > div:first-of-type > div img,
article#about_01 > div:first-of-type > div img {
  width: 30vw;
  max-width: 100%;
  margin: 1em;
}
article#home_about > div:first-of-type > dl,
article#about_01 > div:first-of-type > dl {
  font-size: calc(8px + 1.5vw);
  line-height: 1.8em;
  margin: 0 8%;
}
article#home_about > div:first-of-type > dl dt,
article#about_01 > div:first-of-type > dl dt {
  margin: 0 0 0.5em 0;
}
article#home_about > div:first-of-type > dl dt span,
article#about_01 > div:first-of-type > dl dt span {
  border: solid 2px #ffe51c;
  border-radius: 1em;
  padding: 0.2em 1em;
  font-size: 80%;
}
article#home_about > div:first-of-type > dl dd:nth-of-type(10),
article#about_01 > div:first-of-type > dl dd:nth-of-type(10) {
  letter-spacing: -0.2em;
}
article#home_about > div.swiper,
article#about_01 > div.swiper {
  width: 100%;
  margin: 3em 0;
}
article#home_about > div.swiper > div > div img,
article#about_01 > div.swiper > div > div img {
  width: 80vw;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  article#home_about > div.swiper > div > div img,
  article#about_01 > div.swiper > div > div img {
    width: 40vw;
  }
}

article#home_about h3 {
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  opacity: 0;
}
article#home_about h3.in {
  -webkit-animation: top_down_fade 3s forwards;
          animation: top_down_fade 3s forwards;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto !important;
}

.separator {
  width: 100vw;
  position: relative;
  top: -2em;
}
.separator .st0 {
  fill: #ffe51c;
  clip-path: url(#clip);
}
.separator #clip rect {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.separator #clip rect.in {
  -webkit-animation: svganm 2.5s linear forwards;
          animation: svganm 2.5s linear forwards;
}
@-webkit-keyframes svganm {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes svganm {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

#home_daycare {
  position: relative;
  top: -5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #home_daycare {
    top: -12em;
  }
}
#home_daycare > div:first-of-type {
  margin: 0 5% 2em 5%;
}
#home_daycare > div:first-of-type span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 3px #ffe51c;
  background: #fff;
  border-radius: 50%;
  width: 5em;
  height: 5em;
  font-size: calc(10px + 2vw);
}
#home_daycare > div:nth-of-type(2) {
  padding: 0 5%;
}
#home_daycare > div:nth-of-type(2) h2 {
  margin-bottom: 2em;
}
#home_daycare > div:nth-of-type(2) h2 p {
  line-height: 2em;
}
#home_daycare > div:nth-of-type(2) h2 p:first-child {
  font-size: calc(10px + 2vw);
}
#home_daycare > div:nth-of-type(2) h2 p:last-child {
  font-size: calc(20px + 2vw);
}
#home_daycare > div:nth-of-type(3) {
  position: relative;
  width: 70%;
  height: 480px;
  margin: 0 auto;
}
#home_daycare > div:nth-of-type(3) > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  margin-bottom: 2em;
}
#home_daycare > div:nth-of-type(3) > img:nth-child(2) {
  opacity: 0;
}
#home_daycare > div:nth-of-type(3) > img:nth-child(2).in {
  -webkit-animation: fadein 2s 0s forwards;
          animation: fadein 2s 0s forwards;
}
#home_daycare > div:nth-of-type(3) > img:last-child {
  opacity: 0;
}
#home_daycare > div:nth-of-type(3) > img:last-child.in {
  -webkit-animation: fadein 2s 0.5s forwards;
          animation: fadein 2s 0.5s forwards;
}
#home_daycare > p {
  line-height: 2em;
  margin: 2em 5% 0 5%;
  opacity: 0;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
#home_daycare > p.in {
  -webkit-animation: fadeinup 1s forwards;
          animation: fadeinup 1s forwards;
}
@-webkit-keyframes fadeinup {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeinup {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

.learnmore {
  width: 100%;
  text-align: center;
  margin: 2em 0;
}
.learnmore a {
  display: inline-block;
  text-decoration: none;
  width: 60vw;
  background: #5497a7;
  border-radius: 3em;
  color: #ffe51c;
  padding: 1em;
  position: relative;
  font-size: calc(10px + 2vw);
}
.learnmore a:after {
  content: "\f0a9";
  font: var(--fa-font-solid);
  position: absolute;
  right: 1em;
  top: calc(50% - 0.5em);
}
.learnmore a:hover {
  background: #ffe51c;
  color: #5497a7;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

article.about {
  margin: 3em 0;
}
article.about > h3 {
  text-align: center;
  margin: 2em 0;
  font-size: calc(10px + 2vw);
}
article.about > h3 span {
  display: inline-block;
  background: #ffe51c;
  border-radius: 2em;
  padding: 0.5em 2em;
}

#about_01 > div:nth-of-type(2) {
  margin: 2em 5%;
}
#about_01 > div:nth-of-type(2) > p {
  line-height: 2em;
}

#about_doctor > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#about_doctor > div > div:first-of-type > div {
  width: 90vw;
}
@media screen and (min-width: 768px) {
  #about_doctor > div > div:first-of-type > div {
    margin: 0 5vw;
  }
}
#about_doctor > div > div:first-of-type > div > p {
  line-height: 2.5em;
  margin-bottom: 1em;
}
#about_doctor > div > div:first-of-type > img {
  display: none;
}
@media screen and (min-width: 768px) {
  #about_doctor > div > div:first-of-type > img {
    display: inline-block;
    width: 30vw;
  }
}
#about_doctor > div > div:last-of-type > div {
  width: 60vw;
  margin: 0 5vw;
}
@media screen and (min-width: 768px) {
  #about_doctor > div > div:last-of-type > div {
    width: 90vw;
  }
}
#about_doctor > div > div:last-of-type > div > p {
  font-weight: bold;
  font-size: 120%;
  margin: 2em 0 1em 0;
}
#about_doctor > div > div:last-of-type > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#about_doctor > div > div:last-of-type > div > div > p:first-child {
  font-weight: bold;
  white-space: nowrap;
  margin: 0.25em 2em 0 0;
}
#about_doctor > div > div:last-of-type > div > div > p:last-child span {
  display: inline-block;
  white-space: nowrap;
}
#about_doctor > div > div:last-of-type > div > div > p:last-child span:first-child {
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 0.3em;
}
#about_doctor > div > div:last-of-type > img {
  width: 30vw;
}
@media screen and (min-width: 768px) {
  #about_doctor > div > div:last-of-type > img {
    display: none;
  }
}

#about_profile > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  #about_profile > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#about_profile > div img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #about_profile > div img {
    width: 40vw;
  }
}
#about_profile > div > div {
  width: 90%;
  text-align: center;
  margin: 2em 5%;
}
@media screen and (min-width: 768px) {
  #about_profile > div > div {
    margin: 0 5%;
  }
}
#about_profile > div > div h1 {
  font-size: calc(12px + 3vw);
  line-height: 1.6em;
  margin-bottom: 0.5em;
}
#about_profile > div > div h1 span {
  white-space: nowrap;
  display: block;
}
#about_profile > div > div h1 span:first-of-type {
  font-size: calc(8px + 2vw);
}
#about_profile > div > div p {
  line-height: 1.2em;
  margin: 0.5em 1em;
}
#about_profile > div > div p i {
  margin: 0 0.2em 0 0;
}
#about_profile dl {
  width: 90%;
  margin: 2em 5%;
  overflow: hidden;
  line-height: 1.8em;
  background: rgba(255, 229, 28, 0.2);
  border: solid 3px #ffe51c;
}
#about_profile dl dt {
  float: none;
  padding: 0.8em 1.5em;
  width: 100%;
  border-top: solid 3px #ffe51c;
  text-align: center;
  font-weight: bold;
}
#about_profile dl dt:first-of-type {
  border-top: solid 3px transparent;
}
@media screen and (min-width: 768px) {
  #about_profile dl dt {
    float: left;
    padding: 2em;
    width: 10em;
    clear: both;
  }
}
#about_profile dl dd {
  margin: 0;
  padding: 0.8em 1.5em 2em 1.5em;
  width: 100%;
  background: #fff;
  border-top: solid 3px #ffe51c;
}
@media screen and (min-width: 768px) {
  #about_profile dl dd {
    margin-left: 10em;
    padding: 2em;
  }
  #about_profile dl dd:first-of-type {
    border-top: solid 3px transparent;
  }
}

#about_guide ul {
  margin: 1em 5%;
}

#about_access > dl {
  margin: 1em 5% 2em 5%;
}
#about_access > dl dt {
  margin: 0 0 0.5em 0;
}
#about_access > dl dt i {
  font-size: 120%;
  margin-right: 0.3em;
}
#about_access > dl dd {
  padding-left: 2em;
}
#about_access > dl dd:before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background-color: #ffe51c;
  position: relative;
  bottom: 0.5em;
  margin-right: 0.5em;
}
#about_access #gmap {
  width: 90%;
  margin: 0 5%;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
#about_access #gmap iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#daycare_top {
  background: url(../_img/day_home01.jpg) no-repeat center center;
  background-size: cover;
}
#daycare_top h2 {
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 229, 28, 0.7);
}
#daycare_top h2 > p {
  font-weight: bold;
  text-align: center;
}
#daycare_top h2 > p:first-of-type {
  font-size: calc(10px + 2vw);
  line-height: 1.3em;
  margin-bottom: 0.8em;
}
#daycare_top h2 > p:last-of-type {
  font-size: calc(20px + 2vw);
}
#daycare_top div {
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#daycare_top div > p {
  padding: 1em 5%;
  line-height: 2em;
  background: rgba(255, 255, 255, 0.7);
}

#wrap.daycare > article {
  padding: 3em 5%;
}
#wrap.daycare > article > h3 {
  text-align: center;
  margin: 2em 0;
  line-height: 1.5em;
}
#wrap.daycare > article > h3 > span {
  display: inline-block;
  background: #ffe51c;
  border-radius: 2em;
  padding: 0.5em 2em;
  font-size: calc(10px + 2vw);
}

#daycare_purpose ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#daycare_purpose ul li {
  width: 300px;
  margin: 2em;
  border: solid 3px #ffe51c;
  border-radius: 20px;
  position: relative;
  height: 300px;
  background: #fff7d0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: -2;
  opacity: 0;
}
#daycare_purpose ul li.in {
  -webkit-animation: fadein 2s forwards;
          animation: fadein 2s forwards;
}
#daycare_purpose ul li > img {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: -1;
  max-width: 100%;
  -webkit-animation: scaling 5s infinite;
          animation: scaling 5s infinite;
}
#daycare_purpose ul li > span {
  display: inline-block;
  padding: 0.5em 1em;
  background: #ffe51c;
  border-radius: 10px 0 20px 0;
  font-weight: bold;
  color: #fff;
  font-size: 150%;
}
#daycare_purpose ul li > p {
  padding: 1em;
  line-height: 1.8em;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 20px 20px;
}
#daycare_purpose ul li:last-of-type > img {
  top: 15px;
}

#daycare_guide > div {
  border: solid 3px #ffe51c;
  border-radius: 20px;
  margin: 2em;
}
@media screen and (min-width: 768px) {
  #daycare_guide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#daycare_guide > div h4 {
  background: #ffe51c;
  padding: 0.5em;
  text-align: center;
  border-radius: 15px 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #daycare_guide > div h4 {
    width: 8em;
    border-radius: 15px 0 0 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#daycare_guide > div > div {
  padding: 1em;
  -ms-flex-negative: 100;
      flex-shrink: 100;
  text-align: center;
  width: 100%;
}
#daycare_guide > div:first-of-type > div {
  width: 100%;
}
#daycare_guide > div:first-of-type > div > div p {
  position: relative;
}
#daycare_guide > div:first-of-type > div > div p:first-child {
  font-weight: bold;
  margin-bottom: 1.2em;
}
#daycare_guide > div:first-of-type > div > div p:first-child:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: solid 12px #ffe51c;
  border-right: solid 8px transparent;
  border-bottom: solid 12px transparent;
  border-left: solid 8px transparent;
  position: absolute;
  bottom: -1.8em;
  right: calc(50% - 8px);
}
@media screen and (min-width: 768px) {
  #daycare_guide > div:first-of-type > div > div p:first-child:after {
    border-top: solid 8px transparent;
    border-right: solid 12px transparent;
    border-bottom: solid 8px transparent;
    border-left: solid 12px #ffe51c;
    bottom: calc(50% - 8px);
    right: calc(-16px - 1em);
  }
}
@media screen and (min-width: 768px) {
  #daycare_guide > div:first-of-type > div > div p:first-child {
    margin-right: 2em;
  }
}
@media screen and (min-width: 768px) {
  #daycare_guide > div:first-of-type > div > div p {
    display: inline;
  }
}
#daycare_guide > div:first-of-type > div > div:first-of-type {
  border-bottom: dotted 3px #ffe51c;
  padding-bottom: 1em;
}
#daycare_guide > div:first-of-type > div > div:last-of-type {
  padding-top: 1em;
}
#daycare_guide > div:last-of-type > div > p {
  margin-bottom: 1em;
  line-height: 1.6em;
}
#daycare_guide > div:last-of-type > div > p span {
  white-space: nowrap;
  display: inline-block;
}
#daycare_guide > div:last-of-type > div > p span:first-of-type {
  font-weight: bold;
}
#daycare_guide > div:last-of-type > div > p:nth-of-type(2) {
  font-size: 120%;
}
#daycare_guide > div:last-of-type > div > span {
  display: inline-block;
  line-height: 1.6em;
}

#daycare_service > ul li {
  margin: 2em 5%;
  border: solid 3px #ffe51c;
  border-radius: 20px;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
}
#daycare_service > ul li.in {
  -webkit-animation: slidedown 1.5s forwards;
          animation: slidedown 1.5s forwards;
}
#daycare_service > ul li > div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffe51c;
  border-radius: 16px 16px 0 0;
  padding: 0.5em;
}
#daycare_service > ul li > div:first-of-type > div:first-child {
  margin-right: 1em;
}
#daycare_service > ul li > div:first-of-type > div:first-child img {
  width: 65px;
}
#daycare_service > ul li > div:first-of-type > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #daycare_service > ul li > div:first-of-type > div:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#daycare_service > ul li > div:first-of-type > div:last-child > span {
  font-weight: bold;
  font-size: 120%;
  color: #5497a7;
  letter-spacing: 0.1em;
  margin-right: 1em;
}
#daycare_service > ul li > div:first-of-type > div:last-child > p {
  font-weight: bold;
  margin-top: 0.5em;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  #daycare_service > ul li > div:first-of-type > div:last-child > p {
    margin-top: 0;
  }
}
#daycare_service > ul li > div:last-of-type {
  line-height: 1.8em;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  #daycare_service > ul li > div:last-of-type {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #daycare_service > ul li > div:last-of-type > p {
    line-height: 2.5em;
    padding: 0 2em;
  }
}
#daycare_service > ul li > div:last-of-type > img {
  max-width: 100%;
  -webkit-animation: scaling 5s infinite;
          animation: scaling 5s infinite;
}
#daycare_service > ul li > div:last-of-type > p {
  margin: 0.8em 0;
  opacity: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
#daycare_service > ul li > div:last-of-type > p.in {
  -webkit-animation: fadeindown 2s 1s forwards;
          animation: fadeindown 2s 1s forwards;
}
@-webkit-keyframes slidedown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes slidedown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#daycare_charge > p {
  font-size: 80%;
  text-align: right;
}
#daycare_charge section {
  position: relative;
  padding: 30px 0 0 0;
  margin: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#daycare_charge section h4 {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  width: 2em;
  font-size: calc(10px + 2vw);
}
#daycare_charge section > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #daycare_charge section > div {
    width: 80vw;
  }
}
#daycare_charge section > div h5 {
  text-align: center;
}
#daycare_charge section > div h5 span {
  display: inline-block;
  border: solid 3px #ffe51c;
  border-radius: 2em;
  padding: 0.5em 1em;
}
#daycare_charge section > div table {
  width: 90%;
  margin: 1em 5% 3em 5%;
  border: solid 3px #ffe51c;
  background: #fff;
  line-height: 1.3em;
}
#daycare_charge section > div table tr th, #daycare_charge section > div table tr td {
  padding: 0.8em 0.5em;
  border: solid 1px #ffe51c;
  text-align: center;
  vertical-align: middle;
}
#daycare_charge section > div table tr th {
  background: rgba(255, 229, 28, 0.2);
}
#daycare_charge section > div table tr td > span.mn {
  display: inline-block;
  font-size: 80%;
  margin-top: 0.6em;
  line-height: 1.2em;
}
#daycare_charge section > div table tr.tr01 th {
  background: rgba(255, 229, 28, 0.5);
  border-bottom: solid 2px #ffe51c;
}
#daycare_charge section:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -6%;
  width: 20vw;
  height: 100%;
  background: #baf3d4;
  border-radius: 0 30px 30px 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #daycare_charge section:before {
    width: 15vw;
  }
}
#daycare_charge section table:first-of-type tr th, #daycare_charge section table:first-of-type tr td {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  #daycare_charge section table:first-of-type tr th, #daycare_charge section table:first-of-type tr td {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
#daycare_charge section table:first-of-type tr th > span, #daycare_charge section table:first-of-type tr td > span {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
#daycare_charge section table:first-of-type tr:last-of-type td span {
  line-height: 1.8em;
}
#daycare_charge section:last-of-type table:nth-of-type(2) tr td {
  min-width: 5em;
}
#daycare_charge section:last-of-type:before {
  background: #daf3ba;
}

#day_c_01 {
  position: relative;
}
#day_c_01 > span.fixed {
  position: fixed;
  top: 30px;
}
#day_c_01 > span.bottom {
  position: absolute;
  bottom: 30px;
}

#day_c_02 {
  position: relative;
}
#day_c_02 > span.fixed {
  position: fixed;
  top: 30px;
  left: 5%;
}
#day_c_02 > span.bottom {
  position: absolute;
  bottom: 30px;
}

#daycare_document ul li {
  position: relative;
  padding-left: 15px;
}
#daycare_document ul li a {
  display: inline-block;
  text-decoration: none;
  line-height: 1.5em;
  color: #5497a7;
}
#daycare_document ul li a p {
  display: inline;
}
#daycare_document ul li a i {
  margin-left: 0.5em;
}
#daycare_document ul li:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.5em;
  left: 0;
  border-top: solid 4px transparent;
  border-right: solid 6px transparent;
  border-bottom: solid 4px transparent;
  border-left: solid 6px #5497a7;
}

footer {
  background: #e6e6e6;
  border-top: solid 1px #d7d7d7;
  margin-top: 5em;
}
footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5em 8%;
}
@media screen and (min-width: 768px) {
  footer > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
footer > div > div:first-of-type {
  text-align: center;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  footer > div > div:first-of-type {
    margin: 0 10% 0 0;
  }
}
footer > div > div:first-of-type h1 {
  margin: 0 0 1em 0;
  line-height: 3em;
}
footer > div > div:first-of-type h1 > img {
  display: block;
  width: 30%;
  margin: 0 auto;
}
footer > div > div:first-of-type h1 p {
  white-space: nowrap;
}
footer > div > div:first-of-type h1 p:last-child {
  font-size: calc(20px + 2vw);
}
footer > div > div:first-of-type > div {
  line-height: 2.5em;
}
footer > div > div:first-of-type > div > p:first-of-type {
  font-size: calc(18px + 2vw);
}
footer > div > div:first-of-type > div > p:first-of-type i {
  margin: 0 0.3em 0 0;
}
footer > div > div:first-of-type > div > p:first-of-type span {
  color: #5497a7;
  font-weight: bold;
}
footer > div > div:first-of-type > div > a {
  text-decoration: none;
  display: inline-block;
  background: #5497a7;
  border-radius: 2em;
  padding: 0 1em;
  font-size: 80%;
  line-height: 2em;
}
footer > div > div:first-of-type > div > a > i {
  color: #ffe51c;
  margin: 0 0.5em 0 0;
}
footer > div > div:first-of-type > div > a > span {
  color: #fff;
}
footer > div > div:last-of-type > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 2em;
}
footer > div > div:last-of-type > ul li {
  margin: 0 1em;
}
footer > div > div:last-of-type > ul li i {
  margin-right: 0.3em;
  font-size: 60%;
  color: #d7d7d7;
}
footer > div > div:last-of-type > div {
  margin: 2em 0 0 0;
}
footer > div > div:last-of-type > div table {
  width: 100%;
}

small {
  display: block;
  font-size: 70%;
  text-align: center;
  padding: 1em;
  background: #d7d7d7;
}

#thistop {
  position: fixed;
  bottom: -100%;
  right: 0;
  width: 8em;
  height: 24px;
  padding: 4px 0;
  background: #5497a7;
  color: #fff;
  text-align: center;
  font-size: 16px;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 100;
}
#thistop i {
  margin-right: 0.2em;
}
#thistop.up {
  bottom: 0;
}