body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
body.is-fixed {
  overflow: hidden;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .wrapper {
    display: block;
  }
}

.main {
  flex-basis: 80%;
}

.header {
  background: #f29705;
  position: relative;
  flex-basis: 20%;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
  }
}

.header-inner {
  position: -webkit-sticky;
  position: sticky;
  margin: 0 auto;
  top: 50px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 24px;
    position: relative;
    top: 0;
  }
}

.header-logo {
  color: #fff;
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header-logo {
    padding: 14px 0;
    font-size: 20px;
    display: inline-block;
    line-height: 1.6;
  }
}

.button-drawer {
  border: none;
  position: absolute;
  top: 30px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) no-repeat center center/contain;
  display: none;
}
@media screen and (max-width: 767px) {
  .button-drawer {
    display: block;
  }
}
.button-drawer:hover {
  cursor: pointer;
}
.button-drawer.is-checked {
  background: url(../img/bg_menu-close.png) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .drawer-content {
    display: none;
    height: calc(100vh - 88px);
    border-top: 1px solid #fff;
    padding-top: 50px;
    transform: translateY(-105%);
  }
  .drawer-content.is-checked {
    transform: translateY(0);
    display: block;
  }
}

.header-nav {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .header-nav {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
  }
}

.header-nav-list-item:not(:first-child) {
  margin-top: 20px;
}

.header-nav-link {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 30px;
  width: 175px;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s, opacity 0.3s linear 0s;
}
.header-nav-link:hover {
  background: #fff;
}
.header-nav-link:hover .header-nav-link-text {
  color: #f29705;
}
.header-nav-link:hover .header-nav-link-icon-path {
  fill: #f29705;
}

.header-nav-link-border {
  border: 1px solid #fff;
}

.header-nav-link-icon {
  width: 24px;
  display: flex;
  align-items: center;
}

.header-nav-link-icon-path {
  fill: #fff;
}

.header-nav-link-text {
  margin-left: 10px;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 88px;
  }
}

.fv-img img {
  width: 100%;
  min-height: 450px;
}

.fv-content {
  position: absolute;
  background: url(../img/bg_fv.png) no-repeat center center/cover;
  bottom: 15%;
  left: 0;
  width: 627px;
  height: 174px;
  padding-top: 24px;
  padding-left: 96px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv-content {
    width: 100%;
    max-width: 627px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
@media screen and (max-width: 767px) {
  .fv-content {
    background: url(../img/sp/bg_fv.png) no-repeat center center/cover;
    width: 100%;
    height: 200px;
    padding: 32px;
  }
}

.fv-heading-main {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #f29705;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fv-heading-main {
    font-size: 32px;
  }
}

.fv-heading-sub {
  display: block;
  font-size: 16px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .fv-heading-sub {
    font-size: 14px;
  }
}

.section {
  padding: 48px 0;
}

.section-inner {
  max-width: 944px;
  padding: 0 32px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section-inner {
    max-width: 504px;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #f29705;
}

.section-title-main {
  font-size: 60px;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-title-main {
    font-size: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-title-main {
    font-size: 40px;
  }
}

.section-title-sub {
  font-size: 11px;
}

.section-lead-text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .section-lead-text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 32px;
  }
}

.section-contents {
  margin-top: 40px;
}

.service-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .service-list {
    flex-direction: column;
  }
}

.service-item {
  flex: 1;
}

.service-item-img {
  text-align: center;
  height: 70px;
}

.service-item-svg {
  fill: #f29705;
}

.service-item-name {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
  color: #f29705;
}
@media screen and (max-width: 767px) {
  .service-item-name {
    font-size: 14px;
    margin-top: 14px;
  }
}

.service-item-text {
  text-align: left;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .service-item-text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.works {
  background: #fafafa;
}

.works-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .works-list {
    grid-template-columns: 1fr;
  }
}

.works-item-img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.works-item-name {
  font-weight: bold;
  margin-top: 12px;
  color: #f29705;
}

.works-item-link {
  text-decoration: underline;
  display: block;
  margin-top: 3px;
  transition: color 0.3s linear 0s;
}
.works-item-link:hover {
  color: #f29705;
}
@media screen and (max-width: 767px) {
  .works-item-link {
    font-size: 14px;
  }
}

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

.flow-item {
  position: relative;
  border: 1px solid #f29705;
  padding: 46px 16px 24px;
  flex: 1;
}

.flow-item-number {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #f29705;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-item-img {
  text-align: center;
  height: 70px;
}

.flow-item-svg {
  fill: #f29705;
}

.flow-item-name {
  margin-top: 24px;
  font-weight: bold;
  text-align: center;
  color: #f29705;
}
@media screen and (max-width: 767px) {
  .flow-item-name {
    font-size: 16px;
  }
}

.flow-item-text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .flow-item-text {
    font-size: 14px;
  }
}

.about {
  background: #fafafa;
}

.flex-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flex-contents {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: flex-start;
  }
}

.flex-contents-texts {
  width: 52.9661016949%;
}
@media screen and (max-width: 767px) {
  .flex-contents-texts {
    width: 100%;
  }
}

.flex-text {
  margin-top: 1em;
}

.flex-contents-img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 37.0762711864%;
  flex-shrink: 0;
}
.flex-contents-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .flex-contents-img {
    width: 100%;
    flex-shrink: 1;
  }
}

.commitment-texts {
  max-width: 744px;
}

.commitment-text {
  margin-top: 32px;
}

.message {
  background: #fafafa;
}

.contact-inner {
  max-width: 664px;
  width: 100%;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact-inner {
    max-width: 504px;
  }
}

.contact-content {
  background: #fafafa;
  padding: 40px;
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .contact-content {
    margin-top: 24px;
    padding: 20px;
  }
}

.contact-form-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .contact-form-items {
    gap: 24px;
  }
}

.contact-form-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form-item {
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-item {
    flex-direction: column;
    gap: 8px;
  }
}

.contact-form-label {
  display: block;
  background: #f29705;
  color: #fff;
  padding: 8px 0;
  width: 150px;
  text-align: center;
}
.contact-form-label:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact-form-label {
    font-size: 14px;
    width: 130px;
  }
}

.contact-form-input {
  width: 350px;
  border: 1px solid #4a4a4a;
  background: #FFF;
  transition: border-color 0.3s;
  padding: 10px;
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form-input {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-input {
    width: 100%;
  }
}
.contact-form-input:focus, .contact-form-input:hover {
  border-color: #f29705;
  outline: none;
  background: #fff;
}

.contact-form-textarea {
  width: 350px;
  border: 1px solid #4a4a4a;
  background: #FFF;
  transition: border-color 0.3s;
  padding: 10px;
  height: 200px;
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form-textarea {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-textarea {
    width: 100%;
  }
}
.contact-form-textarea:focus, .contact-form-textarea:hover {
  border-color: #f29705;
  outline: none;
  background: #fff;
}

.contact-button {
  text-align: center;
}

.contact-form-submit {
  display: inline-block;
  background: #fff;
  color: #333;
  border: 1px solid #4a4a4a;
  padding: 12px 0;
  width: 150px;
  font-size: inherit;
  font-family: inherit;
  transition: background-color 0.3s linear 0s, color 0.3s linear 0s;
}
@media screen and (max-width: 767px) {
  .contact-form-submit {
    width: 120px;
    font-size: 14px;
    padding: 8px 0;
  }
}
.contact-form-submit:hover {
  cursor: pointer;
  background-color: #f29705;
  color: #fff;
}

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

@media screen and (max-width: 767px) {
  .footer-copy {
    font-size: 11px;
  }
}
/*# sourceMappingURL=style.css.map */