@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #2B2B2B;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  letter-spacing: 0.05em;
}

.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (min-width: 768px) {
  .sp_only {
    display: block;
  }
}

.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main {
  position: relative;
  min-height: 100svh;
  background: url(../img/bg.webp) no-repeat top center/cover;
}

.main .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main .logo .img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 15px;
}
.main .logo .txt {
  font-size: 1.8rem;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7;
  font-weight: 600;
}
@media (max-width: 768px) {
  .main .logo .txt {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */