@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** ViaCraft - Premium Corporate Design
** ※このスタイルはトップページ（.home）のみに適用されます
************************************/

/* ============================================
   デザインシステム（カスタムプロパティ）
   ============================================ */
:root {
  --vc-accent: #c06c52;
  --vc-accent-light: #fdf5f2;
  --vc-text-main: #2c2c2c;
  --vc-text-muted: #888888;
  --vc-bg-gray: #fcfaf9;
  --vc-font-serif: "Optima", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* ============================================
   Cocoonの枠組みをトップページのみ無効化
   ============================================ */
.home .entry-title,
.home .breadcrumb,
.home .post-meta,
.home .author-info,
.home .toc {
  display: none !important;
}

.home .main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
}

.home .content {
  padding: 0 !important;
  max-width: none !important;
  background: transparent !important;
}

.home #content {
  margin-top: 0 !important;
}

.home .entry-content {
  margin-top: 0 !important;
}

/* ============================================
   全体の空気感（.vc-front-page の中だけに適用）
   ============================================ */
.vc-front-page {
  font-family: var(--vc-font-serif);
  color: var(--vc-text-main);
  background: #fff;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ============================================
   共通セクション設定
   ============================================ */
.vc-section {
  padding: 100px 20px;
}

.vc-section-bg {
  background: var(--vc-bg-gray);
}

/* 初回セクション（grayishのscrollから距離をとる） */
.vc-first-section {
  padding-top: 150px !important;
}

/* ============================================
   セクションタイトル
   ============================================ */
.vc-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.vc-section-title .en {
  display: block;
  font-family: sans-serif;
  font-size: 0.8rem;
  color: var(--vc-accent);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.vc-section-title h2 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  position: relative;
  display: inline-block;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

/* grayishスキンがh2に付ける装飾を打ち消す */
.vc-front-page .vc-section-title h2::before,
.vc-front-page .vc-section-title h2::after {
  display: none !important;
  content: none !important;
}

/* ============================================
   縦線（セクション間をつなぐ装飾）
   ============================================ */
.vc-vertical-line {
  width: 1px !important;
  height: 80px !important;
  background: var(--vc-accent) !important;
  margin: 0 auto !important;
  display: block !important;
  border: none !important;
  padding: 0 !important;
  position: relative !important;
}

/* grayishスキンの疑似要素を完全に無効化 */
.vc-vertical-line::before,
.vc-vertical-line::after {
  display: none !important;
  content: none !important;
}

/* ============================================
   Focusセクション：もやもやリスト（中央揃え箇条書き）
   ============================================ */
.vc-centered-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  line-height: 2.5;
  color: var(--vc-text-muted);
  font-size: 1.1rem;
}

.vc-centered-list ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vc-centered-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 15px;
  list-style: none !important;
}

/* grayishのリストの疑似要素を上書き */
.vc-centered-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 14px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: var(--vc-accent) !important;
  border: none !important;
  font-family: inherit !important;
}

.vc-centered-list li::after {
  display: none !important;
  content: none !important;
}

/* ============================================
   Serviceセクション：横並びカード（Flexbox）
   ============================================ */
.vc-services-flex {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.vc-service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  padding: 50px 30px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s;
  text-align: center;
  box-sizing: border-box;
}

.vc-service-card:hover {
  border-color: var(--vc-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(192, 108, 82, 0.1);
}

.vc-service-icon {
  font-size: 2.2rem;
  font-family: var(--vc-font-serif);
  color: var(--vc-accent);
  margin-bottom: 25px;
  display: block;
}

.vc-service-title {
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

/* grayishのh3装飾を無効化 */
.vc-front-page .vc-service-card h3::before,
.vc-front-page .vc-service-card h3::after {
  display: none !important;
  content: none !important;
}

/* ============================================
   Contactセクション
   ============================================ */
.vc-contact {
  padding: 120px 20px;
  text-align: center;
}

.vc-contact-btn {
  display: inline-block !important;
  background: var(--vc-text-main) !important;
  color: #fff !important;
  padding: 20px 80px !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 50px !important;
  transition: all 0.3s;
  margin-top: 40px;
  border: none !important;
}

.vc-contact-btn:hover {
  background: var(--vc-accent) !important;
  transform: scale(1.02);
  color: #fff !important;
  text-decoration: none !important;
}



/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .vc-services-flex {
    gap: 20px;
  }
  .vc-service-card {
    flex: 1 1 250px;
    max-width: 320px;
    padding: 40px 25px;
  }
}

/*834px以下*/
@media screen and (max-width: 834px) {
  .vc-section {
    padding: 80px 20px;
  }
  .vc-first-section {
    padding-top: 100px !important;
  }
  .vc-section-title h2 {
    font-size: 1.6rem;
  }
  .vc-service-card {
    flex: 1 1 100%;
    max-width: 500px;
  }
  .vc-contact-btn {
    padding: 18px 50px !important;
  }
}

/*480px以下*/
@media screen and (max-width: 480px) {
  .vc-section {
    padding: 60px 15px;
  }
  .vc-first-section {
    padding-top: 80px !important;
  }
  .vc-section-title h2 {
    font-size: 1.4rem;
  }
  .vc-centered-list {
    font-size: 0.95rem;
  }
  .vc-contact {
    padding: 80px 15px;
  }
  .vc-contact-btn {
    padding: 16px 40px !important;
    font-size: 0.85rem;
  }
}