@charset "UTF-8";
/*================================================================
**  Mixin
================================================================*/
/*================================================================
**  Reset.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: middle;
}

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

/*================================================================
**  Body
================================================================*/
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

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

/*================================================================
**  Button
================================================================*/
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .button {
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button--text {
    color: #4a4a4a;
  }
  .button:hover .button--icon-path {
    fill: #4a4a4a;
  }
  .button:hover.button--bg {
    color: #4a4a4a;
    opacity: 0.7;
  }
}

.button--bg {
  background-color: #fff;
}

.button--bg .button--text {
  color: #4a4a4a;
}

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

.button--border .button--text {
  color: #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--icon-path {
  fill: #fff;
}

.button--icon-path-contact {
  fill: #4a4a4a;
}

.button--text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

/*================================================================
**  Section Main 共通パーツ
================================================================*/
.section {
  padding: 48px 0;
}

.section__inner {
  padding: 0 32px;
}
@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
}

.section__img {
  margin-bottom: 32px;
  -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);
}

.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__heading {
    margin-bottom: 24px;
  }
}

.section__heading-main {
  font-size: 40px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .section__heading-main {
    font-size: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__heading-main {
    font-size: 54px;
  }
}

.section__heading-sub {
  font-size: 11px;
}

.section__heading-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

/*================================================================
**  Header
================================================================*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header {
  background-color: #4a4a4a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
}

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

.header__logo {
  padding: 14px 24px;
  display: inline-block;
  font-size: 20px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}

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

.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .header__contents {
    display: block;
    border-top: none;
  }
}

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

/*================================================================
**  Main メイン
================================================================*/
@media screen and (min-width: 768px) {
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
}

/*================================================================
**  Fv ファーストビュー
================================================================*/
.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    left: 0;
    bottom: 100px;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__contents {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.fv__heading-main {
  display: block;
  font-size: 40px;
  letter-spacing: 0.1em;
}

.fv__heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

/*================================================================
**  Section Service
================================================================*/
.service .service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service .service__item + .service__item {
    margin-top: 0;
  }
}

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

.service__item-img {
  margin-bottom: 14px;
  text-align: center;
}

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

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

/*================================================================
**  Section Works
================================================================*/
.works {
  background-color: #fafafa;
}
.works .works__item + .works__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works .works__item + .works__item {
    margin-top: 0;
  }
}

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

.works__item-img {
  margin-bottom: 12px;
}
.works__item-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);
}

.works__item-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
}

.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

/*================================================================
**  Section About
================================================================*/
.about .section__heading-text + .section__heading-text {
  margin-top: 15px;
}

.about__img {
  margin-bottom: 32px;
}
.about__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);
}

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

/*================================================================
**  Section Work Flow
================================================================*/
.workflow {
  background-color: #fafafa;
}

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

.workflow__item {
  position: relative;
  padding: 46px 16px 24px;
  border: 1px solid #808080;
}
.workflow__item + .workflow__item {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .workflow__item + .workflow__item {
    margin-top: 0;
  }
}

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

.workflow__item-img {
  margin-bottom: 24px;
  text-align: center;
}

.workflow__item-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

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

/*================================================================
**  Section Message
================================================================*/
.message__img {
  margin-bottom: 32px;
}
.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);
}

@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;
  }
}

/*================================================================
**  Footer フッター
================================================================*/
.footer {
  background-color: #fff;
}

.footer__inner {
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__item {
  padding: 40px;
}
.footer__item--contact {
  background-color: #6f6f6f;
}
.footer__item--twitter {
  background-color: #4a4a4a;
}
@media screen and (min-width: 768px) {
  .footer__item {
    padding: 54px 10px;
  }
}

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

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