@charset "UTF-8";
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #1C1917;
  background-color: #FAFAF8;
  overflow-x: hidden;
}
body.is-fixed {
  overflow: hidden;
}

.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
}
.button--solid {
  padding: 14px 28px;
  background-color: #D4622A;
  color: #fff;
  border: 2px solid #D4622A;
  font-size: 15px;
}
.button--solid:hover {
  background-color: transparent;
  color: #D4622A;
}
.button--border {
  padding: 12px 24px;
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.button--border:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1C1917;
}
.button--border:hover .button__icon-path {
  fill: #1C1917;
}
.button--border:hover .button__text {
  color: #1C1917;
}
.button--bg {
  padding: 10px 16px;
  background-color: #D4622A;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.button--bg .button__text {
  color: #fff;
}
.button--bg .button__icon-path {
  fill: #fff;
}
.button--bg:hover {
  opacity: 0.85;
}
.button__icon {
  width: 18px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #fff;
}
.button__text {
  font-size: inherit;
  color: inherit;
  line-height: 1;
}

.header {
  background-color: #1C1917;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
}
.header__logo {
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.06em;
}
.header__menu-button {
  border: none;
  background: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.header__menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__menu-button.is-checked span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__menu-button.is-checked span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-button.is-checked span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__contents {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background-color: #1C1917;
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.header__nav-item + .header__nav-item {
  margin-top: 2px;
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
  text-decoration: none;
}
.header__nav-link .button__icon-path {
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.2s ease;
}
.header__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header__nav-link:hover .button__icon-path {
  fill: #fff;
}
.header__nav-link.button--bg {
  background-color: #D4622A;
  color: #fff;
}
.header__nav-link.button--bg .button__icon-path {
  fill: #fff;
}
.header__nav-link.button--bg:hover {
  opacity: 0.88;
  background-color: #D4622A;
}

.main {
  padding-top: 56px;
}

.fv {
  position: relative;
  background-color: #1C1917;
  overflow: hidden;
}
.fv__img {
  display: block;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.35;
}
.fv__contents {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 48px 28px;
  background: linear-gradient(to top, #1C1917 50%, transparent);
}
.fv__heading-main {
  display: block;
  font-size: 46px;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.1;
}
.fv__heading-sub {
  margin-top: 16px;
  display: block;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.fv__cta {
  margin-top: 28px;
  display: inline-flex;
}

.section {
  padding: 72px 0;
}
.section--dark {
  background-color: #1C1917;
}
.section--cream {
  background-color: #F4EEE7;
}
.section__inner {
  padding: 0 24px;
}
.section__head {
  margin-bottom: 40px;
  text-align: center;
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  display: block;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #1C1917;
  position: relative;
  padding-bottom: 14px;
}
.section__head-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background-color: #D4622A;
  border-radius: 2px;
}
.section__head--center .section__head-main::after {
  left: 50%;
  transform: translateX(-50%);
}
.section__head-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6B6560;
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
}
.section__lead-text {
  font-size: 14px;
  line-height: 1.9;
  color: #6B6560;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: -16px;
  margin-bottom: 40px;
  text-align: center;
}
.section--dark .section__head-main {
  color: #fff;
}
.section--dark .section__head-sub {
  color: rgba(255, 255, 255, 0.5);
}
.section--dark .section__lead-text {
  color: rgba(255, 255, 255, 0.65);
}

.problems__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.problems__item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problems__item::before {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background-color: #D4622A;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
}
.problems__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(212, 98, 42, 0.12);
}
.problems__item-text {
  font-size: 13px;
  line-height: 1.6;
  color: #1C1917;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-top: 4px;
}

.service__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.service__item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #E8E2D9;
  transition: all 0.3s ease;
}
.service__item:hover {
  border-left-color: #D4622A;
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.service__item-img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.service__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__item-name {
  font-size: 15px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.service__item-text {
  font-size: 12px;
  line-height: 1.75;
  color: #6B6560;
  font-family: "Noto Sans JP", sans-serif;
}

.works__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.works__item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.works__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.works__item-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.works__item:hover .works__item-img img {
  transform: scale(1.06);
}
.works__item-body {
  padding: 16px 20px 20px;
}
.works__item-name {
  font-size: 16px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.works__item-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #D4622A;
  font-family: "Noto Sans JP", sans-serif;
  transition: gap 0.2s ease;
  text-decoration: none;
}
.works__item-link::after {
  content: "→";
  font-size: 12px;
  transition: transform 0.2s ease;
}
.works__item-link:hover {
  gap: 8px;
}
.works__item-link:hover::after {
  transform: translateX(2px);
}

.reasons__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.reasons__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 18px;
  transition: all 0.3s ease;
}
.reasons__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #D4622A;
  transform: translateY(-4px);
}
.reasons__item-img {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}
.reasons__item-img img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.reasons__item-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.reasons__item-text {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Noto Sans JP", sans-serif;
}

