@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 990px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 990px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 990px) {
  .sp-none {
    display: none;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url(../img/bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 990px) {
  main {
    background: url(../img/bg.jpg) no-repeat center center/contain;
  }
}

.main-content {
  text-align: center;
}
.main-content h1 {
  font-size: 40px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1.6;
  color: rgba(11, 161, 154, 0.8);
  font-weight: 600;
}
@media screen and (max-width: 990px) {
  .main-content h1 {
    font-size: 24px;
    padding-bottom: 20px;
  }
}

.logo {
  width: 30%;
  margin: 0 auto;
}

.main-contact {
  display: inline-block;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: rgba(11, 161, 154, 0.8);
  padding-top: 80px;
  transition: all 0.5s;
}
.main-contact:hover {
  opacity: 0.7;
}
@media screen and (max-width: 990px) {
  .main-contact {
    font-size: 20px;
    line-height: 1.8;
    padding-top: 30px;
  }
}/*# sourceMappingURL=main.css.map */