@font-face {
  font-family: 'HiraganoGothic';
  src: url("../fonts/HiraganoGothic.otf"); }
:root, html, body {
  font-family: "HiraganoGothic", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  letter-spacing: 0.5px; }
  @media screen and (max-width: 900px) {
    :root, html, body {
      font-size: 14px; } }

* {
  box-sizing: border-box; }

main {
  --section-gap-size: 50px; }
  @media screen and (max-width: 900px) {
    main {
      --section-gap-size: 20px; } }

@keyframes bounce {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(1.2); }
  40% {
    transform: scale(1); }
  55% {
    transform: scale(1.15); }
  65% {
    transform: scale(1); } }
@keyframes bounce-subtle {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(1.05); }
  40% {
    transform: scale(1); }
  55% {
    transform: scale(1.02); }
  65% {
    transform: scale(1); } }
.anim-unblur {
  filter: blur(10px);
  transition: filter 1s ease-in-out; }
  .anim-unblur.animated {
    filter: blur(0px); }

.anim-appear {
  filter: blur(10px);
  opacity: 0;
  transition: filter 0.65s ease-out, opacity 0.65s ease-out; }
  .anim-appear.animated {
    filter: blur(0px);
    opacity: 1; }

.logo {
  --logo-height: 150px;
  --logo-width: calc(500/150 * var(--logo-height));
  background-image: url("../images/logo.svg");
  width: var(--logo-width);
  height: var(--logo-height);
  background-repeat: no-repeat;
  background-size: cover; }

h1 {
  font-size: 1.4rem;
  font-weight: 700; }

h2 {
  font-size: 1.1rem;
  font-weight: 700; }

h3 {
  font-size: 1rem;
  font-weight: 700; }

.header-big {
  font-size: 1.4rem;
  font-weight: 700; }

.underlined {
  --underlined-header-color: #eeee63;
  position: relative;
  display: inline-block; }
  .underlined:after {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 7px;
    background: var(--underlined-header-color);
    display: block;
    content: "";
    z-index: -1; }

.round-blue-button {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  border-radius: 18.5px;
  display: flex;
  text-decoration: none;
  background: #00163c;
  color: white;
  width: 300px;
  height: 37px;
  justify-content: center;
  align-items: center;
  font-size: 16px; }
  .round-blue-button:hover {
    transform: scale(1.05); }

@media screen and (max-width: 900px) {
  .round-blue-button {
    font-size: 14px; } }
main {
  --site-header-height: 65px;
  --parallax-viewport-height: min(100vh, 900px); }

#site-header {
  top: 0;
  background: white;
  position: sticky;
  width: 100%;
  height: var(--site-header-height);
  z-index: 100;
  filter: drop-shadow(0px 0px 2px grey); }
  #site-header .logo {
    --logo-height: 25px;
    width: var(--logo-width);
    height: var(--logo-height);
    position: absolute;
    top: calc(50% - 0.5 * var(--logo-height));
    right: 10px;
    filter: brightness(0); }
  #site-header nav#top-nav {
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: stretch;
    align-items: center;
    height: 100%; }
    #site-header nav#top-nav .nav-link {
      flex-grow: 1;
      text-align: center;
      line-height: var(--site-header-height);
      transition: 0.2s background-color ease-in-out;
      background-color: white; }
      #site-header nav#top-nav .nav-link:hover {
        background-color: rgba(202, 230, 208, 0.55); }
      #site-header nav#top-nav .nav-link a {
        display: block;
        text-decoration: none;
        color: black; }

.dropdown-trigger {
  position: relative; }
  .dropdown-trigger .dropdown {
    line-height: 2;
    display: block;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute;
    background: white;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    min-width: 100%; }
    .dropdown-trigger .dropdown a {
      display: block;
      word-break: keep-all;
      white-space: nowrap;
      padding: 4px 10px; }
      .dropdown-trigger .dropdown a:hover {
        background-color: #b7cbdd; }

.dropdown-trigger.open .dropdown {
  display: block;
  opacity: 1;
  visibility: visible; }

main {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
  perspective-origin: 50vw calc(var(--parallax-viewport-height)/2 + var(--site-header-height)); }
  main > * {
    position: relative;
    transform-style: preserve-3d;
    z-index: 1; }

#hero {
  height: var(--parallax-viewport-height);
  display: flex;
  justify-content: center;
  align-items: center; }
  #hero .logo {
    --logo-height: 100px;
    width: var(--logo-width);
    height: var(--logo-height);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
  #hero .parallax-image.main {
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px;
    background: url("../images/banner.png") center;
    background-size: cover; }
  #hero .parallax-image.edges {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 100%), url("../images/banner.png") center;
    background-size: cover;
    z-index: -2; }

.parallax-viewport .parallax-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(2) !important;
  background-size: 100%;
  z-index: -1; }

@media screen and (max-width: 900px) {
  main {
    --site-header-height: 55px; }

  #site-header nav#top-nav {
    width: 100vw; }
  #site-header .logo {
    display: none; }
  #site-header .nav-link {
    font-size: 14px; }

  #hero .logo {
    --logo-height: 80px; } }
section#highlights {
  background: white;
  padding-top: var(--section-gap-size); }
  section#highlights img.feature-image {
    width: calc(100% - 80px);
    margin: 0 auto;
    max-width: 1200px;
    display: block; }
  section#highlights footer {
    height: 140px;
    background: #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--section-gap-size); }
  @media screen and (max-width: 900px) {
    section#highlights img.feature-image {
      width: calc(100vw - 6px); }
    section#highlights footer {
      height: 100px; }
      section#highlights footer a {
        animation: bounce-subtle linear 2s  infinite; } }

section#schedule {
  padding-top: var(--section-gap-size);
  background: white; }
  section#schedule ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  section#schedule .column {
    flex: 50%; }
  section#schedule .two-col {
    display: flex;
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px; }
    section#schedule .two-col header {
      text-align: center; }
    section#schedule .two-col .time-list {
      --border-width: 4px;
      --inner-height: 60px;
      --border-radius: calc(var(--inner-height) / 2);
      display: flex;
      justify-content: center;
      padding-top: 10px;
      margin: var(--section-gap-size) 0; }
      section#schedule .two-col .time-list ul {
        width: 80%; }
        section#schedule .two-col .time-list ul li .outer {
          display: block;
          background: linear-gradient(90deg, #008a80 0, #1eb6fc 100%);
          border-radius: calc(var(--border-width) + var(--border-radius));
          padding: var(--border-width); }
          section#schedule .two-col .time-list ul li .outer .inner {
            display: flex;
            z-index: 1;
            background: white;
            border-radius: var(--inner-height);
            height: var(--inner-height); }
            section#schedule .two-col .time-list ul li .outer .inner .content {
              display: flex;
              justify-content: flex-start;
              align-items: center;
              padding: 0 var(--border-radius); }
            section#schedule .two-col .time-list ul li .outer .inner span {
              display: inline-block;
              z-index: 2;
              color: #2885bb;
              font-weight: 600; }
            section#schedule .two-col .time-list ul li .outer .inner span.time {
              position: relative;
              border-right: solid 2px #a0bbb9;
              width: 70px;
              margin-right: 30px;
              font-size: 22px; }
            section#schedule .two-col .time-list ul li .outer .inner span.event {
              font-size: 20px; }
        section#schedule .two-col .time-list ul li:after {
          content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="40"><defs><linearGradient id="arrow-grad"><stop offset="0%" stop-color="%23bbccdc" /><stop offset="50%" stop-color="%2346b7a3" /><stop offset="100%" stop-color="%2333819f" /></linearGradient></defs><polygon points="0,0 39,0 19,19" style="stroke:none;" fill="url(%23arrow-grad)" /></svg>');
          display: block;
          width: 40px;
          height: 20px;
          fill: red;
          margin: 25px auto; }
        section#schedule .two-col .time-list ul li:last-child:after {
          display: none; }
        section#schedule .two-col .time-list ul li .next-arrow {
          fill: red; }
    section#schedule .two-col .registration {
      display: flex;
      justify-content: center;
      border-left: 1px black solid;
      margin: var(--section-gap-size) 0; }
      section#schedule .two-col .registration ul {
        width: 80%; }
        section#schedule .two-col .registration ul li {
          padding-bottom: 30px; }
          section#schedule .two-col .registration ul li p {
            font-size: 0.9rem; }
      section#schedule .two-col .registration .line-reg {
        display: flex;
        margin: 15px 0; }
        section#schedule .two-col .registration .line-reg .icon {
          background: url("../images/line-icon.png") 20px no-repeat, #03b555;
          background-size: 40px;
          width: 170px;
          height: 56px;
          padding: 20px;
          color: white;
          display: flex;
          border-radius: 28px;
          justify-content: flex-end;
          align-items: center;
          margin-right: 30px;
          text-decoration: none; }
  section#schedule footer {
    background: linear-gradient(90deg, #9fbbb9 0, #1da7b7 50%, #009183 100%);
    padding: 30px 0;
    display: flex;
    color: white;
    text-align: center;
    font-size: 0.9rem; }
    section#schedule footer p {
      margin: 24px 0; }
    section#schedule footer .column {
      padding: 10px; }
      section#schedule footer .column:first-child {
        border-right: solid 1px white; }
    section#schedule footer .manga {
      display: flex;
      justify-content: center; }
      section#schedule footer .manga .preview {
        display: block;
        position: relative;
        width: 201px;
        height: 151px;
        cursor: pointer; }
        section#schedule footer .manga .preview:hover img {
          transform: scale(1.1);
          filter: saturate(1.5) drop-shadow(0 0 15px #ffddee); }
        section#schedule footer .manga .preview:hover .finger {
          opacity: 0; }
        section#schedule footer .manga .preview img {
          transition: transform 200ms ease-in-out, filter 200ms ease-in-out;
          filter: saturate(1) drop-shadow(0 0 0 #ffddee);
          width: 201px;
          height: 151px; }
        section#schedule footer .manga .preview .finger {
          background: url("../images/hitosashiyubi.png");
          width: 67px;
          height: 67px;
          background-size: contain;
          position: absolute;
          bottom: -30px;
          right: -30px;
          transition: opacity 0.2s ease-out;
          animation: bounce linear 1.5s  infinite; }
  @media screen and (max-width: 900px) {
    section#schedule .two-col {
      width: 90vw;
      margin: 0 auto;
      max-width: 1200px;
      flex-direction: column; }
      section#schedule .two-col .time-list {
        font-size: 15px;
        --inner-height: 50px; }
        section#schedule .two-col .time-list ul {
          width: 100%; }
          section#schedule .two-col .time-list ul li .outer .inner span.time {
            font-size: 18px; }
          section#schedule .two-col .time-list ul li .outer .inner span.event {
            font-size: 16px; }
          section#schedule .two-col .time-list ul li:after {
            margin: 20px auto;
            width: 34px;
            height: 17px; }
      section#schedule .two-col .registration {
        border-left: none; }
        section#schedule .two-col .registration ul {
          width: 100%; }
    section#schedule footer {
      flex-direction: column;
      align-items: center;
      font-size: 13px; }
      section#schedule footer .column {
        padding: 5px; }
        section#schedule footer .column:first-child {
          border-right: none;
          border-bottom: 1px solid white; } }

