@charset "UTF-8";
:root {
  --navy: #182d3d;
  --navy-dark: #102330;
  --gold: #b49352;
  --gold-light: #d9c28b;
  --red: #e60033;
  --cream: #f8f6f0;
  --cream-dark: #efede5;
  --white: #fff;
  --text: #333;
  --text-light: #666;
  --border: #ccc;
  --shadow: 0 5px 10px rgba(0,0,0,.07);
  --radius: 8px;
  --max: 1100px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    YuGothic,
    Meiryo,
    sans-serif;
  line-height: 1.9;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.k_container {
  width: min(92%, var(--max));
  margin: 0 auto;
}
/* =========================
    Hero
========================= */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(
      rgba(15, 34, 48, .3),
      rgba(15, 34, 48, .3)
    ),
    url("../../../images/kannushi-hero.webp") center / cover no-repeat;
}
.hero-inner {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.hero-content {
  max-width: 900px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 15px;
  border: 1px solid rgba(255,255,255,.55);
  background: #a56f04;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0 0 25px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.35;
  letter-spacing: .04em;
}
.hero-lead {
  margin: 0 0 35px;
  font-size: 17px;
  line-height: 2;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  transition: .2s;
}
.btn-top:hover {
  transform: translateY(-2px);
}
.btn-gold {
  color: #fff;
  background: var(--gold);
}
.btn-white {
  color: var(--navy);
  background: #fff;
}
/* =========================
    Intro
========================= */

.intro {
  padding: 70px 0;
  background: var(--cream);
}

.intro-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  margin-bottom: 20px;
}

.intro p {
  margin: 0;
  font-size: 16px;
}

/* =========================
    Common Section
========================= */

.section {
  padding: 90px 0 20px;
}

.section:nth-of-type(even) {
  background: #fff;
}

.section-gray {
  background: var(--cream);
}

.body .wp-block-group .section-header {
  margin-bottom: 2rem;
  text-align: center;
}
.section h2 {
  margin: 0;
  color: #333;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.5;
  background: none;
  padding: 0;
}

.section-header p {
  margin: 15px auto 0;
}

/* =========================
    Cards
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.card h3 {
  border: none;
  padding: 0;
  position: relative;
  margin: 0 0 15px;
  padding-left: 18px;
  font-size: 21px;
  line-height: 1.5;
}
.card h3::before {
  position: absolute;
  top: .4em;
  left: 0;
  width: 4px;
  height: 1.1em;
  content: "";
  background: var(--gold);
}
.personal .card h3::before {
  background: #dc143c;
}
.business .card h3::before {
  background: #182d3d;
}
.card p {
  margin: 0;
  font-size: 16px;
}

p.keyword {
  display: inline-block;
  margin-top: 15px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--cream);
  color: var(--navy);
  font-size: 12px;
}
.shindo .feature-box {
  border-radius: 8px;
  padding: 1.5rem;
}

/* =========================
    Audience
========================= */

.audience-card {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.audience-card h3 {
  margin-top: 0;
  font-size: 26px;
}

.audience-card p {
  color: rgba(255,255,255,.85);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "?";
  color: var(--gold-light);
  font-weight: 700;
}

/* =========================
    Price
========================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

p.price-title {
  margin: 0;
  padding: 20px 25px;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.price-body {
  padding: 25px;
}

.body .wp-block-columns .price-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.body .wp-block-columns .price-item:last-child {
  border-bottom: none;
}

.price-name {
  font-weight: 700;
}

.price {
  flex-shrink: 0;
  color: var(--red);
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.price-note {
  margin-top: 20px;
  padding: 18px;
  background: var(--cream);
  font-size: 14px;
}

/* =========================
    送付御霊抜き
========================= */

.notice {
  padding: 1rem;
  border-left: 5px solid var(--gold);
  background: var(--cream);
}

.notice strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}
.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 1rem;
  list-style: none;
  justify-content: space-around;
}

.item-list li {
  margin: 0;
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
a.cv-formlink.order {
  background: #a56f04;
}

@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
  .hero-inner {
    min-height: auto;
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .section {
    padding: 65px 0;
  }
  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    padding: 28px 22px;
  }
  body {
    padding-bottom: 55px;
  }
  ul.item-list {
    padding: 1rem .5rem;
  }
}

@media (max-width: 500px) {

  .k_container {
    width: 90%;
  }

  .header-inner {
    min-height: 60px;
  }

  .logo {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-top {
    width: 100%;
  }

  .card {
    padding: 24px 20px;
  }

  .price-item {
    display: block;
  }

  .price {
    display: block;
    margin-top: 5px;
  }

  .notice {
    padding: 22px;
  }
  .shindo .feature-box {
    padding: 1rem .5rem;
  }
}