@charset "UTF-8";
/**
 * font読み込み設定
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://db.onlinewebfonts.com/c/202277425a495fa4b4a00b3dcbe64d38?family=FuturaICG");
@font-face {
  font-family: Futura;
  src: url("../font/FuturaICG.otf");
}
@font-face {
  font-family: FuturaICGLight;
  src: url("../font/FuturaICGLight.otf");
}
/**
 * mixin style設定
 */
@media screen and (max-width: 833px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 834px) {
  .is-sp {
    display: none !important;
  }
}
.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
}

.is-fadeIn {
  opacity: 1;
  visibility: visible;
}

/**
 * utile style設定
 */
.util__title {
  font-family: "FuturaICG";
  font-size: 20px;
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

/**
 * common style設定
 */
body {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
}

p {
  margin: 0;
  font-size: 14px;
}

a {
  padding: 5px;
  font-family: "FuturaICG";
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

video {
  -o-object-fit: fill;
     object-fit: fill;
}

/**
 * component style設定
 */
.header__wrap {
  position: absolute;
  top: 2.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  z-index: 2;
}
@media screen and (max-width: 833px) {
  .header__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.header__top {
  margin: 0 auto;
  width: 200px;
}
.header__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5vw;
}
.header__item:not(:first-child) {
  margin-left: 50px;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.navigation__left {
  margin-top: 30px;
  margin-left: 50px;
  width: 150px;
}
.navigation__right {
  margin-top: 10px;
  margin-right: 10px;
}
.navigation__toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}
.navigation__toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #B2B2B2;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
}
.navigation__toggle i:nth-child(1) {
  top: 0;
}
.navigation__toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.navigation__toggle i:nth-child(3) {
  bottom: 0;
}
.navigation__body {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  height: 100dvh;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.navigation__menu {
  margin-top: 50px;
}
.navigation__list {
  padding: 15px 30px;
}
.navigation__list:not(:first-child) {
  margin-top: 30px;
}
.navigation .show__menu i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.navigation .show__menu i:nth-child(2) {
  opacity: 0;
}
.navigation .show__menu i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
.navigation .show__body {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 833px) {
  .hero {
    height: 500px;
  }
}
.hero video {
  height: 100%;
  width: 100%;
}
.hero__wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 833px) {
  .hero__wrap {
    top: 55%;
  }
}
@media screen and (min-width: 834px) {
  .hero__wrap {
    top: 50%;
  }
}
.hero__title {
  margin: 0;
  font-size: 50px;
}
@media screen and (max-width: 833px) {
  .hero__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 834px) {
  .hero__title {
    font-size: 50px;
  }
}
.hero__text {
  font-size: 18px;
}
.hero__text:first-of-type {
  margin-bottom: 5px;
}
@media screen and (max-width: 833px) {
  .hero__text:first-of-type {
    margin-top: 50px;
  }
}
@media screen and (min-width: 834px) {
  .hero__text:first-of-type {
    margin-top: 3vw;
  }
}

.service {
  padding: 0 15px;
}
@media screen and (max-width: 833px) {
  .service {
    margin-top: 90px;
  }
}
@media screen and (min-width: 834px) {
  .service {
    margin-top: 120px;
  }
}
.service__wrap {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin: 50px auto 0;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 833px) {
  .service__wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 834px) {
  .service__wrap {
    align-items: start;
  }
}
.service__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 330px;
}
@media screen and (max-width: 833px) {
  .service__item:not(:first-child) {
    margin-top: 50px;
  }
}
.service__title {
  font-size: 18px;
  text-align: center;
}
.service__image {
  position: relative;
  margin-top: 15px;
  width: 100%;
  max-width: 330px;
  padding-top: 100%;
  background-color: #f1f1f1;
}
.service__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
.service__description {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}
.service__description p:not(:first-child) {
  margin-top: 5px;
}

.works {
  margin-top: 150px;
}
.works__wrap {
  margin-top: 100px;
}

.about {
  margin-top: 200px;
}
.about__wrap {
  margin: 40px auto 0;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 833px) {
  .about__wrap {
    padding: 0 15px;
  }
}
.about__row {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  border-bottom: solid 1px #cbcbcb;
}
.about__left {
  text-align: right;
}
@media screen and (max-width: 833px) {
  .about__left {
    padding: 0;
    width: 30%;
    text-align: center;
  }
}
@media screen and (min-width: 834px) {
  .about__left {
    padding: 0 50px;
    width: 40%;
  }
}
.about__right {
  text-align: left;
}
@media screen and (max-width: 833px) {
  .about__right {
    padding: 0;
    width: 70%;
  }
}
@media screen and (min-width: 834px) {
  .about__right {
    padding: 0 50px;
    width: 60%;
  }
}

.contact {
  margin-top: 130px;
  padding: 0 15px;
}
.contact__wrap {
  margin: 40px auto 0;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 833px) {
  .contact__form {
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 834px) {
  .contact__form {
    margin: 70px auto 0;
  }
}
.contact__row {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  min-height: 30px;
  line-height: 30px;
}
@media screen and (max-width: 833px) {
  .contact__row {
    font-size: 14px;
    flex-direction: column;
  }
}
.contact__btn {
  position: relative;
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 300px;
}
.contact__btn input[type=submit] {
  padding: 15px 0;
  width: 100%;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
}
.contact__btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../image/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 833px) {
  .contact__left {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .contact__left {
    padding-right: 50px;
    width: 35%;
  }
}
.contact__left .required-label {
  position: relative;
}
.contact__left .required-label::after {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  content: "必須";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}
.contact__left .confirm-label {
  position: relative;
}
.contact__left .confirm-label::after {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  content: "確認用";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}
.contact__right {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 833px) {
  .contact__right {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .contact__right {
    width: 65%;
  }
}
.contact__right input[type=checkbox] {
  margin-right: 10px;
  accent-color: #555;
  transform: scale(1.5);
}
.contact__right input[type=text],
.contact__right input[type=email],
.contact__right textarea {
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: solid 1px #4D4D4D;
}
.contact__right .required-label {
  position: relative;
}
@media screen and (max-width: 833px) {
  .contact__right .required-label {
    margin: 0;
  }
}
@media screen and (min-width: 834px) {
  .contact__right .required-label {
    margin-left: 160px;
  }
}
.contact__right .required-label::after {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  content: "必須";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}

.footer {
  margin-top: 120px;
  background-color: #E5E5E5;
}
.footer__wrap {
  margin: 0 auto;
  padding: 30px 0 30px 30px;
  width: 100%;
  max-width: 1100px;
}
.footer__body {
  display: flex;
}
@media screen and (max-width: 833px) {
  .footer__left {
    width: 50%;
  }
}
@media screen and (min-width: 834px) {
  .footer__left {
    width: 25%;
  }
}
@media screen and (max-width: 833px) {
  .footer__img {
    width: 125px;
  }
}
@media screen and (min-width: 834px) {
  .footer__img {
    width: 160px;
  }
}
.footer__text p {
  margin-top: 5px;
}
@media screen and (max-width: 833px) {
  .footer__text p {
    font-size: 12px;
  }
}
@media screen and (min-width: 834px) {
  .footer__text p {
    font-size: 14px;
  }
}
.footer__right {
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
}
@media screen and (max-width: 833px) {
  .footer__right {
    width: 50%;
  }
}
@media screen and (min-width: 834px) {
  .footer__right {
    width: 75%;
  }
}
.footer__bar {
  padding: 5px 0;
  height: 25px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background-color: #000;
}

/**
 * slider style設定
 */
.slider {
  margin: 0 auto;
  width: 90vw;
}
.slider__img {
  margin: 0 5px;
}
.slider__img img {
  width: 100%;
  height: auto;
}

.slider_L {
  margin-top: 40px;
}
.slider_L__img {
  margin: 0 5px;
}
.slider_L__img img {
  width: 100%;
  height: auto;
}

.slider_R {
  margin-top: 40px;
}
.slider_R__img {
  margin: 0 5px;
}
.slider_R__img img {
  width: 100%;
  height: auto;
}

.slick-prev:before, .slick-next:before {
  font-size: 50px;
  opacity: 1;
  color: #f1f1f1;
}

.slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}

.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}

.address {
  text-align: center;
}

.address iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.address {
  padding-top: 60px;
}

.confirm {
  margin: 50px auto 0;
  padding: 0 15px;
  width: 100%;
  max-width: 700px;
}
.confirm__title {
  text-align: center;
}
.confirm__subtitle {
  text-align: center;
}
.confirm__row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 30px 0;
  border-bottom: solid 1px #cbcbcb;
}
.confirm__row input[type=submit] {
  padding: 15px 0;
  width: 100%;
  max-width: 150px;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
}
.confirm__row button {
  margin-left: 15px;
  padding: 15px 0;
  width: 100%;
  max-width: 150px;
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 50px;
}
.confirm__left {
  font-weight: bold;
}
@media screen and (max-width: 833px) {
  .confirm__left {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .confirm__left {
    width: 40%;
  }
}
@media screen and (max-width: 833px) {
  .confirm__right {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .confirm__right {
    width: 60%;
  }
}

.send {
  margin: 50px auto 0;
  padding: 0 15px;
  width: 100%;
  max-width: 700px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */