@charset "UTF-8";
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, ul, li, ol, dl, dt, dd, figure, p {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #525252;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  background:url(../images/teaser_bg.png) #F4F2F1 ;
  background-size: cover;
  overflow-x: hidden;
  margin: 0px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

}
.mlogo{
  position: absolute;
  left: 20px;
  top: 20px;
}
.l-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.teaser {
  max-width: 90%;
  height: auto;
  margin-bottom: 30px;
}

.copyright {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.teaser-footer2 a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.teaser-footer2 a:hover {
  color: #000;
}
.teaser-footer1 {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .teaser-footer1 img{
    width: 80%;
  }
}