section#social {
  padding: var(--section-gap-size) 0; }
  section#social header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
  section#social > header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0; }
    section#social > header h1 {
      margin: 0; }
  section#social .activities {
    margin-bottom: var(--section-gap-size); }
    section#social .activities > p {
      text-align: center;
      font-weight: 600;
      font-size: 0.9rem; }
    section#social .activities .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      width: 80vw;
      margin: 0 auto;
      max-width: 1200px;
      column-gap: 40px;
      margin: 40px auto 0 auto;
      width: 80vw;
      justify-content: center; }
      section#social .activities .grid .item {
        display: flex;
        flex-direction: column; }
        section#social .activities .grid .item p.caption {
          font-size: 0.9rem;
          text-align: left; }
  section#social .available-jobs {
    padding: var(--section-gap-size) 0;
    position: relative; }
    section#social .available-jobs:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      z-index: -2;
      background-color: #f1f9f9; }
    section#social .available-jobs .outer-grid {
      width: 80vw;
      margin: 0 auto;
      max-width: 1200px;
      display: grid;
      grid-template-columns: 50% 50%;
      gap: var(--section-gap-size); }
      section#social .available-jobs .outer-grid .item > img {
        width: 100%; }
      section#social .available-jobs .outer-grid .item > footer {
        padding: 20px 10px;
        font-size: 0.9rem; }
      section#social .available-jobs .outer-grid .underlined {
        --underlined-header-color: #b7cbdd; }
    section#social .available-jobs .photo-row {
      display: flex;
      justify-content: stretch;
      gap: 4px; }
      section#social .available-jobs .photo-row img {
        min-width: 0;
        flex: 50% 1 1; }
  section#social .costs {
    padding: var(--section-gap-size) 0; }
    section#social .costs header {
      display: flex;
      justify-content: center; }
      section#social .costs header h1 {
        font-size: 1.3em; }
    section#social .costs p.description {
      color: #414141;
      text-align: center; }
    section#social .costs .plans {
      width: 80vw;
      margin: 0 auto;
      max-width: 1200px;
      display: flex;
      justify-content: center;
      gap: 60px; }
      section#social .costs .plans .cost-plan {
        display: flex;
        flex-direction: column;
        border: 1px #acacac solid;
        font-weight: 700;
        width: 240px;
        margin-top: 50px; }
        section#social .costs .plans .cost-plan div:first-child {
          background: #c6c6c6;
          border-bottom: 5px solid #819fad;
          padding: 20px 0;
          text-align: center; }
        section#social .costs .plans .cost-plan div:last-child {
          background: white;
          padding: 30px 0;
          text-align: center;
          color: #414141;
          line-height: 2.5; }
  @media screen and (max-width: 900px) {
    section#social header {
      width: 95vw;
      margin: 0 auto;
      max-width: 1200px; }
    section#social .activities p.description {
      width: 95vw;
      margin: 0 auto;
      max-width: 1200px; }
    section#social .activities .grid {
      width: 100%;
      display: flex;
      flex-direction: column; }
      section#social .activities .grid .item {
        margin: 8px 0; }
        section#social .activities .grid .item img.photo {
          box-shadow: gray 0 0 3px; }
        section#social .activities .grid .item p.caption {
          text-align: center;
          width: 80vw;
          margin: 10px auto;
          font-size: 14px;
          color: #4d4d4d; }
        section#social .activities .grid .item .shop-logo {
          align-self: flex-end;
          padding-right: 4px; }
          section#social .activities .grid .item .shop-logo img {
            height: 40px; }
        section#social .activities .grid .item:last-child img.photo {
          box-shadow: none; }
    section#social .available-jobs .outer-grid {
      width: 100%;
      display: flex;
      flex-direction: column; }
    section#social .available-jobs .photo-row img {
      min-width: 0; }
    section#social .available-jobs .photo-row img:nth-child(1) {
      flex: 50% 1 1; }
    section#social .available-jobs .photo-row img:nth-child(2) {
      flex: 50% 1 1; }
    section#social .available-jobs .photo-row img:nth-child(3) {
      display: none; }
    section#social .available-jobs footer {
      text-align: center;
      padding: 10px;
      width: 90vw;
      margin: 0 auto;
      max-width: 1200px; }
    section#social .costs .description {
      width: 95vw;
      margin: 0 auto;
      max-width: 1200px; }
    section#social .costs .plans {
      width: 100%;
      margin: 20px 0 5px;
      column-gap: 5px;
      row-gap: 20px;
      display: grid;
      grid-template-columns: 50% 50%; }
      section#social .costs .plans .cost-plan {
        width: 180px;
        margin: 0 auto; }
        section#social .costs .plans .cost-plan:first-child {
          grid-column: 1/3; }
        section#social .costs .plans .cost-plan div:first-child {
          word-break: keep-all; } }
