@charset "UTF-8";
/**
 * トップページ: ウェルカムボード
 */
.theme-welcome {
  background: #009fe9;
  text-align: center;
  padding: 5em 0 4em;
  color: #fff;
  height: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
}
.theme-welcome h1 {
  margin: 0 auto;
  width: 70%;
  max-width: 440px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
.theme-welcome h1 img {
  display: block;
}
.theme-welcome p {
  margin: 1em auto 0;
  width: 95%;
  max-width: 600px;
  font-size: 180%;
  font-weight: 100;
}
@media (max-width: 560px) {
  .theme-welcome {
    padding: 4em 0 2.5em;
  }
  .theme-welcome h1 {
    font-size: 400%;
  }
  .theme-welcome p {
    font-size: 140%;
  }
}
@media (max-width: 450px) {
  .theme-welcome {
    padding: 3em 0 2em;
  }
  .theme-welcome h1 {
    font-size: 300%;
  }
  .theme-welcome p {
    font-size: 110%;
  }
}
@media (max-width: 310px) {
  .theme-welcome {
    padding: 1em 0 0.2em;
  }
  .theme-welcome h1 {
    font-size: 250%;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
  }
  .theme-welcome p {
    font-size: 80%;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
  }
  .theme-welcome p br {
    display: none;
  }
}
.theme-welcome .theme-welcome__install-command {
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  overflow: auto;
  background-color: #f6f6f6;
  border-radius: 7px;
  padding: 6px 20px;
  margin: 5px auto 0 auto;
  color: #666;
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 800px) {
  .theme-header .theme-welcome .theme-globalnavi {
    display: block;
  }
  .theme-header .theme-welcome .theme-shouldernavi {
    display: block;
  }
}
