@charset "UTF-8";
/*
Theme Name: flyersad
*/
/*Base Setting*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(3.5vw, 1rem);
  position: relative;
  overflow: auto;
}
body.no-scroll {
  overflow: hidden;
}

.p-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

img {
  width: 100%;
}

.p-section {
  padding-top: 8em;
}
@media screen and (max-width: 768px) {
  .p-section {
    padding-top: 5em;
  }
}
.p-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}
.p-section__ttl {
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}
.p-section__ttl::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background-color: #FF1D25;
  left: 50%;
  transform: translateX(-50%);
}

.c-btn {
  display: inline-block;
  text-align: center;
  padding: 0.5em 3em;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible;
  border: 2px solid transparent;
  transform-origin: center;
}
.c-btn--red {
  background-color: #FF1D25;
  box-shadow: 0 5px 15px rgba(255, 29, 37, 0.4);
}
.c-btn--red:hover {
  background-color: #fff;
  color: #FF1D25;
  transform: translateY(-5px) scale(1.03);
  border-color: #FF1D25;
}
.c-btn--red:hover::after {
  border-top-color: #FF1D25;
  border-right-color: #FF1D25;
  right: 1em;
  transform: rotate(45deg) translateY(-50%) scale(1.2);
}
.c-btn--red:hover::before {
  opacity: 1;
  transform: scale(1);
}
.c-btn--blue {
  background-color: #0071BC;
  box-shadow: 0 5px 15px rgba(0, 113, 188, 0.4);
}
.c-btn--blue:hover {
  background-color: #fff;
  color: #0071BC;
  transform: translateY(-5px) scale(1.03);
  border-color: #0071BC;
}
.c-btn--blue:hover::after {
  border-top-color: #0071BC;
  border-right-color: #0071BC;
  right: 1em;
  transform: rotate(45deg) translateY(-50%) scale(1.2);
}
.c-btn--blue:hover::before {
  opacity: 1;
  transform: scale(1);
}
.c-btn::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  border-top: solid 0.1em #fff;
  border-right: solid 0.1em #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.c-submit {
  margin: 1em auto 5em;
  display: block;
  text-align: center;
  padding: 0.5em 2em;
  border-radius: 999px;
  color: #fff;
  background-color: #0071BC;
  transition: all 0.3s ease-in-out;
  border: solid 2px transparent;
  width: 20%;
  min-width: 300px;
  box-shadow: 0px 10px 10px #e9e8e8;
}
.c-submit:hover {
  background-color: #fff;
  color: #0071BC;
  border: solid 2px #0071BC;
}

.c-deco {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25vw solid transparent;
  border-left: 25vw solid transparent;
  border-bottom: 20vw solid rgba(0, 113, 188, 0.1);
  border-top: 0;
}

.u-note {
  width: 100%;
  margin: 1em auto 0;
  position: relative;
}
.u-note li {
  font-size: 0.8rem !important;
  text-indent: -1em;
  padding: 0 0 0 1em;
  position: relative;
  text-align: left;
  list-style: none;
}
.u-note li::before {
  content: "※";
}

.u-dispSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-dispSP {
    display: block;
  }
}

.u-dispPC {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-dispPC {
    display: none;
  }
}

.u-ptSubTop {
  padding-top: 5em !important;
}
@media screen and (max-width: 768px) {
  .u-ptSubTop {
    padding-top: 3em !important;
  }
}
/*# sourceMappingURL=common.css.map */