@charset "UTF-8";
/* ================================
  フォントの設定方法

  step1: サイトで使うフォントをすべて洗い出し、
         Google Fontsにアクセスして "Get font"
  step2: "Get font" したhtmlのコードをheadに貼る
  step3: "Get font" したcssのコードを_variables.scssに貼り、
         変数名を付ける
  step4: デフォルト以外のフォントを使いたい場面では
         定義した変数名を呼び出す
================================ */
.page-home {
  --color-bg: #ffffff;
  --color-text: #26332d;
  --color-primary: #2f5f45;
  --color-primary-dark: #1f3f30;
  --color-base: #f7f3e3;
  --color-base-light: #fbfaf3;
  --color-accent: #e6c85c;
  --color-button: var(--color-primary);
  --color-button-text: #ffffff;
  --radius-pill: 999px;
  color: var(--color-text);
  background: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .page-home .inner {
    max-width: 1320px;
    padding-inline: 40px;
  }
}
.page-home {
  /* =====================================
    Header / Footer
  ===================================== */
}
.page-home .site-header {
  color: #ffffff;
}
.page-home .site-header .nav-link__text {
  color: inherit;
}
.page-home .header__bg {
  background: var(--color-primary);
}
.page-home .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  color: #ffffff;
  text-decoration: none;
}
.page-home .brand .brand__logo {
  display: block;
  width: 100px;
  max-width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.page-home .brand__text {
  color: inherit;
  font-weight: 700;
}
.page-home .desktop-nav .nav-link {
  color: #ffffff;
}
.page-home .desktop-nav .nav-link:hover {
  opacity: 0.8;
  color: var(--color-accent);
}
.page-home .desktop-nav .nav-link__icon svg,
.page-home .desktop-nav .nav-link__deco svg {
  fill: currentColor;
  display: none;
}
.page-home .drawer-icon__bar {
  background: #ffffff;
}
.page-home .drawer-content--in-header {
  background: var(--color-primary);
  color: #ffffff;
}
.page-home .drawer-content--in-header .nav-link {
  color: #ffffff;
}
.page-home .drawer-content--in-header .button {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  margin-inline: auto;
}
.page-home .drawer-content--in-header .button:hover {
  background: #ffffff;
  color: var(--color-primary-dark);
}
.page-home .site-footer {
  color: var(--color-text);
}
.page-home .footer__bg,
.page-home .site-footer__main {
  background: var(--color-base);
}
.page-home .footer-nav .nav-link {
  color: var(--color-text);
}
.page-home .footer-nav .nav-link__icon svg,
.page-home .footer-nav .nav-link__deco svg {
  fill: currentColor;
}
.page-home .footer-nav .button {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.page-home .footer-nav .button:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  border-color: var(--color-primary-dark);
}
.page-home {
  /* =====================================
    FV
  ===================================== */
}
.page-home .portfolio-fv {
  height: auto;
  min-height: 520px;
  background: linear-gradient(135deg, var(--color-base-light) 0%, var(--color-base) 100%);
}
.page-home .portfolio-fv .fv__frame {
  position: relative;
  inset: auto;
  width: min(100% - 40px, 1120px);
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
}
.page-home .portfolio-fv .fv__container {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
  background: transparent;
  color: var(--color-text);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.page-home .portfolio-fv .fv__content {
  max-width: 620px;
}
.page-home .portfolio-fv .fv__caption {
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .portfolio-fv h1 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.page-home .portfolio-fv .fv__lead {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 2;
}
.page-home .portfolio-fv .button {
  margin-top: 36px;
  background: var(--color-button);
  color: var(--color-button-text);
  border-color: var(--color-button);
  align-self: flex-start;
}
.page-home .portfolio-fv .button:hover {
  background: transparent;
  color: var(--color-button);
}
.page-home .portfolio-fv .fv__image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.page-home .portfolio-fv .fv__image::before,
.page-home .portfolio-fv .fv__image::after {
  display: none;
}
.page-home .portfolio-fv .fv__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(1.02);
}
.page-home {
  /* =====================================
    Layout
  ===================================== */
}
.page-home .main-body {
  display: block;
}
.page-home .main-content {
  width: 100%;
}
.page-home .section {
  padding: 88px 0;
}
.page-home .section__label {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .section__lead,
.page-home .section__text {
  margin-top: 24px;
  max-width: 820px;
}
.page-home .section__text p + p {
  margin-top: 16px;
}
.page-home {
  /* =====================================
    Works Cards
  ===================================== */
}
.page-home .works-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.page-home .works-card {
  overflow: visible;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 63, 48, 0.12);
}
.page-home .works-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.page-home .works-card__image {
  margin: 24px 24px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 12px;
}
.page-home .works-card__image img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-home .works-card__body {
  padding: 32px;
}
.page-home .works-card__label {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .works-card__title {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.5;
}
.page-home .works-card__text {
  margin-top: 16px;
  line-height: 1.9;
}
.page-home .works-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  padding: 8px 18px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.page-home .works-card__more::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.page-home {
  /* =====================================
    Price Cards
  ===================================== */
}
.page-home .price-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.page-home .price-card {
  position: relative;
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #fff;
}
.page-home .price-card--recommend {
  border-color: rgba(47, 95, 69, 0.5);
  background: var(--color-base-light);
}
.page-home .price-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
}
.page-home .price-card__label {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .price-card__title {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.5;
}
.page-home .price-card__price {
  margin-top: 20px;
  color: var(--color-primary-dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.page-home .price-card__text {
  margin-top: 20px;
  line-height: 1.9;
}
.page-home .price-note {
  margin-top: 28px;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}
.page-home {
  /* =====================================
    Flow
  ===================================== */
}
.page-home .flow-list {
  display: grid;
  margin-top: 48px;
}
.page-home .flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
}
.page-home .flow-item:not(:last-child) {
  padding-bottom: 56px;
}
.page-home .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  left: 31px;
  width: 2px;
  height: calc(100% - 64px);
  background: #d9d9d9;
}
.page-home .flow-item__number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 50%;
  background: var(--color-base);
  color: var(--color-primary-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-home .flow-item__body {
  padding: 8px 0 32px;
  border-bottom: 1px solid #e5e5e5;
}
.page-home .flow-item:last-child .flow-item__body {
  padding-bottom: 0;
  border-bottom: none;
}
.page-home .flow-item__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
}
.page-home .flow-item__text {
  margin-top: 12px;
  line-height: 1.9;
}
.page-home .profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 32px;
  align-items: center;
  max-width: 1040px;
  margin: 48px auto 0;
}
.page-home .profile-visual {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-base);
}
.page-home .profile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.5);
}
.page-home .profile-box__name {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 18px;
  color: var(--color-primary-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.page-home .profile-box__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
}
.page-home .profile-box__name span {
  display: block;
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .profile-box--text {
  margin-top: 0;
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  background: #fff;
}
.page-home {
  /* =====================================
    Contact
  ===================================== */
}
.page-home .section--contact {
  background: var(--color-base-light);
}
.page-home .section--contact .button {
  margin-top: 28px;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .page-home .profile-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: center;
  }
  .page-home .profile-box--text {
    padding: 32px;
  }
  .page-home .profile-visual {
    max-width: 300px;
  }
  .page-home .profile-box__text p {
    line-height: 1.85;
  }
}
/* =====================================
  SP
===================================== */
@media screen and (max-width: 767px) {
  .page-home .drawer-content--in-header {
    width: 100%;
    max-width: none;
    right: 0;
    left: 0;
  }
  .page-home .drawer-nav {
    width: min(100% - 100px, 420px);
    margin: 0 auto;
    padding: 72px 0 40px;
    justify-content: center;
    gap: 40px;
  }
  .page-home .portfolio-fv {
    min-height: auto;
  }
  .page-home .portfolio-fv .fv__frame {
    width: min(100% - 32px, 1120px);
    min-height: auto;
    padding: 56px 0 72px;
  }
  .page-home .portfolio-fv .fv__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-home .portfolio-fv .fv__content {
    max-width: 100%;
  }
  .page-home .portfolio-fv .fv__caption {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .page-home .portfolio-fv h1 {
    font-size: 30px;
    line-height: 1.5;
  }
  .page-home .portfolio-fv .fv__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
  }
  .page-home .portfolio-fv .button {
    margin-top: 28px;
  }
  .page-home .portfolio-fv .fv__image {
    width: min(100%, 500px);
    margin: 0 auto;
    aspect-ratio: 4/3;
  }
  .page-home .section {
    padding: 64px 0;
  }
  .page-home .section h2 {
    font-size: 20px;
    line-height: 1.5;
  }
  .page-home .works-card-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .page-home .works-card__body {
    padding: 24px;
  }
  .page-home .works-card__title {
    font-size: 20px;
  }
  .page-home .price-card-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .page-home .price-card {
    padding: 24px;
  }
  .page-home .price-card__title {
    font-size: 20px;
  }
  .page-home .price-card__price {
    font-size: 26px;
  }
  .page-home .flow-list {
    margin-top: 32px;
  }
  .page-home .flow-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding-bottom: 24px;
  }
  .page-home .flow-item:not(:last-child) {
    margin-bottom: 16px;
  }
  .page-home .flow-item:not(:last-child)::after {
    top: 56px;
    left: 27px;
    height: calc(100% - 12px);
  }
  .page-home .flow-item__number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
  .page-home .flow-item__body {
    padding: 4px 0 20px;
  }
  .page-home .flow-item__title {
    font-size: 19px;
  }
  .page-home .profile-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .page-home .profile-visual {
    order: 1;
    width: min(78%, 320px);
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }
  .page-home .profile-box__name {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .page-home .profile-box__name span {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .page-home .profile-box--text {
    order: 2;
    width: 100%;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .page-home .profile-box__text p {
    line-height: 1.9;
  }
  .page-home .cta-buttons {
    flex-direction: column;
  }
  .page-home .contact-box {
    margin-top: 32px;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .page-home .contact-box .button {
    width: 100%;
  }
  .page-design-sample .portfolio-side-link {
    display: none;
  }
}
/* =====================================
  トップに戻るボタン
===================================== */
.pagetop {
  border: 1px solid var(--color-primary, #333);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary, #333);
  text-decoration: none;
}
.pagetop:hover {
  background: var(--color-primary-dark, #333);
  color: #fff;
}

/* =====================================
  sample透け文字の消去
===================================== */
body::after {
  display: none;
  content: "SAMPLE";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 9999;
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(200, 0, 0, 0.18);
  -webkit-text-stroke: 1px rgba(200, 0, 0, 0.08);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}/*# sourceMappingURL=index.css.map */