body {
  font-size: 14px;
  color: #161616;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
}

.header {
  height: 60px;
  width: 100%;
}

.header__inner {
  padding: 18px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 34px;
  }
}

.header__link {
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__link:hover {
  color: #06C755;
}

.drawer-content {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #06C755;
  z-index: 50;
  padding: 124px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(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: 30px;
}

.drawer-content__link {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

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

.drawer-icon {
  width: 38px;
  height: 24px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked {
  position: fixed;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  background: #fff;
}
.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);
  top: 10px;
  background: #fff;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: #161616;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    display: none;
  }
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 11px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 22px;
}

.fv {
  height: 600px;
  margin-top: -60px;
  background-image: url(../img/fv_sp.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    background-image: url(../img/fv_pc.png);
  }
}

.fv__texts {
  position: absolute;
  left: 34px;
  bottom: 36px;
  color: #FFF;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .fv__texts {
    left: 60px;
    bottom: 50px;
  }
}

.fv__title {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 20px;
  }
}

.fv__text {
  margin-top: 8px;
  font-size: 36px;
  line-height: 52px; /* 144.444% */
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 40px;
    font-weight: 700;
  }
}

.service {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.service__inner {
  padding-inline: 40px;
}
@media screen and (min-width: 768px) {
  .service__inner {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.service__content:nth-of-type(2) {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .service__content {
    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;
  }
  .service__content:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .service__content:nth-of-type(1) .service__img {
    margin-left: 72px;
  }
  .service__content:nth-of-type(2) .service__img {
    margin-right: 72px;
  }
  .service__content:nth-of-type(2) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .service__texts {
    width: 45.56%;
  }
}

.service__tag {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  background: #06C755;
  padding: 4px 13px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .service__tag {
    font-size: 20px;
    padding: 4px 15px;
  }
}

.service__title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .service__title {
    margin-top: 14px;
    font-size: 28px;
    letter-spacing: 1.5px;
  }
}
@media screen and (min-width: 900px) {
  .service__title {
    font-size: 32px;
    margin-top: 20px;
  }
}

.service__text {
  margin-top: 10px;
  font-weight: 500;
  line-height: 26px; /* 185.714% */
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .service__text {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .service__text {
    margin-top: 24px;
  }
}

.service__img {
  margin-top: 18px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service__img {
    margin-top: 0;
    width: 47.78%;
  }
}
.service__img img {
  -webkit-filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.2));
}

.message {
  background-color: #DED2C2;
  padding-top: 70px;
  padding-bottom: 60px;
  background-image: url(../img/message-bg_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .message {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/message-bg_pc.png);
    background-size: cover;
  }
}

.message__inner {
  padding-inline: 40px;
}
@media screen and (min-width: 768px) {
  .message__inner {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
}

.message__title {
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .message__title {
    font-family: "Open Sans";
    font-size: 40px;
    letter-spacing: 3px;
  }
}

.message__texts {
  margin-top: 40px;
  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;
}
@media screen and (min-width: 768px) {
  .message__texts {
    margin-top: 64px;
  }
}

.message__text {
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 1px;
  text-align: justify;
  word-break: break-all;
}

.message__from {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .message__from {
    margin-top: 30px;
  }
}

.message__company {
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 1px;
}

.message__name {
  margin-top: 2px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
  .footer-sub__content {
    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;
    max-height: 397px;
  }
}

@media screen and (min-width: 768px) {
  .contact {
    width: 50%;
    max-height: 397px;
  }
}

.contact__bg {
  background: #06C755;
  padding-top: 70px;
  padding-bottom: 70px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.contact__bg:hover {
  background: #03A043;
}
@media screen and (min-width: 768px) {
  .contact__bg {
    height: 397px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .contact__content {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}

.contact__inner {
  padding-inline: 20px;
}

.contact__title-wrap {
  text-align: center;
  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;
}

.contact__title {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 40px;
  }
}

.contact__arrow {
  margin-left: 13px;
  background-image: url(../img/contact__arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 50px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact__arrow {
    margin-left: 36px;
    width: 30px;
    height: 60px;
  }
}

.contact__text {
  margin-top: 27px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px; /* 175% */
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 28px;
    line-height: 34px;
  }
}

.company {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .company__content {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}

.company__inner {
  padding-inline: 20px;
  max-width: 392px;
  margin-right: auto;
  margin-left: auto;
}
.company__title {
  color: #161616;
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .company__title {
    font-size: 40px;
    letter-spacing: 0;
    text-align: left;
  }
}

.company__info {
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company__info {
    text-align: left;
    min-width: 268px;
    margin-right: auto;
    margin-left: auto;
  }
}

.company__info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  line-height: 21px; /* 150% */
  letter-spacing: 1px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company__info-content:not(:first-child) {
  margin-top: 18px;
}

.company__info-left {
  width: 106px;
  font-weight: 500;
}

.company__info-right {
  width: 136px;
  margin-left: 30px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .company__info-right {
    width: 216px;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 8px;
  background-image: url(../img/footer-bg_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .footer {
    background-image: url(../img/footer-bg_pc.png);
    padding-top: 94px;
    padding-bottom: 12px;
    background-position: center bottom;
  }
}

.footer__inner {
  padding-inline: 60px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 30px;
    max-width: 1032px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__content {
    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;
  }
}

.footer__logo {
  color: #FFF;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  font-family: "Open Sans";
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    font-size: 32px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__logo {
    font-size: 40px;
    letter-spacing: 1px;
  }
}

.footer__nav {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 34px;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .footer__nav {
    gap: 52px;
  }
}

.footer__link {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__link {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .footer__link {
    font-size: 18px;
  }
}
.footer__link:hover {
  color: #06C755;
}

.copyright {
  margin-top: 44px;
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans";
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copyright {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    font-family: "Open Sans";
    font-size: 12px;
  }
}