@charset "UTF-8";
/* ============================================================
   CSS変数 / カラーパレット
============================================================ */
:root {
  --primary:     #c5d100;
  --primary-dk:  #9eaa00;
  --primary-lt:  #f0f5d1;
  --brown:       #675b4e;
  --brown-lt:    #f5f0eb;
  --green:       #8cc63f;
  --green-lt:    #ebf7e3;
  --dark:        #2e261f;
  --dark-2:      #3d382e;
  --mid-text:    #736659;
  --light-text:  #a6b299;
  --page-bg:     #f5f5f0;
  --col-w:       600px;
  --pad:         24px;
}

/* ============================================================
   リセット / ベース
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

/* ============================================================
   背景動画
============================================================ */
        /* 背景動画の配置 */
        .bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover; /* 縦横比を維持したまま画面全体を覆う */
            z-index: -2; /* 最背面に配置 */
        }
        /* オーバーレイ（テキストの視認性を高めるための半透明レイヤー） */
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(127, 153, 0, 0.9); /* 黒の40%透過。デザインに合わせて調整 */
            z-index: -1;
        }
        /* 前面に配置するコンテンツ */
        .content {
            position: relative;
            z-index: 1; /* 動画やオーバーレイより手前に配置 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #ffffff;
            font-family: sans-serif;
            text-align: center;
        }


/* ============================================================
   センターカラム
============================================================ */
.col {
  width: var(--col-w);
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  background: var(--dark);
  padding: 0 var(--pad);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo svg { display: block; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--primary);
  padding: 40px var(--pad) 36px;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo svg { width: 200px; height: auto; }

.hero-main {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-divider {
  width: 36px;
  height: 3px;
  background: var(--dark);
  margin: 0 auto 18px;
  border-radius: 2px;
}

.hero-sub {
  font-size: 13px;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 32px;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--dark);
  color: var(--primary);
  margin-bottom: 12px;
}
.btn-dark:hover {
  background: #FFF;
  color: var(--dark);
  transition : .3s;
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: #FFF;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  transition : .3s;
}

.btn-dark2 {
  background: var(--dark);
  color: var(--primary);
  margin-bottom: 12px;
  background:var(--brown);
  color:#fff;
}
.btn-dark2:hover {
  background: var(--dark);
  color: #FFF;
  transition : .3s;
}

.btn-green {
  margin-bottom: 12px;
  background:var(--primary);
  color:var(--dark);
}
.btn-green:hover {
  background: var(--dark);
  color: var(--primary);
  transition : .3s;
}

.btn-green2 {
  margin-bottom: 12px;
  background:var(--green);
  color:#fff;
}
.btn-green2:hover {
  background: var(--dark);
  color: var(--green);
  transition : .3s;
}


 

.hero-role {
  margin-top: 20px;
  font-size: 11px;
  color: #4d4238;
  letter-spacing: .04em;
}

/* ============================================================
   セクション共通
============================================================ */
.section-header {
  background: #f5f7f0;
  padding: 18px var(--pad);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.section-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--brown);
  margin-top: 5px;
  flex-shrink: 0;
}
.section-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.section-sub {
  font-size: 11px;
  color: var(--mid-text);
  margin-top: 4px;
  line-height: 1.6;
}

/* ============================================================
   お悩みカード
============================================================ */
.pain-card {
  border-bottom: 1px solid #e8e6e0;
  padding-bottom: 28px;
  margin-bottom: 0;
}
.pain-card-top {
  height: 5px;
  width: 100%;
}
.pain-card-inner {
  padding: 20px var(--pad) 0;
}
.pain-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pain-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
.pain-divider {
  height: 1px;
  background: #e8e6e0;
  margin-bottom: 16px;
}
.pain-list {
  list-style: none;
  margin-bottom: 24px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--mid-text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.pain-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 5px;
}
.pain-btn {
  display: block;
  margin: 0 var(--pad);
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: calc(100% - var(--pad) * 2);
  transition: opacity .2s;
}
.pain-btn:hover { opacity: .85; }

/* 診断フロー注記 */
.diagnosis-note {
  background: #f7f0e0;
  padding: 12px var(--pad);
  font-size: 11px;
  color: var(--brown);
  line-height: 1.6;
}

/* ============================================================
   詳細ブロック
============================================================ */
.detail-block {
  display: flex;
  border-bottom: 1px solid #e8e6e0;
}
.detail-border {
  width: 5px;
  flex-shrink: 0;
}
.detail-inner {
  flex: 1;
  padding: 20px 20px 24px;
}
.detail-tag {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.detail-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--dark);
}
.detail-divider {
  height: 1px;
  background: #e0ddd8;
  margin-bottom: 16px;
}
.detail-list {
  list-style: none;
  margin-bottom: 20px;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--mid-text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.detail-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 5px;
}
.detail-cta {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: opacity .2s;
}
.detail-cta:hover { opacity: .85; }

/* ============================================================
   制作実績
============================================================ */
.works {
  background: var(--dark);
  padding: 28px var(--pad) 32px;
}
.works-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.works-sub {
  font-size: 12px;
  color: var(--light-text);
  margin-bottom: 20px;
}
.work-item {
  background: var(--dark-2);
  border-radius: 6px;
  padding: 12px 12px 16px;
  margin-bottom: 12px;
  min-height: 88px;
  position: relative;
  overflow: hidden;
}
.work-item:last-child { margin-bottom: 0; }
.work-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.work-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   プロフィール
============================================================ */
.profile {
  background: #f7faf5;
  border-top: 1px solid #e0ddd8;
  padding: 28px var(--pad);
  text-align: center;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dbe0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 12px;
  color: #aaa;
}
.profile-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.profile-desc {
  font-size: 12px;
  color: var(--mid-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.skill-tag {
  background: var(--primary);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 12px;
}

/* ============================================================
   お問い合わせフォーム
============================================================ */
.form-section {
  background: var(--dark);
  padding: 28px var(--pad) 36px;
}
.form-accent {
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 14px;
}
.form-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 10px;
}
.form-sub {
  font-size: 11px;
  color: #99a68c;
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 11px;
  color: #a6b294;
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #3d332e;
  border: none;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 12px;
  color: #c8c4bc;
  font-family: 'Noto Sans JP', sans-serif;
  outline: none;
  transition: box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #6b665c; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px var(--primary);
}
.form-textarea { min-height: 80px; resize: vertical; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a6b294' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-select option { background: #3d332e; color: #c8c4bc; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .2s, transform .15s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* ============================================================
   個人情報同意チェックボックス
============================================================ */
.form-privacy {
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.6;
}

/* ネイティブチェックボックスを非表示 */
.privacy-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* カスタムチェックボックス */
.privacy-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  margin-top: 2px;
  position: relative;
  transition: border-color .2s, background .2s;
}

/* チェック時のスタイル */
.privacy-check:checked + .privacy-box {
  background: var(--primary);
  border-color: var(--primary);
}
.privacy-check:checked + .privacy-box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border: 2.5px solid var(--dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* フォーカス時のアクセシビリティ */
.privacy-check:focus-visible + .privacy-box {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.privacy-text {
  font-size: 12px;
  color: #c8c4bc;
}
.privacy-text small {
  font-size: 11px;
  color: #99a68c;
}

.privacy-required {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.privacy-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-link:hover { opacity: .8; }

/* 送信ボタン：disabled状態 */
.btn-submit:disabled {
  background: #555;
  color: #888;
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}
.btn-submit:disabled:hover {
  opacity: 1;
  transform: none;
}

/* 個人情報の取り扱いポリシー表示 */
.privacy-policy {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border-left: 3px solid rgba(255,255,255,.15);
  border-radius: 0 4px 4px 0;
  font-size: 11px;
  color: #888;
  line-height: 1.7;
}
.privacy-policy-title {
  font-size: 11px;
  font-weight: 700;
  color: #99a68c;
  margin-bottom: 6px;
}

/* ============================================================
   フッター
============================================================ */
.footer {
  background: #1a140f;
  padding: 20px var(--pad);
  text-align: center;
  font-size: 10px;
  color: #666b5c;
  line-height: 1.8;
}

/* ============================================================
   フェードインアニメーション
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   レスポンシブ（PC：col幅固定）
============================================================ */
@media (min-width: 601px) {
  .col {
    width: var(--col-w);
    min-height: 100vh;
  }
  body { padding: 24px 0; }
}
@media (max-width: 600px) {
  .col { width: 100%; box-shadow: none; }
  body { padding: 0; }
}