.price__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.price__item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #E8E2D9;
  transition: all 0.3s ease;
}
.price__item--featured {
  border-top-color: #D4622A;
  box-shadow: 0 6px 28px rgba(212, 98, 42, 0.14);
}
.price__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.price__item-name {
  font-size: 12px;
  color: #6B6560;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.price__item-amount {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  color: #1C1917;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.price__item-text {
  font-size: 11px;
  line-height: 1.65;
  color: #6B6560;
  font-family: "Noto Sans JP", sans-serif;
}

.flow__list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0;
}
.flow__list::before {
  display: none;
}
.flow__item {
  text-align: center;
  padding-bottom: 32px;
}
.flow__item:last-child {
  padding-bottom: 0;
}
.flow__item-num {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background-color: #D4622A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(212, 98, 42, 0.3);
}
.flow__item-img {
  display: none;
}
.flow__item-name {
  font-size: 16px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  padding-top: 0;
}
.flow__item-text {
  font-size: 13px;
  line-height: 1.8;
  color: #6B6560;
  font-family: "Noto Sans JP", sans-serif;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #E8E2D9;
  transition: border-color 0.3s ease;
}
.faq__item.is-open {
  border-color: #D4622A;
}
.faq__item-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #1C1917;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: 0.02em;
}
.faq__item-question::before {
  content: "Q";
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #D4622A;
  flex-shrink: 0;
  line-height: 1.4;
}
.faq__item-question::after {
  content: "+";
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: #6B6560;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1.1;
}
.faq__item.is-open .faq__item-question::after {
  transform: rotate(45deg);
  color: #D4622A;
}
.faq__item-answer {
  display: none;
  padding: 0 20px 20px 46px;
  font-size: 13px;
  line-height: 1.85;
  color: #6B6560;
  font-family: "Noto Sans JP", sans-serif;
}

.page-bottom__item {
  padding: 60px 24px;
  text-align: center;
}
.page-bottom__item--contact {
  background-color: #3D6B56;
}
.page-bottom__item--twitter {
  background-color: #3A2E26;
}
.page-bottom__button {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.page-bottom__button .button__icon-path {
  fill: #fff;
}
.page-bottom__button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #1C1917;
}
.page-bottom__button:hover .button__icon-path {
  fill: #1C1917;
}
.page-bottom .section__head {
  margin-bottom: 8px;
}
.page-bottom .section__head-main {
  color: #fff;
}
.page-bottom .section__head-main::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.5);
}
.page-bottom .section__head-sub {
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  background-color: #1C1917;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

/*--------------------------
// pc
--------------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex: 1;
    margin-left: 220px;
    padding-top: 0;
  }
  .header {
    width: 220px;
    height: 100vh;
    overflow-y: auto;
  }
  .header__container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 40px 20px 0;
  }
  .header__logo {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    display: block !important;
    position: static;
    background: none;
    padding: 28px 0 40px;
    border-top: none;
    width: 100%;
  }
  .header__nav-item + .header__nav-item {
    margin-top: 2px;
  }
  .header__nav-link {
    padding: 10px 16px;
    font-size: 13px;
  }
  .fv__img {
    height: 600px;
  }
  .fv__contents {
    padding: 64px 56px;
  }
  .fv__heading-main {
    font-size: 64px;
  }
  .fv__heading-sub {
    font-size: 14px;
    max-width: 500px;
  }
  .section {
    padding: 96px 0;
  }
  .section__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .section__head {
    text-align: left;
  }
  .section__head-main::after {
    left: 0;
    transform: none;
  }
  .section__head--center {
    text-align: center;
  }
  .section__head--center .section__head-main::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section__lead-text {
    text-align: left;
  }
  .problems__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .service__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .works__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .reasons__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .price__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-left: 0;
  }
  .flow__list::before {
    display: block;
    top: 23px;
    left: 24px;
    width: calc(100% - 48px);
    height: 2px;
  }
  .flow__item {
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
  }
  .flow__item-num {
    position: static;
    margin: 0 auto 20px;
  }
  .flow__item-img {
    display: block;
    width: 60px;
    margin: 0 auto 16px;
  }
  .flow__item-name {
    padding-top: 0;
  }
  .faq__list {
    max-width: 720px;
    margin: 0 auto;
  }
  .page-bottom__item {
    padding: 80px 48px;
  }
}

/*# sourceMappingURL=style.css.map */
