@charset "UTF-8";
/*!
variables
------------------------------
*/
:root {
  --color-white: #fff;
  --color-black: #0d0b0c;
  --color-green: #0ba19b;
  --font-family-base: "Noto Sans JP", sans-serif;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 100%;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
body {
  margin: 0 auto;
  font-family: var(--font-family-base);
  word-break: break-all;
  color: var(--color-white);
  letter-spacing: 0;
  background-color: var(--color-black);
}

* {
  box-sizing: border-box;
}

/*!
utility
------------------------------
*/
.u-br-sp {
  display: block;
}

@media screen and (min-width: 992px) {
  .u-br-sp {
    display: none;
  }
}
.u-br-pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .u-br-pc {
    display: block;
  }
}
.u-desktop {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block !important;
  }
}
.u-mobile {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
}
/*!
layout
------------------------------
*/
.l-container {
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.l-container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg.png) no-repeat center/cover;
  opacity: 0.4;
  z-index: -1;
}

.l-inner {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/*!
component
------------------------------
*/
.c-commonButton {
  display: block;
  border-radius: 2.5rem;
  background-color: var(--color-green);
  width: 100%;
  padding: 0.9375rem 1.25rem 1.25rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-commonButton {
    border-radius: 5rem;
    padding: 1.9375rem 1.25rem 2.5625rem;
    font-size: 2.75rem;
  }
}

/*!
project
------------------------------
*/
/* main */
.p-front {
  padding-bottom: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-front {
    padding-bottom: 5.375rem;
  }
}

.p-front__buttonWrap {
  max-width: 48.75rem;
  display: grid;
  row-gap: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front__buttonWrap {
    row-gap: 1.5625rem;
  }
}

.p-front__subText {
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-front__subText {
    font-size: 1.8125rem;
  }
}

/* フッター */
.p-footer {
  padding-top: 2.75rem;
  padding-bottom: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 5.4375rem;
    padding-bottom: 13.125rem;
  }
}

.p-footer__img {
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 30px;
  margin-bottom: 30px;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */