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

  step1: サイトで使うフォントをすべて洗い出し、
         Google Fontsにアクセスして "Get font"
  step2: "Get font" したhtmlのコードをheadに貼る
  step3: "Get font" したcssのコードを_variables.scssに貼り、
         変数名を付ける
  step4: デフォルト以外のフォントを使いたい場面では
         定義した変数名を呼び出す
================================ */
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 255px;
  padding: 15px 0;
  font-family: "Rounded Mplus 1c";
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  border-top: 1px dashed black;
}
.nav-link:last-child {
  border-bottom: 1px dashed black;
}
.nav-link__main {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link__icon svg, .nav-link__deco svg {
  display: block;
}
.nav-link__icon svg {
  width: 24px;
  height: 24px;
}
.nav-link__deco svg {
  width: 14px;
  height: 14px;
}
.nav-link:hover {
  text-decoration: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: var(--radius-pill);
  background: var(--color-button);
  color: var(--color-button-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  border: 1px solid var(--color-button);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button:hover {
  background: var(--color-bg);
  color: var(--color-button);
  text-decoration: none;
}

.button--small {
  padding: 8px 22px;
  font-size: 14px;
}

.button--middle {
  padding: 10px 28px;
  font-size: 16px;
  font-feature-settings: "pref" on;
}

.button--large {
  padding: 14px 40px;
  font-size: 18px;
}

/* =====================================
  トップに戻るボタン
===================================== */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 51;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #333;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s ease, color 0.2s ease;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  background: #333;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 32px;
    bottom: 32px;
  }
}

.pagetop__arrow {
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

/* =====================================
  Section
===================================== */
.section {
  padding: 56px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section--first {
  padding-top: 56px;
}
@media screen and (min-width: 768px) {
  .section--first {
    padding-top: 96px;
  }
}

.section--bg {
  background: var(--color-bg-light);
}

.section--center {
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-sub-text);
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.section-text {
  line-height: 1.9;
}

/* =====================================
  Point Cards
===================================== */
.point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .point-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
}

.point-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-card-bg-start), var(--color-card-bg-end));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media screen and (min-width: 768px) {
  .point-card {
    padding: 32px;
  }
}

.point-card::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.04);
}

.point-card:hover {
  transform: translateY(-3px);
  border-color: #d8d8d8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.point-card__number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-sub-text);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.point-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

.point-card__text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================
  Message Section
===================================== */
.message-section {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .message-section {
    text-align: center;
  }
}

.message-section .inner {
  max-width: 880px;
}

.message-section .section-text {
  margin-top: 24px;
}

/* =====================================
  CTA Section
===================================== */
.cta-section {
  text-align: center;
}

.cta-section .button {
  margin-top: 32px;
  padding: 10px 28px;
  font-size: 16px;
  background: var(--color-button);
  color: var(--color-button-text);
  border-color: var(--color-button);
  border-radius: var(--radius-pill);
}

.cta-section .button:hover {
  background: var(--color-bg);
  color: var(--color-button);
}

/* =====================================
  Sample Mark
===================================== */
body::after {
  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;
}

/* SOFT：少しやわらかい赤 */
.theme-soft::after {
  color: rgba(210, 80, 80, 0.16);
  -webkit-text-stroke: 1px rgba(210, 80, 80, 0.06);
}

/* STYLISH：暗背景でも見える赤バッジ */
.theme-stylish::after {
  content: "SAMPLE SITE";
  top: 88px;
  left: auto;
  right: 24px;
  transform: none;
  padding: 8px 16px;
  border: 1px solid rgba(255, 80, 80, 0.55);
  background: rgba(30, 0, 0, 0.45);
  color: rgba(255, 120, 120, 0.9);
  -webkit-text-stroke: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  body::after {
    font-size: clamp(52px, 18vw, 100px);
  }
  .theme-stylish::after {
    top: 72px;
    right: 16px;
    padding: 6px 12px;
    font-size: 11px;
  }
}
/* =====================================
  ポートフォリオに戻るボタン
===================================== */
.portfolio-side-link {
  position: fixed;
  top: 144px;
  right: 0;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-height: 164px;
  padding: 18px 10px;
  border: 2px solid var(--color-primary-dark, #1f3f30);
  border-right: none;
  border-radius: 18px 0 0 18px;
  background: var(--color-accent, #e6c85c);
  color: var(--color-primary-dark, #1f3f30);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(31, 63, 48, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-side-link:hover {
  background: var(--color-primary-dark, #1f3f30);
  color: #ffffff;
  transform: translateX(-4px);
  box-shadow: 0 14px 28px rgba(31, 63, 48, 0.24);
}

.portfolio-side-link__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .portfolio-side-link {
    position: static;
    z-index: auto;
    width: auto;
    min-height: auto;
    padding: 12px 24px;
    border: 2px solid var(--color-primary-dark, #1f3f30);
    border-radius: 999px;
    background: var(--color-accent, #e6c85c);
    color: var(--color-primary-dark, #1f3f30);
    box-shadow: 0 8px 18px rgba(31, 63, 48, 0.14);
  }
  .portfolio-side-link:hover {
    transform: none;
    background: var(--color-primary-dark, #1f3f30);
    color: #ffffff;
  }
  .portfolio-side-link__text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
/* =====================================
  SP下部の戻るボタン
===================================== */
.sample-back-link {
  display: none;
}

@media screen and (max-width: 767px) {
  /* body直下のPC用固定タブだけ非表示 */
  body > .portfolio-side-link {
    display: none;
  }
  /* SP下部の戻るボタンだけ表示 */
  .sample-back-link {
    display: flex;
    justify-content: center;
    margin-top: 36px;
    margin-bottom: 56px;
  }
  .sample-back-link .portfolio-side-link {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 220px;
    min-height: auto;
    padding: 12px 24px;
    border: 2px solid var(--color-primary-dark, #1f3f30);
    border-radius: 999px;
    background: var(--color-accent, #e6c85c);
    color: var(--color-primary-dark, #1f3f30);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(31, 63, 48, 0.14);
  }
  .sample-back-link .portfolio-side-link:hover {
    transform: none;
    background: var(--color-primary-dark, #1f3f30);
    color: #fff;
  }
  .sample-back-link .portfolio-side-link__text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
/* ----------------------
   fvのimgをbgとして使う型
   ---------------------- */
.fv {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.fv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv__frame {
  position: absolute;
  inset: 0 20px;
  display: grid;
  place-items: center;
}

.fv__container {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 32px 40px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.fv__container h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
}
.fv__container p {
  margin-top: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .fv {
    height: 320px;
  }
  .fv__frame {
    inset: 0 16px;
  }
  .fv__container {
    max-width: 100%;
    padding: 24px;
  }
  .fv__container h1 {
    font-size: 28px;
  }
}
/* ----------------------
   sample note
   ---------------------- */
.sample-note {
  margin: 12px 20px 0;
  color: rgba(200, 0, 0, 0.72);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.04em;
}

.theme-soft .sample-note {
  color: rgba(190, 70, 70, 0.68);
}

.theme-stylish .sample-note {
  color: rgba(220, 70, 70, 0.8);
}

@media screen and (max-width: 767px) {
  .sample-note {
    margin: 10px 16px 0;
    font-size: 12px;
    text-align: left;
  }
}
/* ================================
   Header Layout
   ================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  margin: 0 auto;
  color: #fff;
  /* Header Background Layer */
}
.site-header .header__bg {
  position: absolute;
  inset: 0;
  background: #cac6c6;
  z-index: -1;
}

/* ================================
   Header Bar
   ================================ */
.header-bar.inner--flex {
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 12px;
}

/* ================================
   Brand
   ================================ */
.header-bar .brand {
  width: 100%;
  max-width: 270px;
  font-weight: 700;
}
.header-bar .brand img {
  width: 100%;
  height: auto;
}

/* ================================
   Desktop navigation
   ================================ */
.desktop-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .desktop-nav .button {
    padding: 10px 28px;
    font-size: 16px;
    font-feature-settings: "pref" on;
  }
}
@media screen and (min-width: 768px) {
  .desktop-nav .nav-link {
    border: none;
    width: 100%;
    padding: 0;
  }
  .desktop-nav .nav-link__main {
    flex-direction: row;
    gap: 8px;
  }
  .desktop-nav .nav-link__deco svg {
    display: none;
  }
  .desktop-nav .nav-link:hover {
    opacity: 0.8;
    color: #1391e6;
  }
}

.site-header {
  color: #333;
}

.header__bg {
  background: rgba(245, 245, 245, 0.94);
}

.brand {
  color: #333;
}

.nav-link {
  color: #333;
}

.nav-link__text {
  color: #333;
}

/* ================================
   ハンバーガーメニュー(drawer-icon__bar)
   ================================ */
/* ================================
   Sidebar
   sidebarがない案件はhtmlの'<aside class="sidebar">'をコメントアウトする。
   page.scss(style.scss)の.main-bodyのflex-directionを変更することで
   レイアウトを変えることができます。

   注意）
   sidebarの内容が多すぎる場合、親の高さ(main.bodyのmin-height:100vh)を
   超えてしまうため、position:sticky;が効かなくなります。
   また、sidebarの祖先にoverflow:hidden;は禁止。
   ================================ */
.sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .sidebar .sidebar__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .sidebar {
    display: block;
    width: 240px;
    border-right: 1px solid #eee;
    padding: 32px 16px;
    position: sticky;
    top: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
}

/* ================================
   Sidebar詳細
   ================================ */
.sidebar-section {
  margin-bottom: 48px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-text {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

/* ================================
   footer
================================ */
.site-footer {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.site-footer .footer__bg {
  position: absolute;
  inset: 0;
  background: #e6e1df;
  z-index: -1;
}
.site-footer .inner--footer {
  padding-block: 40px 32px;
}
.site-footer__main {
  margin-bottom: 0;
}

.footer-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .footer-nav .nav-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .footer-nav .button {
    display: none;
  }
  .footer-nav .nav-link {
    border: none;
    width: auto;
    padding: 0;
    color: #333;
    text-decoration: none;
  }
  .footer-nav .nav-link__main {
    flex-direction: row;
    gap: 0;
  }
  .footer-nav .nav-link__icon {
    display: none;
  }
  .footer-nav .nav-link__text {
    color: #333;
    font-size: 14px;
  }
  .footer-nav .nav-link__deco svg {
    display: none;
  }
  .footer-nav .nav-link:hover {
    opacity: 0.7;
    color: #333;
  }
}

.footer-meta {
  color: #333;
}

.footer-copyright {
  font-size: 14px;
  color: #333;
}

/* ===============================
  固定フッター
================================ */
.site-footer__fixed {
  display: none;
}

/* =====================================
  Drawer Icon
===================================== */
.drawer-icon--in-header {
  position: relative;
  z-index: 63;
  width: 32px;
  height: 32px;
}
.drawer-icon--in-header .drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text, #333);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.drawer-icon--in-header .drawer-icon__bar:nth-of-type(1) {
  top: 6px;
}
.drawer-icon--in-header .drawer-icon__bar:nth-of-type(2) {
  top: 15px;
}
.drawer-icon--in-header .drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}
.drawer-icon--in-header.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 15px;
  transform: rotate(45deg);
}
.drawer-icon--in-header.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon--in-header.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon--in-header {
    display: none;
  }
}

/* =====================================
  Drawer Content
===================================== */
.drawer-content--in-header {
  position: fixed;
  top: var(--header-height-sp, 56px);
  right: 0;
  z-index: 62;
  width: min(82vw, 80%);
  height: calc(100vh - var(--header-height-sp, 56px));
  background: var(--color-bg, #fff);
  color: var(--color-text, #333);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer-content--in-header.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .drawer-content--in-header {
    display: none;
  }
}

/* =====================================
  Drawer Navigation
===================================== */
.drawer-nav {
  display: flex;
  height: 100%;
  padding: 40px 28px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.drawer-nav .nav-links {
  display: flex;
  flex-direction: column;
}

.drawer-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  color: var(--color-text, #333);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  border-top: 1px solid var(--color-border, #e5e5e5);
}
.drawer-nav .nav-link:last-child {
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.drawer-nav .nav-link__main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-nav .nav-link:hover {
  color: var(--color-button, #333);
  text-decoration: none;
}

/* =====================================
  Drawer Overlay
===================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .drawer-overlay {
    display: none;
  }
}

/* =====================================
  Common Layout
===================================== */
.base__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.main-layout {
  position: relative;
  overflow-x: clip;
}

.main-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.main-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.main-body {
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-body {
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    min-height: 100vh;
  }
}

.main-body__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* 紙面型では中央寄せしない */
.main-content .container {
  max-width: none;
  margin: 0;
}/*# sourceMappingURL=common.css.map */