body {
  font-family: "Noto Sans JP", "Kiwi Maru";
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .main {
    gap: 80px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 120px;
    max-width: 1512px;
    margin-inline: auto;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Courgette;
}

.heading__title {
  font-size: 40px;
}
@media screen and (min-width: 900px) {
  .heading__title {
    font-size: 60px;
  }
}

.heading__sub {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .heading__sub {
    font-size: 20px;
  }
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background: darkgray;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 16px;
  padding-inline: 20px;
}

.header__logo {
  width: 80px;
}
@media screen and (min-width: 900px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo a {
  width: 100%;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    gap: 15px;
    color: #fff;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header__link {
  font-weight: 600;
}
.header__link:hover {
  color: #32CD32;
}

@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__image::after {
  background: transparent url(../img/header-close.png) no-repeat top center/contain;
}

.drawer-icon__image::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: transparent url(../img/header-open.png) no-repeat top center/contain;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .drawer-icon__image::after {
    width: 50px;
    height: 50px;
  }
}

.drawer-content {
  width: 100%;
  height: 100%;
  background: darkgrey;
  top: 64px;
  position: fixed;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  z-index: 10;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  color: #fff;
  max-width: 140px;
  margin: 0 auto;
  padding-block: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .drawer-content__menu {
    font-size: 20px;
  }
}

.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  left: 5%;
  bottom: 20%;
  background: url(../img/fv-contents-bg.png) no-repeat center center/cover;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    max-width: 500px;
    max-height: 200px;
  }
}
@media screen and (min-width: 900px) {
  .fv__contents {
    max-width: 800px;
    max-height: 250px;
  }
}

.fv__heading {
  padding: 20px 30px;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    padding: 40px 60px;
  }
}

.fv__heading-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__heading-main {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .fv__heading-main {
    font-size: 34px;
  }
}

.fv__heading-sub {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .fv__heading-sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .fv__heading-sub {
    font-size: 24px;
  }
}

.service__contents {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .service__contents {
    margin-top: 30px;
  }
}

.service__text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .service__text {
    font-size: 20px;
  }
}

.service__wrapper {
  text-align: center;
  margin-top: 15px;
  margin-inline: auto;
  max-width: 335px;
}
@media screen and (min-width: 376px) {
  .service__wrapper {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .service__wrapper {
    max-width: 800px;
  }
}
@media screen and (min-width: 900px) {
  .service__wrapper {
    margin-top: 100px;
    max-width: 1024px;
  }
}

.service__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .service__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service__list {
  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: 10px;
}
@media screen and (min-width: 900px) {
  .service__list {
    max-width: 320px;
  }
}

.service__image {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .service__image {
    width: 120px;
    height: 120px;
  }
}
.service__image img {
  width: 100%;
  height: 100%;
}

.service__list-title {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .service__list-title {
    font-size: 20px;
  }
}

.service__list-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .service__list-text {
    font-size: 16px;
    text-align: left;
  }
}

.works__contents {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .works__contents {
    margin-top: 30px;
  }
}

.works__text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .works__text {
    font-size: 20px;
  }
}