@keyframes marquee {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(100%); } }
section#office {
  padding-bottom: var(--section-gap-size); }
  section#office header .banner {
    background: #cbe1de;
    padding: 30px 50px; }
    section#office header .banner .inner {
      background: #18817f;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px; }
      section#office header .banner .inner * {
        text-align: center; }
      section#office header .banner .inner h1 {
        color: white;
        font-size: 1.8rem;
        margin: 0; }
      section#office header .banner .inner .title {
        background: url("../images/office-introduction.png") no-repeat center;
        width: 205px;
        height: 42px; }
      section#office header .banner .inner .intro {
        padding-top: 10px;
        border-top: 1px white dashed;
        color: white;
        margin: 0; }
  section#office header .title {
    display: flex;
    justify-content: center; }
    section#office header .title h1 {
      font-size: 1.8em; }
  section#office .intro {
    text-align: center; }
    section#office .intro img {
      box-shadow: lightgrey 0 0 10px;
      width: 463px; }
    section#office .intro p {
      line-height: 2; }
  section#office .showcase {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px; }
    section#office .showcase .image {
      position: relative;
      width: 304px;
      height: 197px; }
      section#office .showcase .image img {
        box-shadow: lightgrey 0 0 10px;
        position: absolute;
        width: 304px;
        top: 0;
        left: 0; }
        section#office .showcase .image img:nth-child(2) {
          z-index: 99;
          animation: fade-in-out alternate infinite 8s; }
    section#office .showcase .caption {
      padding: 5px;
      text-align: center;
      font-weight: 600; }
      section#office .showcase .caption .note {
        font-weight: 100;
        font-size: 80%; }
  @media screen and (max-width: 900px) {
    section#office header .banner {
      padding: 18px 25px; }
      section#office header .banner .inner {
        padding: 15px; } }

@keyframes fade-in-out {
  0% {
    opacity: 1; }
  35% {
    opacity: 1; }
  65% {
    opacity: 0; }
  100% {
    opacity: 0; } }
section#qanda {
  background-color: #a8c3c1;
  padding: 50px 0 40px; }
  section#qanda header {
    margin: 0 auto 40px;
    text-align: center; }
    section#qanda header h1 {
      font-size: 2em;
      margin: 0; }
    section#qanda header h2 {
      font-size: 1em;
      margin: 0; }
  section#qanda .grid {
    --circle-diameter: 50px;
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    column-gap: 100px;
    grid-template-columns: 1fr 1fr; }
    section#qanda .grid .item div {
      position: relative;
      padding-bottom: calc(var(--circle-diameter) + 8px);
      padding-left: calc(var(--circle-diameter) + 12px); }
      section#qanda .grid .item div:before {
        color: white;
        font-size: 1.2rem;
        width: var(--circle-diameter);
        height: var(--circle-diameter);
        border-radius: calc( var(--circle-diameter)/2);
        position: absolute;
        left: 0;
        top: -10px;
        display: flex;
        justify-content: center;
        align-items: center; }
    section#qanda .grid .item .question {
      position: relative; }
      section#qanda .grid .item .question:before {
        content: "Q";
        background: #003637; }
    section#qanda .grid .item .answer {
      position: relative;
      color: #666666;
      font-size: 0.9rem; }
      section#qanda .grid .item .answer:before {
        content: "A";
        background: #c6c6c6;
        color: black;
        font-size: 1.2rem; }
  section#qanda .show-more-button {
    display: none; }
  @media screen and (max-width: 900px) {
    section#qanda .show-more-button {
      display: flex;
      margin: 0 auto;
      width: 200px; }
    section#qanda .grid {
      display: flex;
      flex-direction: column; }
      section#qanda .grid .item:nth-child(n+4) {
        display: none; }
      section#qanda .grid.show-more .item:nth-child(n+4) {
        display: block; } }

section#contact {
  padding-top: 50px;
  color: #414141; }
  section#contact .two-col {
    width: 80vw;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 10px; }
    section#contact .two-col .col:first-child {
      display: flex;
      flex-direction: column; }
      section#contact .two-col .col:first-child header {
        padding-bottom: 50px; }
      section#contact .two-col .col:first-child .contact-detail {
        margin-bottom: 30px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: left; }
        section#contact .two-col .col:first-child .contact-detail:before {
          content: "";
          width: 27px;
          height: 27px;
          display: block;
          left: 0;
          top: 0; }
        section#contact .two-col .col:first-child .contact-detail a {
          text-decoration: none;
          color: #414141; }
      section#contact .two-col .col:first-child .phone:before {
        background: url("../images/tel-icon.png") no-repeat center; }
      section#contact .two-col .col:first-child .email:before {
        background: url("../images/mail-icon.png") no-repeat center; }
      section#contact .two-col .col:first-child .sns {
        margin-top: auto;
        margin-left: 50px; }
        section#contact .two-col .col:first-child .sns p {
          font-size: 1.3em; }
        section#contact .two-col .col:first-child .sns .insta-qr {
          background: url("../images/instaQR.JPG") no-repeat center;
          height: 200px;
          width: 174px;
          display: inline-block;
          background-size: contain;
          margin-left: 5px;
          margin-right: 5px; }
    section#contact .two-col .col:last-child {
      padding-top: 20px; }
      section#contact .two-col .col:last-child form {
        display: grid;
        column-gap: 4px;
        grid-template-columns: 50% 50%; }
        section#contact .two-col .col:last-child form label[for=field-email], section#contact .two-col .col:last-child form #field-email, section#contact .two-col .col:last-child form label[for=field-details], section#contact .two-col .col:last-child form #field-details {
          grid-column: 1/3; }
        section#contact .two-col .col:last-child form label[for=field-email], section#contact .two-col .col:last-child form label[for=field-details] {
          padding-top: 10px; }
      section#contact .two-col .col:last-child label {
        font-size: 0.7em; }
      section#contact .two-col .col:last-child input[type=text], section#contact .two-col .col:last-child input[type=email], section#contact .two-col .col:last-child textarea {
        padding: 15px 10px; }
      section#contact .two-col .col:last-child #validation {
        grid-column: 1/3;
        color: darkred; }
      section#contact .two-col .col:last-child input[type=submit] {
        grid-column: 1; }
  section#contact footer {
    background: url("../images/access-banner.png") no-repeat center;
    background-size: contain;
    width: 734px;
    height: 112px;
    margin: 50px auto; }
  @media screen and (max-width: 900px) {
    section#contact .two-col {
      width: 95vw;
      margin: 0 auto;
      max-width: 1200px;
      display: flex;
      flex-direction: column; }
      section#contact .two-col .col:first-child {
        position: relative; }
        section#contact .two-col .col:first-child .sns {
          position: absolute;
          right: 0;
          top: 0; }
      section#contact .two-col .col:last-child form input[type=submit] {
        grid-column: 1/3;
        margin: 0 auto; }
    section#contact footer {
      --footer-img-width: 100vw;
      width: var(--footer-img-width);
      height: calc(112/734*var(--footer-img-width));
      margin: 20px auto 10px auto; } }

footer#site-footer {
  background: #4d4d4d;
  color: white;
  padding: var(--section-gap-size) 0 4px; }
  footer#site-footer .two-col {
    display: grid;
    grid-template-columns: 65% 35%; }
  footer#site-footer .map.column {
    display: flex;
    justify-content: center; }
  footer#site-footer .company-details {
    padding-left: 20px;
    width: 250px;
    line-height: 2; }
    footer#site-footer .company-details .name {
      margin-left: -20px;
      margin-bottom: 15px;
      display: inline-block;
      padding: 3px 11px;
      border: 1px solid white;
      font-weight: 900; }
    footer#site-footer .company-details .key {
      width: 70px; }
    footer#site-footer .company-details .val, footer#site-footer .company-details .key {
      display: inline-block;
      vertical-align: top; }
    footer#site-footer .company-details hr {
      border-color: #808080;
      border-style: solid;
      margin: 15px 0; }
  footer#site-footer .copyright {
    margin-top: 30px;
    color: gray;
    font-size: 0.8rem;
    text-align: center; }
  @media screen and (max-width: 900px) {
    footer#site-footer {
      padding-top: 10px; }
      footer#site-footer .two-col {
        display: flex;
        flex-direction: column;
        row-gap: 20px; }
        footer#site-footer .two-col .company-details {
          margin: 0 auto; }
          footer#site-footer .two-col .company-details .name {
            width: 100%; }
        footer#site-footer .two-col .map {
          margin: 10px 10px; } }

/*# sourceMappingURL=style.css.map */
