@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
}

body {
  padding: 50px 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff5d6;
}
@media screen and (max-width: 750px) {
  body {
    padding: 0;
  }
}

.t-text {
    text-align: center;
    margin-bottom: 6px;
}

main {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
}
main .cta_btn {
    text-align: center;
    padding: 25px 20px 8px;
    background-color: #000;
    margin-top: -5px;
}
main .cta_btn h3 {
  font-weight: 900;
  margin-bottom: 0.5em;
  font-size: clamp(16px, 2vw, 25px);
}
main .cta_btn h3 span {
  color: #ff0000;
}
main .cta_btn h2 {
  font-size: 36px;
  font-size: clamp(24px, 2.6vw, 35px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
main .cta_btn a img {
  max-width: 500px;
}
main footer .inner {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
}
main footer .inner img {
  width: 160px;
}
main footer .copyright {
    background-color: #000;
    color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 10px;
}

.scroll_effect {
  opacity: 0;
}
.scroll_effect.effect {
  transform: translateY(40px);
  animation: step_txt 1s 0.2s both;
}
@keyframes step_txt {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
}

.day {
    background-color: #000;
}

.g-address {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0px 0px 20px
}

.g-address a {
    color: #fff;
    font-size: 15px;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/*# sourceMappingURL=style.css.map */