.works__slider {
  margin-top: 15px;
  margin-inline: auto;
  max-width: 375px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__slider {
    margin-top: 20px;
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .works__slider {
    margin-top: 50px;
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .works__slider {
    max-width: 1024px;
  }
}

.works__swiper {
  padding-inline: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .works__swiper {
    padding-inline: 70px;
  }
}
@media screen and (min-width: 900px) {
  .works__swiper {
    padding-inline: 100px;
  }
}

.works__slide {
  width: 100%;
}

.works-card {
  display: block;
  border-radius: 20px;
  border: 3px solid #111;
  padding: 15px;
  background-color: #f5f5f5;
  text-align: center;
}

.works-card__image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.works-card__title {
  margin-top: 11px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .works-card__title {
    margin-top: 20px;
    font-size: 20px;
  }
}

.works-card__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .works-card__text {
    margin-top: 10px;
    font-size: 16px;
  }
}

.works__prev,
.works__next {
  margin-top: 40px;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .works__prev,
  .works__next {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 900px) {
  .works__prev,
  .works__next {
    width: 100px;
    height: 100px;
  }
}
.works__prev::after,
.works__next::after {
  display: none;
}

.works__prev {
  background: url(../img/works-prev.svg) no-repeat center center/contain;
  left: 0;
}

.works__next {
  background: url(../img/works-next.svg) no-repeat center center/contain;
  right: 0;
}

@media screen and (min-width: 900px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
    max-width: 1512px;
    margin: 0 auto;
  }
}

.about__image {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .about__image {
    max-width: 400px;
  }
}
.about__image img {
  width: 100%;
}

.about__text {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .about__text {
    margin-top: 30px;
    font-size: 20px;
  }
}

.work-flow__contents {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .work-flow__contents {
    margin-top: 30px;
    font-size: 20px;
  }
}

.work-flow__container {
  margin-top: 64px;
}

.work-flow__lists {
  margin: 0 auto;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .work-flow__lists {
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1Fr);
  }
}
@media screen and (min-width: 1200px) {
  .work-flow__lists {
    max-width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.work-flow__list {
  position: relative;
  border: 1px solid darkgrey;
  padding: 46px 16px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.work-flow__list-number {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 48px;
  height: 48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  color: #f5f5f5;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .work-flow__list-number {
    font-size: 26px;
  }
}

.work-flow__item-img {
  text-align: center;
}
.work-flow__item-name {
  margin-top: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .work-flow__item-name {
    font-size: 20px;
  }
}

.work-flow__item-text {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .work-flow__item-text {
    font-size: 16px;
  }
}

.my-hours__contents {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .my-hours__contents {
    margin-top: 30px;
    font-size: 20px;
  }
}

.my-hours__container {
  margin-top: 16px;
}

.my-hours__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .my-hours__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 42px;
    font-size: 24px;
  }
}

.my-hours__head {
  font-weight: 700;
}

.my-hours__time {
  position: relative;
  padding-left: 18px;
}
@media screen and (min-width: 900px) {
  .my-hours__time {
    padding-left: 35px;
  }
}
.my-hours__time::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/my-hours-icon.png) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .my-hours__time::before {
    width: 32px;
    height: 32px;
  }
}

.my-hours__sub {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .my-hours__sub {
    margin-top: 30px;
    font-size: 20px;
  }
}

.contact {
  background-color: #4a4a4a;
  color: #f5f5f5;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-bottom: 30px;
  }
}

.contact__contents {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .contact__contents {
    margin-top: 30px;
    font-size: 20px;
  }
}

.contact__container {
  margin-top: 25px;
  text-align: center;
}

.contact__sns-title {
  font-size: 40px;
}
@media screen and (min-width: 900px) {
  .contact__sns-title {
    font-size: 58px;
  }
}

@media screen and (min-width: 900px) {
  .contact__sus-sub {
    font-size: 20px;
  }
}

.contact__sns-link {
  position: relative;
  display: inline-block;
  max-width: 200px;
  margin-top: 15px;
  margin-inline: auto;
  color: #333;
  background-color: #f5f5f5;
  font-size: 20px;
  padding-left: 40px;
  padding-right: 10px;
  border-radius: 5px;
}
@media screen and (min-width: 900px) {
  .contact__sns-link {
    max-width: 400px;
    font-size: 30px;
    padding-block: 10px;
    padding-left: 60px;
  }
}
.contact__sns-link::before {
  content: "";
  position: absolute;
  background: url(../img/contact-link.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .contact__sns-link::before {
    width: 53px;
    height: 53px;
  }
}

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

.footer__copy {
  font-size: 10px;
}
@media screen and (min-width: 900px) {
  .footer__copy {
    font-size: 16px;
  }
}