@charset "UTF-8";
.animation__text .char {
  opacity: 0;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.3s ease, translate 0.5s ease;
  transition: opacity 0.3s ease, translate 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.works {
  overflow: hidden;
}

.animated__slideIn--left {
  opacity: 0;
  translate: -1000px;
  -webkit-transition: opacity 0.5s ease, translate 0.5s ease;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

.animated__slideIn--right {
  opacity: 0;
  translate: 1000px;
  -webkit-transition: opacity 0.5s ease, translate 0.5s ease;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.animated__slideIn--right.js-show {
  opacity: 1;
  translate: 0;
}

body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
}
body.is-fixed {
  overflow: hidden;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.text-color-caution {
  color: rgb(12, 4, 248);
  letter-spacing: 1.8px;
  font-weight: bold;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header {
  padding-inline: 20px;
  background: #4a4a4a;
  -ms-flex-preferred-size: 20.8%;
      flex-basis: 20.8%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 24px;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}

.header__container {
  margin-inline: auto;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  position: sticky;
  top: 50px;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .header__container {
    display: block;
    margin-top: 0px;
    margin-inline: 0;
    width: auto;
  }
}

.header__logo {
  padding-inline: 28px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding-inline: 0;
  }
}

.header__logo-text {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__logo-text {
    font-size: 20px;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .header__menu-button {
    background: url(../img/bg_menu.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: -6px;
    right: 0;
    width: 30px;
    height: 36px;
    color: transparent;
    border: none;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-button.is-checked {
    background: url(../img/bg_menu-close.png) no-repeat center center;
    background-size: 100% auto;
  }
}

.header__contents {
  margin-inline: auto;
}

.header__nav-list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    margin-inline: auto;
    width: 160px;
  }
}

.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.header__nav-link {
  padding: 6px 10px 6px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button--bg {
  padding: 6px 10px 6px 30px;
  background: #fff;
}
.button--bg .button__text {
  color: #4a4a4a;
}

.button--border {
  border: 1px solid #fff;
}

.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__text {
  color: #fff;
  letter-spacing: 1.5px;
}

.header__contents-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__contents-drawer {
    margin-top: 40px;
    text-align: center;
    height: 100vh;
  }
}

.main {
  -ms-flex-preferred-size: 79.2%;
      flex-basis: 79.2%;
}
@media screen and (max-width: 767px) {
  .main {
    margin-top: 71px;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.fv {
  position: relative;
}

.fv__img img {
  width: 100%;
}

.fv__contents {
  padding-block: 16px 18px;
  padding-inline: 60px;
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 1;
}
.fv__contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_fv.png) no-repeat center center;
  background-size: 100% auto;
  opacity: 0.8;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv__contents::before {
    background: url(../img/sp/bg_fv.png) no-repeat center center;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .fv__contents {
    padding: 30px;
  }
}

.fv__heading-main {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .fv__heading-main {
    font-size: 26px;
  }
}

.fv__heading-sub {
  margin-top: 8px;
}

.section {
  padding-block: 60px;
}

.section__inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .section__inner {
    padding-inline: 20px;
  }
}

.section__head-main {
  font-size: 50px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .section__head-main {
    font-size: 30px;
  }
}

.section__head-sub {
  font-size: 12px;
}

.section__lead-wrapper {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .section__lead-wrapper {
    margin-top: 8px;
  }
}

.section__lead-text {
  line-height: 1.6;
}
.section__lead-text:not(:first-child) {
  margin-top: 8px;
}

.section__contents {
  margin-top: 60px;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service__item {
  text-align: center;
}

.service__item-img img {
  height: 70px;
}

.service__item-name {
  margin-top: 14px;
  font-weight: bold;
}

.service__item-text {
  text-align: start;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .service__item-text {
    font-size: 14px;
    text-align: center;
  }
}

.works {
  background: #fafafa;
  padding-bottom: 120px;
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .works__list {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.works__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 6/4;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.works__item-info {
  margin-top: 12px;
  text-align: center;
}

.works__item-term {
  display: inline-block;
}

.works__item-dl {
  margin-top: 8px;
}

.works__item-group:not(:first-child) {
  margin-top: 4px;
}

.works__item-description {
  display: inline-block;
}

.works__item-link {
  margin-top: 8px;
  font-size: 12px;
  display: inline-block;
  text-decoration: underline;
}
.works__item-link::before {
  content: "▶ ";
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.about__text-contents {
  margin-top: 40px;
}

.about__img img {
  width: 100%;
  -webkit-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.5);
}

.about__img-text {
  margin-top: 12px;
  text-align: center;
}

.flow {
  background: #fafafa;
}

.flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.flow__item {
  padding: 46px 16px 24px;
  border: 1px solid #808080;
  position: relative;
}

.flow__item-num {
  position: absolute;
  font-size: 24px;
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #4a4a4a;
  color: #fff;
  display: grid;
  place-items: center;
}

.flow__item-img {
  text-align: center;
}

.flow__item-name {
  margin-top: 24px;
  font-weight: bold;
  text-align: center;
}

.flow__item-text {
  margin-top: 10px;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    text-align: center;
  }
}

.flow__maintenance-note {
  margin-top: 20px;
}

.flow__maintenance-body {
  margin-top: 8px;
  line-height: 1.6;
}

.flow__maintenance-text {
  line-height: 1.6;
}

.flow__price {
  margin-top: 40px;
}

.flow__price-heading {
  font-weight: bold;
}

.flow__price-text {
  margin-top: 12px;
  line-height: 1.6;
}

.flow__price-list {
  margin-top: 8px;
}

.flow__price-item {
  line-height: 1.6;
}

.message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.message__img {
  max-width: 46%;
}
.message__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
}

.message__text {
  margin-top: 24px;
}

.page-bottom {
  color: #fff;
}

.page-bottom__item {
  padding: 54px 10px;
  display: grid;
  place-items: center;
}

.page-bottom__item--contact {
  background: #6f6f6f;
}

.page-bottom__button {
  margin-inline: auto;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 6px 10px 6px 30px;
  width: 160px;
  border: 1px solid #fff;
}

.page-bottom__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-bottom__item--twitter {
  background: #4a4a4a;
}

.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}