@charset "utf-8";

/* reset.css */
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP";
  line-height: 1.8;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none !important;
}

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

.uk-navbar-item {
  color: inherit !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
}

.uk-navbar-nav li a {
  font-family: 'Montserrat', sans-serif !important;
}

.header {
  background: #81d8d0;
}

.main {
  background: #81d8d0;
}

.main-text {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-text h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 150px;
  letter-spacing: 1vw;
  text-align: center;
  background-image: url('./images/bg01.jpeg');
  background-size: auto 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shine 20s linear infinite;
}

.main-text p {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
}

@keyframes shine {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 200%;
  }
}

.subheader {
  color: #666;
  font-weight: 600;
  margin-top: 10px;
}

.uk-modal-dialog {
  width: 100%;
}

.uk-thumbnav {
    flex-wrap: nowrap;
  }

.uk-button-green {
  background-color: #81d8d0;
}

.uk-thumbnav img {
  box-shadow: 0 0 8px gray;
}

@media screen and (max-width: 960px) {
  .main-text h1 {
    font-size: 50px;
  }

  form {
    max-width: 90%;
    margin: auto;
  }

}