@charset "utf-8";
/*
Theme Name: coccoto_teasersite
Template: blankslate
Author: Sayumi Inui
Description: COCCOTO ティザーサイト WordPress テーマ（ティザー版）
Version: 1.1
Text Domain: coccoto_teasersite
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap');

/* =========================
   BASE
========================= */

/* ===== ボタン中央寄せ調整 ===== */
.btn {
  text-align: center;
}

/* ===== 外部リンク ===== */

a[target="_blank"]::after {
  font-family: 'Material Symbols Outlined';
  content: "open_in_new";
  font-size: 18px;
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.7;
}


body.no-scroll {
  overflow: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #231815;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.9;
}

h1, h2, h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: #231815;
  margin: 0 0 20px;
}

a {
  color: #aaa176;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* コンテナ */
.container {
  width: min(90%, 900px);
  margin: 0 auto;
  padding: 60px 0;
}

/* =========================
   HEADER（固定＋ハンバーガー）
========================= */

/* Vivusロゴ表示調整 */
#coccoto-logo {
  max-width: 320px;
  width: 60%;
  margin: 0 auto;
  display: block;
  opacity: 0; /* アニメ後にフェードイン */
  transition: opacity 1s ease-in;
}

/* ハンバーガーメニュー位置＆見えるように */
.hamburger span {
  background: #444; /* 白背景で見えないのを防止 */
}


/* 全体の配置 */
#site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  box-sizing: border-box;
}


#site-header.transparent { background: transparent; opacity: 0; }
#site-header.visible { background: rgba(255,255,255,0.7); opacity: 1; }

/* ロゴ */
#site-header .logo {
  display: flex;
  align-items: center;            /* ← ロゴの上下中央をそろえる */
}


/* ロゴ */
#site-header .logo img {
  height: 42px;
  width: auto;
  display: block;
}


/* =========================
   スマホ調整
========================= */
@media (max-width: 768px) {
  #site-header {
    padding: 8px 16px;
  }

  header .logo img {
    height: 34px;                /* スマホは少し小さめ */
  }

  .hamburger {
    width: 28px;
    height: 20px;
  }
}

/* =========================
   HAMBURGER MENU
========================= */

/* 三本線ボタン */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← space-betweenをやめて中央配置 */
  align-items: center;
  gap: 6px;                 /* ← 各線の間隔を明示的に確保 */
  width: 32px;
  height: 28px;             /* ← 高さを少し増やす（潰れ防止） */
  cursor: pointer;
  position: relative;
  z-index: 12000;           /* ← navより確実に上 */
}

/* 各バー（3本線） */
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #444;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ×状態（開いたとき） */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* メニュー本体 */
.nav-menu {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: rgba(255, 255, 255, 0.95) !important;
  z-index: 10000 !important;  /* ← hamburgerより下に */
  text-align: center !important;
  padding-top: 120px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease;
}

/* --- 開いたとき --- */
.nav-menu.show {
  display: block !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* --- メニュー内のリンク --- */
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin: 20px 0;
}
.nav-menu a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #aaa176;
}

/* --- スクロール固定（開いたとき） --- */
body.no-scroll {
  overflow: hidden;
}

/* --- スマホ時位置調整（必要に応じて） --- */
@media (max-width: 768px) {

  .hamburger {
    width: 28px;
    height: 24px;
    gap: 5px;
  }
	

  .hamburger span {
    height: 2.5px;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* =========================
   FV（ファーストビュー）
========================= */
.fv {
  height: 450px;
  text-align: center;
  padding-top: 120px;
}
.fv object {
  max-width: 320px;
  width: 60%;
}
.fv .subtext {
  font-family: 'Josefin Sans';
  font-size: 18px;
  margin: 10px 0 40px;
  letter-spacing: 2px;
}

/* ティザー情報ボックス */
.teaser-box {
  background: #f7f6f2;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 12px;
}
.teaser-title {
  font-family: 'Josefin Sans';
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
  position: relative;
  font-size: clamp(22px, 3vw, 32px);
  margin: 80px 0 40px;
}
.section-title span {
  position: relative;
  z-index: 1;
left: 20px;
}
.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  /* left: -12px; */
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(170, 161, 118, 0.25);
  border-radius: 50%;
  z-index: 0;
}

/* =========================
   BUTTONS（Groworks風）
========================= */
.btn {
  display: inline-block;
  color: #fff;
  background-color: #aaa176;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  margin-top: 30px;
}
.btn:hover {
  background-color: #444444;
  transform: translateY(-4px);
  text-decoration: none;
}


.btn_area{
	text-align: center;
}

/* =========================
   FOOTER
========================= */
#site-footer {
  text-align: center;
  padding: 60px 40px;
  background: #f7f6f2;
}

/* ===== フッターリンク配置調整 ===== */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

/* PC時に横並びに */
@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 40px; /* 横間隔 */
  }
}

.copy {
  font-size: 14px;
  color: #231815;
}

/* =========================
   ABOUTページ（プロフィール写真拡大）
========================= */
.about-photo img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .section-title::before {
    width: 32px;
    height: 32px;
    left: -8px;
  }
  .fv { padding-top: 100px; height: 380px; }
  .btn { width: 80%; max-width: 280px; }
}

/* =========================
   スマホ版ロゴサイズ調整
========================= */
@media (max-width: 768px) {
  header .logo img {
    width: 140px !important;
    height: auto;
  }
}

@keyframes drawLogo {
  to {
    stroke-dashoffset: 0;
  }
}

/* =========================
   CONTACTフォーム最終安定版
========================= */



/* ベージュ背景をページ全体に広げる */
.contact-page {
  background: #f7f6f2;
  width: 100%;
  padding: 100px 0 120px; /* ← 下にも余白追加 */
  box-sizing: border-box;
}

/* 白いフォームエリア */
.contact-form-wrapper {
  background: #fff;
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* ラベル */
.wpcf7-form p label {
  display: block;
  font-weight: 600;
  color: #231815;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

/* 基本スタイル */
.wpcf7-form select {
  appearance: none;               /* ブラウザ標準の矢印を非表示 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 100%;
  padding: 16px 18px;             /* ← 高さを他フィールドと合わせる */
  border: none;
  border-radius: 16px;
  background: #f7f6f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23231815' d='M1.41.59L6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-size: 14px auto;
  font-size: 16px;
  color: #231815;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* フォーカス時 */
.wpcf7-form select:focus {
  outline: none;
  background-color: #eeeadd;
}

/* 見出し＆説明文 */
.contact-page .section-title {
  text-align: left;
  margin-bottom: 10px;
}
.contact-lead {
  text-align: left;
  color: #231815;
  margin-bottom: 40px;
}


/* テキスト、メール、セレクト、テキストエリア */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 16px;
  background: #f7f6f2;
  font-size: 16px;
  color: #231815;
  box-sizing: border-box;
  transition: background 0.3s ease;
  display: block;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  background: #eeeadd;
}

/* テキストエリア高さ */
.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  background: #aaa176;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  padding: 14px 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.wpcf7-form input[type="submit"]:hover {
  background: #444444;
  transform: translateY(-2px);
}

/* 送信メッセージ */
.wpcf7-response-output {
  margin-top: 20px;
  font-size: 15px;
  color: #231815;
  text-align: center;
}

/* =========================
   スマホ対応（幅・余白）
========================= */
@media (max-width: 768px) {
  .contact-page {
    padding: 80px 0 100px; /* ← 下の余白増加 */
  }

  .contact-form-wrapper {
    width: 96%; /* ← より広く */
    padding: 28px 22px;
    border-radius: 18px;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    font-size: 15px;
    padding: 14px 16px;
  }
	
  .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }
	
  .wpcf7-form select {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
    background-position: right 12px center;
  }	
	

  .fv {
    padding-top: 40px !important; /* ← 現状より上の余白を減らす */
  }

  .fv object#coccoto-logo,
  .fv img#coccoto-logo {
    margin-top: 0 !important; /* ← ロゴ上に直接余白が入っていた場合もリセット */
  }
}