.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    height: 70px;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.header__logo img {
  width: 120px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__logo:hover img {
  opacity: 0.6;
}

.header__nav {
  position: fixed;
  z-index: 10;
  top: 60px;
  right: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: #a8815b;
  margin-left: 105px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  padding-top: 32px;
  padding-right: 15px;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding: 0;
  }
}

.header__lists {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 47px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .header__link:hover {
    color: #a8815b;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #a8815b;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 16px;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    position: relative;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}

.fv__img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .fv__img-picture {
    max-width: 990px;
    margin-left: auto;
    display: block;
  }
}

.fv__text {
  position: absolute;
  inset-block: 0;
  margin-block: auto;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 80px 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .fv__text {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.fv__text-main {
  margin-top: 30px;
  font-family: "Noto Serif";
  font-size: 41px;
  font-weight: 600;
  color: #a8815b;
}
@media screen and (min-width: 768px) {
  .fv__text-main {
    margin-top: 0;
  }
}

.fv__text-sub {
  color: #a8815b;
  font-size: 22px;
  font-weight: 400;
}

.about {
  margin-top: 94px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 160px;
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.1666666667%;
  }
}

.about-image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .about__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.about__text-main {
  color: #a8815b;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text-main {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-main {
    font-size: 20px;
  }
}

.about__text-sub {
  font-weight: 300;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .about__text-sub {
    margin-top: 40px;
  }
}

.works {
  margin-top: 94px;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 160px;
  }
}

.works__cards {
  padding-bottom: 30px;
}

.works-card {
  border-radius: 20px;
  border: 3px solid #a8815b;
  background: #fff;
  -webkit-box-shadow: 0px 9px 30px 0px #f4f4f4;
          box-shadow: 0px 9px 30px 0px #f4f4f4;
  padding: 12px 12px 9px 12px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .works-card {
    border-radius: 30px;
    padding: 17px 17px 15px 17px;
    max-width: 800px;
  }
}
.works-card__img {
  text-align: center;
}
.works-card__img img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .works-card__img img {
    border-radius: 20px;
  }
}

.works-card__image {
  text-align: center;
}

.works-card__text {
  color: #a8815b;
  font-size: 16px;
  font-weight: 600;
  margin-top: 11px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works-card__text {
    font-size: 16px;
    margin-top: 18px;
  }
}

.service {
  margin-top: 94px;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 159px;
  }
}

.service__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
}
@media screen and (min-width: 768px) {
  .service__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 900px) {
  .service__boxes {
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .service__boxes {
    gap: 90px;
  }
}

.service-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.service-box__img img {
  width: 100%;
  border-radius: 20px;
  max-width: 600px;
}

.service-box__text {
  padding: 26px 0;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.service-box__text-main {
  color: #a8815b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 160px;
  }
}

.contact__contain {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.contact__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__img {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.contact__img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact__text-main {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact__text-main {
    font-size: 21px;
  }
}
@media screen and (min-width: 900px) {
  .contact__text-main {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__text-main {
    font-size: 28px;
  }
}

.contact__text-sub {
  font-size: 14px;
  font-weight: 300;
  margin-top: 22px;
  width: 400px;
}
@media screen and (min-width: 768px) {
  .contact__text-sub {
    font-size: 16px;
    margin-top: 36px;
  }
}

.contact__button {
  margin-top: 42px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 44px;
  }
}

.contact__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

footer {
  margin-top: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.footer__logo img {
  width: 120px;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo:hover img {
  opacity: 0.6;
}

.footer__privacy {
  margin-top: 21px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__privacy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.footer__privacy p {
  color: #888;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.footer__sns {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__sns-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-link:hover {
  opacity: 0.6;
}

.footer__sns-twitter {
  width: 21px;
  height: auto;
}

.footer__sns-instagram {
  width: 18px;
  height: 22.2px;
}

.footer__sns-line {
  width: 18px;
  height: 19.2px;
}

.footer__copylight {
  margin-top: 21px;
  color: #888;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .footer__copylight {
    margin-top: 26px;
  }
}

.boxxx {
  width: 100px;
  aspect-ratio: 1;
  background-color: #000;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.section-title {
  color: #a8815b;
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  text-align: center;
  margin-bottom: 75px;
  -webkit-animation: textAnime 1.5s 0.5s forwards ease-in-out;
          animation: textAnime 1.5s 0.5s forwards ease-in-out;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #a8815b;
}
@media screen and (min-width: 768px) {
  .section-title::after {
    bottom: -25px;
  }
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 40px;
    margin-bottom: 90px;
  }
}
.section-title--type2 {
  color: #a8815b;
}

@-webkit-keyframes textAnime {
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes textAnime {
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.button {
  display: inline-block;
  padding-top: 11px;
  padding-bottom: 11px;
  color: #a8815b;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02px;
  background: #fff;
  border: 1px solid currentColor;
  min-width: 158px;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #a8815b;
  color: #fefefe;
}

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

.sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}

main {
  overflow: auto;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-left {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fade-in-right {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fade-in-right-1500 {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}