:root {
  --base-color: #FF9900;
}

html {
  font-size: 4vw;
}

.tab {
  display: none;
}

.pc {
  display: none;
}

button {
  background: none;
  border: unset;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}

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

.base_color {
  color: var(--base-color);
}

.base_bg {
  background: var(--base-color);
}

main {
  overflow-x: hidden;
  position: relative;
}

.inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header .inner {
  padding: 1rem;
}
header .inner a {
  display: block;
  width: 9rem;
}

footer {
  background: #000;
  color: #fff;
}
footer .inner {
  padding-bottom: 6rem;
  padding-top: 2rem;
}
footer .copyright {
  text-align: center;
  font-size: 0.8rem;
}
footer ul {
  margin-bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
footer ul a {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: underline;
  transition-duration: 0.2s;
}
footer ul a:hover {
  opacity: 0.7;
}
footer .footer_logo {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 auto 2rem;
  width: 11rem;
  transition-duration: 0.2s;
}
footer .footer_logo:hover {
  opacity: 0.7;
}

#toTop {
  position: fixed;
  width: 2.5rem;
  height: 2.5rem;
  right: 1rem;
  z-index: 6;
  bottom: 6rem;
  cursor: pointer;
  display: none;
}

#floatBtn {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}
#floatBtn picture {
  display: block;
  margin: 0 auto;
}

.anime {
  opacity: 0;
  transition-duration: 0.7s;
}
.anime.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.anime.fade-in-left {
  opacity: 0;
  transition: opacity 0.3s linear, transform 0.5s linear;
  transform: translateX(-2rem);
}
.anime.fade-in-right {
  opacity: 0;
  transition: opacity 0.3s linear, transform 0.5s linear;
  transform: translateX(64px);
}
.anime.fade-in-bottom {
  opacity: 0;
  transform: translateY(2rem);
  transition-duration: 0.6s;
}
.anime.active.fade-in-left, .anime.active.fade-in-right {
  opacity: 1;
  transition-duration: 0.3s;
  transform: translateX(0);
}
.anime.active.fade-in-bottom {
  opacity: 1;
  transform: translateY(0);
}
.anime.zoom {
  opacity: 0;
  transition: opacity 0.3s linear, transform 0.3s linear;
  transform: scale(0.8);
}
.anime.active.zoom {
  opacity: 1;
  transition-duration: 0.3s;
  transform: scale(1);
}
.anime.rotate {
  opacity: 0;
  transition: opacity 0.3s linear, transform 0.3s linear;
  transform: scale(0.5);
  transform: rotate(45deg);
}
.anime.active.rotate {
  opacity: 1;
  transition-duration: 0.3s;
  transform: scale(1);
  transform: rotate(0);
}
.anime.strong, .anime.strong2 {
  transform: scale(0.5);
}
.anime.active.strong, .anime.active.strong2 {
  transition-duration: 0.3s;
  transform: scale(1);
}
.anime.active.strong2 {
  transition-delay: 0.2s;
}

.marker {
  background: linear-gradient(to bottom, transparent 70%, #ffa620 0);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.6s;
}
.marker.on {
  background-size: 100% 100%;
}

.regarea .inner {
  overflow: hidden;
  padding: 2rem;
  opacity: 1;
  position: relative;
}
.regarea .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url(../img/regarea_bg.webp);
  background-position: left -4rem bottom;
  background-size: 23rem;
  background-repeat: no-repeat;
  opacity: 0;
  transition-duration: 1.2s;
  position: absolute;
}
.regarea .inner.active::before {
  opacity: 1;
}
.regarea h2 {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}
.regarea dl {
  max-width: 16rem;
  margin-left: auto;
  margin-bottom: 1.5rem;
}
.regarea dt {
  background: #000;
  border-radius: 5rem;
  position: relative;
  padding: 0.3rem 1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.regarea dt::after {
  content: "";
  width: 1rem;
  height: 0.7rem;
  background: #333;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -0.65rem;
  left: 50%;
  margin-left: -0.5rem;
}
.regarea dd {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
}
.regarea dd strong {
  font-size: 1.25rem;
  display: block;
  text-align: center;
  display: block;
  white-space: nowrap;
}
.regarea ul {
  display: flex;
  align-self: center;
  margin: 1.5rem auto -2rem;
  justify-content: center;
}
.regarea ul li:first-child img {
  width: 11rem;
  margin-top: -0.2rem;
  margin-right: -2rem;
}
.regarea ul li:last-child img {
  width: 8rem;
}

.lineBtn_area span {
  display: block;
  width: 15.5rem;
  margin: 0 auto 0.3rem;
}

.lineBtn {
  width: 100%;
  display: block;
  filter: drop-shadow(0.1rem 0.2rem 0.2rem #666);
  animation: 2s zoom infinite ease-in;
  border-radius: 0.3rem;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
    box-shadow: 0em 0em 0.7em #fff, 0em 0em 0.5em #fff;
  }
  100% {
    transform: scale(1);
  }
}

.service {
  display: flex;
  justify-content: center;
  color: #fff;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}
.service li {
  position: relative;
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1;
  z-index: 2;
}
.service li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/fv_check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1rem;
  height: 0.9rem;
  margin-right: 0.3rem;
  transform: translateY(1px);
}
.service li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: skewX(-15deg);
  background: #000;
}

.back {
  background: #000;
  padding: 1.5rem 1rem;
}
.back .back_btn {
  color: #000;
  background: var(--base-color);
  border-radius: 10rem;
  display: block;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: 600;
  max-width: 300px;
  position: relative;
}
.back .back_btn::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-image: url(../img/pageback_icon.webp);
  left: 1.5rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 744px) {
  html {
    font-size: 18px;
  }
  h1 {
    width: 10rem;
  }
  .tab {
    display: block;
  }
  .sp {
    display: none;
  }
  .inner {
    padding: 2rem;
    background-size: 31rem;
  }
  #floatBtn {
    width: 100%;
  }
  #floatBtn picture {
    max-width: 26rem;
    margin: 0 auto;
  }
  .regarea .inner {
    padding: 2rem 4rem;
  }
  .regarea .inner::before {
    background-position: left -0.5rem bottom -5rem;
    background-size: 29rem;
  }
  .regarea h2 {
    width: 30rem;
    margin: 0 auto 1.5rem;
  }
  .regarea dl {
    margin-right: 4rem;
    max-width: 18rem;
  }
  .regarea dl dt {
    font-size: 1.4rem;
  }
  .regarea dl dd {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
  }
  .regarea dl dd strong {
    font-size: 1.6rem;
  }
  .regarea .lineBtn_area {
    width: 27rem;
    margin-left: auto;
  }
  .regarea ul {
    padding-left: 15rem;
  }
  .service {
    gap: 0.5rem;
  }
  .service li {
    padding: 0.5rem 0.6rem;
  }
  .service li::before {
    width: 1.1rem;
  }
  .back .back_btn {
    max-width: 400px;
  }
  footer ul {
    gap: 2rem;
  }
  footer ul li {
    min-width: 100px;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  body {
    width: 100%;
  }
  .mordal .inner::-webkit-scrollbar {
    width: 0.6rem;
    background-image: #ccc;
  }
  .mordal .inner::-webkit-scrollbar-thumb {
    border-radius: 5rem;
    background: #c40500;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  #floatBtn {
    bottom: unset;
    top: 0rem;
    left: unset;
    right: 1rem;
  }
  #floatBtn picture {
    margin-right: 0;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    overflow: hidden;
    max-width: 20rem;
    cursor: pointer;
    filter: drop-shadow(0 0.2rem 0.1rem #666);
  }
  header .inner {
    padding: 1rem 0;
  }
  footer .inner {
    padding-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
  }
  footer .inner .footer_logo {
    width: 12rem;
  }
  footer .inner ul {
    gap: 2rem;
    justify-content: center;
  }
  footer .inner ul li {
    min-width: 0;
  }
  footer .inner ul li a {
    font-size: 0.8rem;
  }
  footer .inner .copyright {
    width: 100%;
  }
  .service li {
    font-size: 0.8rem;
  }
  .regarea .inner {
    padding: 2rem 3rem;
  }
  .regarea h2 {
    width: 28rem;
    margin-right: 0;
  }
  .regarea dl {
    width: 15rem;
  }
  .regarea dl dt {
    font-size: 1.1rem;
  }
  .regarea dl dd {
    font-size: 0.9rem;
  }
  .regarea dl dd strong {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=common.css.map */