@charset "UTF-8";
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  font-size: clamp(20px, 3vw, 32px);
  padding: 10px 0;
  padding: 0.625rem 0;
  background-color: #57BE37;
  -webkit-box-shadow: 5px 5px 0 #3A8B21;
          box-shadow: 5px 5px 0 #3A8B21;
  text-align: center;
  width: 100%;
  max-width: 100%;
  border-radius: 40px;
  color: #FFF;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 1.625rem 0;
    width: 31.25rem;
  }
}

.btn.btn--arrow {
  position: relative;
}

.btn.btn--arrow::before {
  content: "";
  position: absolute;
  top: 52%;
  right: 10px;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../images/btn-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
}
@media screen and (min-width: 768px) {
  .btn.btn--arrow::before {
    top: 50%;
    right: 1.875rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.btn:hover {
  opacity: 0.6;
}

.card-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  row-gap: 1.25rem;
  -webkit-column-gap: 1.5625rem;
     -moz-column-gap: 1.5625rem;
          column-gap: 1.5625rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .card-list {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 2.875rem;
    -webkit-column-gap: 3.25rem;
       -moz-column-gap: 3.25rem;
            column-gap: 3.25rem;
  }
}

.customer__title {
  width: 82%;
  min-width: 285px;
  min-width: 17.8125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .customer__title {
    max-width: 100%;
    width: 38.75rem;
  }
}

.customer__container {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .customer__container {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .customer__images {
    margin-right: -20px;
  }
}

.customer__image {
  min-width: 160px;
  min-width: 10rem;
  width: 46%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .customer__image {
    max-width: 100%;
    width: 14.1875rem;
  }
}

.customer__name {
  font-size: clamp(16px, 3vw, 20px);
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .customer__name {
    margin-top: 0.875rem;
  }
}

.cutomer__voice {
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .cutomer__voice {
    border: 10px solid #32190E;
    padding: 4.375rem;
  }
}

@media screen and (max-width: 750px) {
  .cutomer__voice {
    display: contents;
  }
}
.voice__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .voice__text {
    margin-top: 0;
  }
}

.floating__items {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .floating__items {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.btn.btn--floating {
  max-width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn.btn--floating {
    position: static;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    width: 5.8125rem;
    height: 35.75rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .floating__items {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
  }

  .btn.btn--floating::before {
    content: "";
    position: absolute;
    top: 52%;
    right: 0.625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../../images/btn-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .btn.btn--floating::before {
    top: 50%;
    right: 1.875rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .btn.btn--floating:hover::before {
    background-image: url(../../images/btn-arrow--k.png);
    z-index: 1;
  }
}
.footer {
  background: #1F1F1F;
  color: #FFF;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.footer__logo {
  width: 173px;
  width: 10.8125rem;
  max-width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 20rem;
  }
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__tel:hover {
  opacity: 0.8;
}

.footer__url:hover {
  opacity: 0.8;
}

.footer__info {
  text-align: center;
  width: 50%;
  margin-top: 6px;
  margin-top: 0.375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-top: 0.75rem;
    width: 21.875rem;
  }
}

.footer__address {
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__address {
    width: 17.75rem;
  }
}

.footer__tel img {
  margin-top: 8px;
  margin-top: 0.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__tel img {
    margin-top: 1rem;
    width: 18.875rem;
  }
}

.footer__url {
  font-size: clamp(14px, 3vw, 24px);
  margin-top: 4px;
  margin-top: 0.25rem;
  color: #FFF;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer__url {
    margin-top: 0.375rem;
  }
}

.header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 90px;
  height: 5.625rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: auto;
  }
}

.header.change-color {
  background: #1F1F1F;
}

.header__inner.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .header__inner.inner {
    max-width: 67.5rem;
  }
}

@media screen and (min-width: 768px) {
  .gNav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .header__area {
    padding: 2.5rem 0;
  }
}

.header__area .gNav__item:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header__area .gNav__item:not(:last-child) {
    margin-right: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .header__area .gNav__item > a {
    color: #FFF;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    position: relative;
  }
}

.gNav__item a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  bottom: -0.125rem;
  width: 100%;
  height: 1px;
  background: #FFF;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

.gNav__item a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__drawer {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  margin-left: auto;
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.intro__image {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .intro__image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.price__title {
  width: 82%;
  min-width: 285px;
  min-width: 17.8125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .price__title {
    max-width: 100%;
    width: 41.0625rem;
  }
}

.price__container {
  background-image: url(../../images/price-bgSP.jpg);
  background-size: cover;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .price__container {
    background-image: url(../../images/price-bg.jpg);
    margin-top: 5rem;
    padding-top: 2.5rem;
    padding-bottom: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.price__inner {
    max-width: 72rem;
  }
}

@media screen and (max-width: 750px) {
  .price__items {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.contact__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 4.6875rem;
  }
}

.contact__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 2.5rem;
  }
}

.tel__btn {
  text-align: center;
}

.tel__btn a {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: clamp(20px, 3vw, 28px);
  color: #FFF;
  border: 2px solid #FFF;
  position: relative;
  padding: 10px 0 10px 34px;
  padding: 0.625rem 0 0.625rem 2.125rem;
  max-width: 100%;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .tel__btn a {
    margin-top: 1.25rem;
    padding: 1.25rem 0 1.25rem 3.875rem;
    width: 32.5625rem;
  }
}

.tel__btn a::before {
  content: "";
  position: absolute;
  background-image: url(../../images/tel-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  top: 50%;
  left: 15px;
  left: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .tel__btn a::before {
    width: 2.3125rem;
    height: 2.3125rem;
    left: 1.5625rem;
  }
}

.small__text {
  font-size: clamp(14px, 3vw, 24px);
}

.section-customer {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-customer {
    margin-top: 6.25rem;
  }
}

.section-intro {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-intro {
    margin-top: 6.25rem;
  }
}

.section-price {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-price {
    margin-top: 6.25rem;
  }
}

.section-strong {
  margin-top: 80px;
  margin-top: 5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-strong {
    margin-top: 6.25rem;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.section-works {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-works {
    margin-top: 6.25rem;
  }
}

.section-youtube {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-youtube {
    margin-top: 11.25rem;
  }
}

.strong {
  background-image: url(../../images/strong-bgSP.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .strong {
    background-image: url(../../images/strong-bg.jpg);
  }
}

.strong-image {
  max-width: 100%;
}

.title__area {
  text-align: center;
}

.works__title {
  width: 76%;
  min-width: 262px;
  min-width: 16.375rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .works__title {
    max-width: 100%;
    width: 30.625rem;
  }
}

.works__items {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .works__items {
    margin-top: 2.5rem;
  }
}

.works__image {
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .16);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, .16);
  position: relative;
  width: 100%;
  padding-top: 73.2307%;
}

.works__image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__tilte {
  font-size: clamp(14px, 3vw, 20px);
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__tilte {
    margin-top: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .inner.youtube__inner {
    max-width: 43.75rem;
  }
}

.youtube__area {
  position: relative;
  width: 100%;
  padding-top: 57.1014%;
  margin-inline: auto;
  display: block;
}

.youtube__area iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .youtube__area iframe {
    max-width: 43.75rem;
    height: 400px;
  }
}
/*# sourceMappingURL=styles.css.map */
