@charset "UTF-8";
/*================================================================
リセットCSS
================================================================*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 全体のスタイル */
html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #3D3835;
  font-size: 15px;
}

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

.display-tb {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .display-tb {
    display: inline;
  }
}

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

.link-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 30px;
  width: 160px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 25px;
  -webkit-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.link-button .button__text {
  margin-left: 10px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-button:hover {
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
.link-button.--contact {
  background-color: #fff;
  color: #998D87;
  border: 1px solid #fff;
}
.link-button.--contact .button__icon-path {
  fill: #998D87;
}
.link-button.--contact .button__text {
  text-decoration: none;
}
.link-button.--contact:hover {
  opacity: 0.7;
  text-decoration: none;
}
.link-button.--border {
  background-color: transparent;
  border: 1px solid #fff;
}
.link-button.--border .button__icon-path {
  fill: #fff;
}
.link-button.--border .button__text {
  text-decoration: none;
  color: #fff;
}
.link-button.--border:hover {
  background-color: #fff;
}
.link-button.--border:hover .button__icon-path {
  fill: #998D87;
}
.link-button.--border:hover .button__text {
  color: #998D87;
}

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

.u-hidden-visually {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section {
  padding: 56px 0;
}
.section .section__inner {
  padding: 0 32px;
  max-width: 544px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section .section__inner {
    max-width: 744px;
    margin: 0 auto;
  }
}
.section .section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .section .section__heading {
    margin-bottom: 24px;
  }
}
.section .section__heading-main {
  font-size: 28px;
  font-family: "Kalam", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .section .section__heading-main {
    font-size: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section .section__heading-main {
    font-size: 40px;
  }
}
.section .section__heading-main .-sub {
  font-size: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section .section__heading-main .-sub {
    font-size: 20px;
  }
}
.section .section__heading-sub {
  font-size: 14px;
}
.section .section__lead-text {
  line-height: 1.6;
}
.section .section__contents {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wrapper .header {
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
  }
  .wrapper .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
}

header {
  color: #fff;
  background-color: #998D87;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  header {
    position: sticky;
    padding: 50px 20px;
    height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: relative;
  }
}

.header-bar__container {
  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;
}
@media screen and (min-width: 768px) {
  .header-bar__container {
    display: block;
    margin: 0 auto;
  }
}
.header-bar__container .header__logo {
  padding: 12px 24px;
  font-size: 16px;
  font-family: "Caveat", serif;
  line-height: 1;
}
@media screen and (min-width: 400px) and (max-width: 767px) {
  .header-bar__container .header__logo {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .header-bar__container .header__logo {
    text-align: center;
    font-size: 38px;
    letter-spacing: 0;
    padding: 0;
  }
}
.header-bar__container .header__menu-button {
  width: 30px;
  height: 36px;
  margin-right: 24px;
  border: none;
  background: url(../img/bg_menu.png) center center no-repeat;
  color: transparent;
  overflow: hidden;
  background-size: contain;
}
.header-bar__container .header__menu-button.is-checked {
  background-image: url(../img/bg_menu-close.png);
}
@media screen and (min-width: 768px) {
  .header-bar__container .header__menu-button {
    display: none;
  }
}

.header__contents {
  border-top: 1px solid #fff;
  height: 100vh;
  padding-top: 60px;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contents {
    display: block;
    border-top: none;
    height: auto;
  }
}
.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.fv {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background-color: #F5F6F6;
  background: url("../img/img_fv-pc.webp") no-repeat center center;
  background-size: cover;
}

.fv__contents {
  position: absolute;
  left: 0;
  top: 30%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 60%;
  max-width: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 32px 28px;
  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;
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .fv__contents {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (min-width: 768px) {
  .fv__contents {
    padding-left: 5%;
    min-width: 60%;
  }
}
.fv__contents .fv__heading-main {
  display: block;
  font-size: 22px;
  letter-spacing: 0.07em;
  font-family: "Caveat", serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 400px) {
  .fv__contents .fv__heading-main {
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .fv__contents .fv__heading-main {
    display: inline;
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .fv__contents .fv__heading-main {
    font-size: 26px;
  }
}
.fv__contents .fv__heading-sub {
  font-family: "Caveat", serif;
  margin-top: 4px;
  padding-left: 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25);
  display: block;
}
@media screen and (min-width: 400px) and (max-width: 767px) {
  .fv__contents .fv__heading-sub {
    font-size: 30px;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .fv__contents .fv__heading-sub {
    display: block;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .fv__contents .fv__heading-sub {
    font-size: 34px;
    margin-top: 2px;
  }
}
.fv__contents p {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.4;
}

.shapedividers_com-2818 {
  overflow: hidden;
  height: 150px;
  position: relative;
}

.shapedividers_com-2818 {
  overflow: hidden;
  position: relative;
}

.shapedividers_com-2818::before {
  content: "";
  font-family: "shape divider from ShapeDividers.com";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 172% 104px;
  background-position: 37% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23998d87"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23998d87"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23998d87"/></svg>');
}

@media (min-width: 768px) {
  .shapedividers_com-2818::before {
    background-size: 142% 95px;
    background-position: 50% 0%;
  }
}
@media (min-width: 1025px) {
  .shapedividers_com-2818::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 149% 90px;
    background-position: 50% 0%;
  }
}
@media (min-width: 2100px) {
  .shapedividers_com-2818::before {
    background-size: 149% calc(2vw + 90px);
  }
}
.service__list {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__item-image {
  text-align: center;
  margin: 0 auto 16px;
  width: 50%;
}

.service__item-name {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service__item-text {
  font-size: 14px;
  line-height: 1.4;
}

.works {
  background-color: #F5F6F6;
}

.works__list {
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
    max-width: unset;
  }
}

.works__item + .works__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-image {
  text-align: center;
  margin-bottom: 12px;
}
.works__item-image img {
  aspect-ratio: 1.414;
  -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-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.works__item-link {
  display: inline-block;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works__item-link .ico_new-window {
  width: 14px;
  height: 14px;
}
.works__item-link:hover {
  color: rgba(61, 56, 53, 0.7);
}

.about {
  background-color: #F5F6F6;
}

.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;
}
@media screen and (min-width: 768px) {
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 36px;
  }
}

.about__image {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 45%;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.about__image picture {
  margin-bottom: 32px;
}
.about__image img {
  max-width: 100%;
  -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);
}

@media screen and (min-width: 768px) {
  .about__text-contents {
    width: 70%;
  }
}

.about__text {
  font-size: 14px;
  line-height: 1.8;
}
.about__text + .about__text {
  margin-top: 1em;
}

.workflow__content {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .workflow__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .workflow__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}

.workflow__item {
  position: relative;
  background-color: #fff;
  border: 1px solid #879399;
  padding: 46px 16px 24px;
  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;
  -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);
}
@media screen and (min-width: 768px) {
  .workflow__item {
    padding-right: 12px;
    padding-left: 12px;
  }
}
.workflow__item + .workflow__item {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .workflow__item + .workflow__item {
    margin-top: 0;
  }
}

.workflow__item-num {
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #879994;
  color: #fff;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
}

.workflow__item-icon {
  margin-bottom: 14px;
  height: 60px;
}

.workflow__item-title {
  margin-bottom: 10px;
}

.workflow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.price-monitor {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  display: block;
  color: #bb2020;
}

.workflow .price-monitor {
  margin-top: 10px;
}

.skills__list li + li {
  margin-top: 12px;
}

.message {
  background-color: #F5F6F6;
}

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

.message__img {
  margin-bottom: 32px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .message__img {
    width: 40%;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.message__img img {
  max-width: 100%;
  -webkit-box-shadow: 0 0.8px 15px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.8px 15px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .message__text-container {
    width: 60%;
  }
}
.message__text-container p {
  font-size: 14px;
  line-height: 1.6;
}
.message__text-container p + p {
  margin-top: 1em;
}

.message .price-monitor {
  margin-top: 18px;
}

.info .section__heading {
  color: #fff;
}
.info .section__heading .section__heading-main {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .info__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.info__inner .section {
  padding: 40px;
}
@media screen and (min-width: 768px) {
  .info__inner .section {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.info__item {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .info__item .section__heading-main {
    font-size: 28px;
  }
}
.info__item .section__heading-sub {
  text-align: left;
}

.info .contact {
  background-color: #879994;
}
.info .contact a:hover {
  color: #fff;
}
.info .contact a:hover .button__icon-path {
  fill: #879994;
}
.info .contact a:hover .button__text {
  color: #879994;
}

.twitter {
  background-color: #998D87;
}

.footer {
  background-color: #F5F6F6;
  text-align: center;
  padding: 10px;
}

.footer__copyright {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}/*# sourceMappingURL=style.css.map */