/*
Theme Name: Retoushi LP
Theme URI: https://example.com/retoushi
Author: Retoushi
Author URI: https://example.com
Description: 不動産投資ランディングページ専用WordPressテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: retoushi-lp
*/

/* ============================================
   0. Variables & Reset
   ============================================ */
:root {
  /* ── Primary: H232 S64% L20% ── */
  --c-navy: #131953;
  --c-blue: #2e3da6;
  --c-blue-light: #4a63d3;

  /* ── Complementary: H52 (gold) ── */
  --c-gold: #d9b03d;
  --c-gold-light: #d4b94e;

  /* ── Split-comp warm: H17 ── */
  --c-wine: #7e1d38;
  /*--c-orange: #a9522a;*/
  --c-orange: #c04818;
  --c-cta-red: #c04818;

  /* ── Analogous cool: H170 ── */
  /*--c-teal: #1a8d72;*/
  --c-teal: #06c755;

  /* ── Functional ── */
  --c-line: #06c755;
  --c-review-blue: #7792f8;

  /* ── Neutrals (navy-tinted H232) ── */
  --c-text: #131953;
  --c-text-light: #2d3470;
  --c-text-sub: #5c6180;
  --c-white: #fff;
  --c-bg: #fff;
  --c-bg-light: #f0f2f8;
  --c-bg-cream: #f6f5f2;
  --c-border: #d2d5e1;
  --c-tag-bg: #e0e3ed;
  --c-tag-text: #7b8199;

  /* ── Type & Layout ── */
  --ff-min: "Shippori Mincho", "游明朝", serif;
  --ff-sans: "Noto Sans JP", "游ゴシック", sans-serif;
  --sp-max: 390px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: #0e1235;
  line-height: 1.8;
  overflow-x: hidden;
}

@media (min-width: 568px) {
  body {
    background:
      radial-gradient(ellipse 600px 600px at 8% 15%, rgba(46,61,166,.18), transparent),
      radial-gradient(ellipse 500px 500px at 92% 55%, rgba(74,108,240,.10), transparent),
      radial-gradient(ellipse 350px 350px at 50% 85%, rgba(168,135,42,.06), transparent),
      /*#0e1235;*/
      #fff;
  }
}

@media (max-width: 567px) {
  body { background: var(--c-bg); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .3s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.embed-container {
  border-color: transparent !important;
}

/* ============================================
   1. SP-centered Layout Wrapper
   ============================================ */
.lp-wrapper {
  max-width: var(--sp-max);
  margin: 0 auto;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

@media (max-width: 567px) {
  .lp-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 568px) {
  .lp-wrapper {
    box-shadow: 0 0 60px rgba(0,0,0,.35);
    border-radius: 0;
  }
}

.inner {
  padding: 0 20px;
}

/* ============================================
   2. Section Heading
   ============================================ */
.sec-heading {
  text-align: center;
  margin-bottom: 32px;
}

.sec-heading__title {
  font-family: var(--ff-min);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
}

.sec-heading__bar {
  display: block;
  width: 120px;
  height: 2px;
  background: var(--c-wine);
  margin: 14px auto 0;
}

.sec-heading__accent {
  font-size: 1.3em;
  color: var(--c-wine);
}

.sec-heading__desc {
  margin-top: 16px;
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.6;
  padding: 0 20px;
}

/* ============================================
   3. Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__logo-icon {
  height: 28px;
  width: auto;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
}

.site-header__logo-main {
  font-family: var(--ff-min);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-navy);
}

.site-header__logo-sub {
  font-family: var(--ff-min);
  font-size: 10px;
  color: var(--c-navy);
}

.hamburger {
  width: 60px;
  height: 60px;
  background: var(--c-navy);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-right: -20px;
}

.hamburger__line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-white);
  transition: .3s;
}

/* Nav overlay */
.site-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav.is-open { display: flex; }

.site-nav__link {
  font-family: var(--ff-min);
  font-size: 18px;
  color: var(--c-white);
}

.site-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 28px;
}

/* ============================================
   4. Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 32px;
  background: url('') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.85);
  border-top: 1px solid var(--c-navy);
  border-bottom: 1px solid var(--c-navy);
}

.hero > * { position: relative; z-index: 2; }

.hero__lead {
  font-family: var(--ff-min);
  font-size: 24px;
  color: var(--c-navy);
  margin-bottom: 10px;
}

.hero__title {
  font-family: var(--ff-min);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero__title-main { font-size: 32px; display: block; }
.hero__title-sub { font-size: 28px; display: block; }

.hero__desc {
  font-family: var(--ff-min);
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero__achievement {
  display: flex;
  justify-content: center;
}

.hero__achievement-img {
  width: 80%;
  max-width: 320px;
  height: auto;
}

/* ============================================
   5. Campaign Banner
   ============================================ */
.campaign {
  background: var(--c-navy);
  padding: 14px 20px;
  text-align: center;
}

.campaign__text {
  font-family: var(--ff-min);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-white);
  letter-spacing: .04em;
}

/* ============================================
   6. CTA Dual Buttons
   ============================================ */
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-dual__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px 32px;
  color: var(--c-white);
  font-family: var(--ff-min);
  font-weight: 700;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  z-index: 1;
}

.cta-dual__btn--consult { background: var(--c-orange); }
.cta-dual__btn--line { background: var(--c-teal); }
.cta-dual__btn--mail { background: var(--c-navy); }

.cta-dual__small { font-size: 14px; font-weight: 900; }
.cta-dual__main { font-size: 18px; }

.cta-dual__arrow {
  position: absolute;
  bottom: 8px;
  font-size: 14px;
  opacity: .7;
}

.cta-dual__arrow--right {
  bottom: auto;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* ============================================
   7. よくあるお悩み
   ============================================ */
.sec-problems {
  padding: 60px 0 48px;
  background: var(--c-bg-light);
  margin-bottom: 62px;
  position: relative;
}
.sec-problems:after {
  content: "";
  display: block;
  width: 100%;
  height: 62px;
  border-top: 40px solid var(--c-bg-light);
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  position: absolute;
  bottom: -62px;
}

.problems-list {
  margin-top: 24px;
}

.problem-item {
  padding: 14px 20px;
  font-family: var(--ff-min);
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid var(--c-border);
}

.problem-item:last-child { border-bottom: none; }

.problem-item::before {
  content: "✓ ";
  color: var(--c-wine);
  font-weight: 700;
}

/* ============================================
   7b. サービス概要（features 直前）
   ============================================ */
.sec-service-intro {
  padding: 8px 0 8px;
  margin-bottom: 8px;
}

.sec-service-intro__inner {
  margin: 0 20px;
  padding: 28px 20px 32px;
  background: linear-gradient(165deg, var(--c-white) 0%, var(--c-bg-cream) 100%);
  border: 1px solid rgba(19, 25, 83, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(19, 25, 83, 0.06);
}

.sec-service-intro__eyebrow {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-wine);
}

.sec-service-intro__title {
  margin: 0 0 12px;
  font-family: var(--ff-min);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  text-align: center;
  line-height: 1.45;
}

.sec-service-intro__bar {
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--c-wine), transparent);
}

.sec-service-intro__content {
  max-width: 36em;
  margin: 0 auto;
}

.sec-service-intro__lead {
  margin: 0 0 1.15em;
  font-family: var(--ff-min);
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
  text-align: justify;
  text-justify: inter-ideograph;
}

.sec-service-intro__lead--second {
  margin-bottom: 0;
  padding-bottom: 22px;
  margin-top: 1.25em;
  padding-top: 1.25em;
  border-top: 1px dashed rgba(19, 25, 83, 0.12);
}

.sec-service-intro__mark {
  font-weight: 700;
  color: var(--c-navy);
  background: linear-gradient(transparent 64%, rgba(217, 176, 61, 0.35) 64%);
  padding: 0 1px;
}

.sec-service-intro__tags {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sec-service-intro__tag {
  margin: 0;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-navy);
  background: var(--c-white);
  border: 1px solid rgba(19, 25, 83, 0.14);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(19, 25, 83, 0.05);
}

/* ============================================
   8. Feature Card (01, 02, 03)
   ============================================ */
.sec-feature-card {
  margin: 0 20px 24px;
  background: var(--c-white);
  border-top: 2px solid var(--c-navy);
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  padding: 24px;
}

.sec-feature-card__number {
  font-family: var(--ff-min);
  font-size: 32px;
  font-weight: 400;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.sec-feature-card__tag {
  display: inline-block;
  font-family: var(--ff-min);
  font-size: 12px;
  color: var(--c-navy);
  background: var(--c-tag-bg);
  padding: 2px 16px;
  margin-bottom: 14px;
}

.sec-feature-card__title {
  font-family: var(--ff-min);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sec-feature-card__desc {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
}

/* ============================================
   9. CTA Section (gradient)
   ============================================ */
.sec-cta {
  margin: 40px 20px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  border-radius: 4px;
  padding: 40px 24px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sec-cta > * { position: relative; z-index: 1; }

.sec-cta__label {
  display: inline-block;
  font-family: var(--ff-min);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 4px 16px;
  border-radius: 60px;
  margin-bottom: 18px;
}

.sec-cta__title {
  font-family: var(--ff-min);
  font-size: 22px;
  color: var(--c-white);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sec-cta__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 16px;
}

.sec-cta__desc {
  font-family: var(--ff-min);
  font-size: 13px;
  color: rgba(255,255,255);
  line-height: 1.9;
  margin-bottom: 28px;
}

.sec-cta__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  background: var(--c-cta-red);
  color: var(--c-white);
  border: none;
  border-radius: 8px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 4px 16px rgba(192,72,24,.4);
  position: relative;
  transition: .3s;
}

.sec-cta__btn-primary:hover {
  box-shadow: 0 6px 24px rgba(192,72,24,.55);
  transform: translateY(-1px);
}

.sec-cta__btn-primary .arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  right: 16px;
  transform: rotate(90deg);
  padding-bottom: 3px;
}

.sec-cta__btn-sub-text {
  font-family: var(--ff-min);
  font-size: 12px;
  color: rgba(255,255,255);
  margin-top: 20px;
  margin-bottom: 10px;
}

.sec-cta__or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .1em;
}

.sec-cta__or::before,
.sec-cta__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.sec-cta__btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--c-line);
  color: var(--c-white);
  border: none;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(6,199,85,.3);
  position: relative;
  transition: .3s;
}

.sec-cta__btn-line:hover {
  box-shadow: 0 6px 24px rgba(6,199,85,.45);
  transform: translateY(-1px);
}

.sec-cta__btn-line .arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  right: 16px;
}

.sec-cta__btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--c-navy);
  color: var(--c-white);
  border: none;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(19, 25, 83, 0.35);
  position: relative;
  transition: .3s;
}

.sec-cta__btn-mail:hover {
  box-shadow: 0 6px 24px rgba(19, 25, 83, 0.45);
  transform: translateY(-1px);
}

.sec-cta__btn-mail .arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  right: 16px;
}

/* ============================================
   10. サービス訴求セクション
   ============================================ */
.sec-service {
  padding: 30px 0 24px;
}

.sec-service.sec-service-text {
  padding-top: 0;
  padding-bottom: 0;
}

.sec-service__text {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  margin-top: 16px;
  padding: 0 20px;
}

.sec-service__image {
  padding: 0 20px;
}

/* ============================================
   11. 事例紹介
   ============================================ */
.sec-cases {
  padding: 48px 0 0 0;
}

.case-item {
  margin-bottom: 40px;
  padding: 0 20px;
}

.case-item__label {
  font-family: var(--ff-min);
  font-size: 24px;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.case-item__image {
  width: 100%;
  aspect-ratio: 37/31.7;
  background: var(--c-bg-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-tag-text);
  font-size: 14px;
  margin-bottom: 16px;
}

.case-item__image img { width: 100%; height: 100%; object-fit: cover; }

.case-item__desc {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
}

/* ============================================
   12. 特長セクション
   ============================================ */
.sec-strengths {
  padding: 60px 0 48px;
}

.strength-item {
  padding: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0 20px;
}

.strength-item + .strength-item {
  border-top: 1px solid var(--c-navy);
}

.strength-item__icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-family: var(--ff-min);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
}

.strength-item__body { flex: 1; }

.strength-item__title {
  font-family: var(--ff-min);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.5;
  margin-bottom: 8px;
}

.strength-item__desc {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
}

/* ============================================
   13. 比較テーブル
   ============================================ */
.sec-compare {
  padding: 48px 20px;
}

.flex_contaienr {
  display: flex;
  justify-content: center;
}
.table_head_column {
  color: #fff;
  margin-top: auto;
}
.table_head_line {
  padding: 14px 4px;
  text-align: center;
  line-height: 20px;
  position: relative;
  font-size: 14px;
  min-width: 80px;
  background-color: var(--c-navy);
}

.table_head_line::after {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: 1px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
}
.table_head_line:last-child:after {
  display: none;
}

.table_main_column {
  background: linear-gradient(to right, #CDA033, #DCC737, #FBDA65, #E4DDBD, #A88124);
  padding: 0 2px 2px 2px;
  max-width: 100px;
}
.table_main_line_head {
  position: relative;
  text-align: center;
  padding: 15px 0;
}
.table_main_line_head::after {
  content: "当社";
  display: block;
  width: calc(100% - 8px);
  height: 24px;
  width: 60px;
  border-radius: 48px;
  background-color: #A88124;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  color: #fff;
  top: -14px;
  line-height: 22px;
}
.table_main_line_head img {
  width: auto;
  height: 24px;
  margin: 0 auto;
}
.table_main_line {
  background-color: #fff;
  padding: 10px 16px;
  font-family: var(--ff-min);
  font-size: 16px;
  color: var(--c-navy);
  text-align: center;
  line-height: 23px;
  min-height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table_main_line:after {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: 1px;
  background-color: var(--c-tag-text);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
}
.table_main_line:last-child:after {
  display: none;
}

.table_main_column {
  margin: 0 2px 0 4px;
}
.table_sub_line_head {
  background-color: var(--c-tag-text);
  color: #fff;
  padding: 10px;
  position: relative;
  padding: 11px 8px;
  font-size: 14px;
  text-align: center;
}
.table_sub_line {
  background: var(--c-bg-light);
  padding: 13px 8px;
  text-align: center;
  position: relative;
  font-family: var(--ff-min);
}
.table_sub_line:after {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--c-tag-text) 0px,
    var(--c-tag-text) 4px,
    transparent 4px,
    transparent 8px
  );
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
}
.table_sub_line:last-child:after {
  display: none;
}

.table_sub_column {
  margin-top: auto;
}
.table_sub_column:last-child {
  margin-left: 2px;
}


/* ============================================
   14. 口コミ
   ============================================ */
.sec-reviews {
  background: var(--c-review-blue);
  padding: 90px 0 48px;
  position: relative;
}

.sec-reviews__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
}

.sec-reviews__wave::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: var(--c-bg);
  border-radius: 0 0 50% 50%;
}

.sec-reviews .sec-heading__title { color: var(--c-bg-cream); }

.reviews-wrapper {
  /*
  background: var(--c-white);
  */
  margin: 0 20px;
  padding: 0px 16px;
}

.review-card {
  margin-bottom: 24px;
}

.review-card:last-child { margin-bottom: 0; }

.review-card__image {
  width: 100%;
  aspect-ratio: 31/24;
  background: var(--c-bg-light);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-tag-text);
  font-size: 14px;
  display: none;
}

.review-card__image img { width: 100%; height: 100%; object-fit: cover; }

.review-card__footer {
  background: var(--c-navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 60px;
}

.review-card__footer {
  position: relative;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;

  position: absolute;
  bottom: 16px;
  left: 10px;
}

.review-card__info {
  color: var(--c-white);
  font-size: 12px;
  line-height: 1.4;
}

.review-card__text {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  padding: 16px;
  background: var(--c-bg-light);
}

/* ============================================
   15. 投資実績 (keep)
   ============================================ */
.sec-results {
  padding: 90px 0 60px;
  background: var(--c-bg-light);
  position: relative;
}

.sec-results__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
}

.sec-results__wave::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: var(--c-review-blue);
  border-radius: 0 0 50% 50%;
}

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  padding: 0 20px;
}

.result-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.result-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--c-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-tag-text);
  font-size: 14px;
}

.result-card__image img { width: 100%; height: 100%; object-fit: cover; }

.result-card__body { padding: 20px; }

.result-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  border: 1px solid var(--c-navy);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.result-card__title {
  font-family: var(--ff-min);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.result-card__data { display: flex; gap: 20px; }

.result-card__data-label {
  font-size: 12px;
  color: var(--c-text-sub);
  margin-bottom: 2px;
}

.result-card__data-value {
  font-family: var(--ff-min);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
}

/* ============================================
   15b. ご利用の流れ
   ============================================ */
.sec-flow {
  padding: 60px 0 56px;
  background: var(--c-white);
}

.flow-steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 20px;
}

.flow-step {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-border) 0%, rgba(210, 213, 225, 0.35) 100%);
}

.flow-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-min);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-navy);
  box-shadow: 0 2px 8px rgba(19, 25, 83, 0.2);
}

.flow-step__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.flow-step__title {
  font-family: var(--ff-min);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.45;
  margin: 0 0 8px;
}

.flow-step__desc {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.85;
  margin: 0;
}

/* ============================================
   16. FAQ
   ============================================ */
.sec-faq {
  padding: 60px 0;
}

.faq-list { margin-top: 24px; }

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-min);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-min);
}

.faq-item__toggle {
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--c-navy);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}

.faq-item__toggle::before { width: 14px; height: 2px; }
.faq-item__toggle::after { width: 2px; height: 14px; }

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%,-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item__a-inner {
  padding: 0 20px 16px 60px;
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.8;
}

/* ============================================
   17. カレンダー予約 (placeholder)
   ============================================ */
.sec-calendar {
  padding: 60px 0;
  background: var(--c-bg-light);
}

.sec-calendar__lead {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  color: var(--c-text-sub);
  font-size: 13px;
}

.calendar-placeholder {
  margin: 24px 20px 0;
  min-height: 300px;
  background: var(--c-white);
  /*border: 2px dashed var(--c-border);*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-tag-text);
  font-size: 14px;
}

/* ============================================
   18. Contact Form
   ============================================ */
.sec-contact {
  padding: 60px 0;
}

.contact-form {
  margin: 24px 20px 0;
  background: var(--c-white);
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.form-group { margin-bottom: 16px; }

.form-group__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group__required {
  display: inline-block;
  font-size: 10px;
  background: var(--c-cta-red);
  color: var(--c-white);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-group__input,
.form-group__select,
.form-group__textarea {
  width: 100%;
  padding: 12px;
  font-family: var(--ff-sans);
  font-size: 16px;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  background: var(--c-bg-light);
}

.form-group__input:focus,
.form-group__select:focus,
.form-group__textarea:focus {
  outline: none;
  border-color: var(--c-navy);
}

.form-group__textarea { min-height: 120px; resize: vertical; }

.form-group__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.contact-submit {
  text-align: center;
  margin-top: 20px;
}

.contact-submit__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 60px;
}

/* ============================================
   19. Footer
   ============================================ */
.site-footer {
  background: var(--c-navy);
  padding: 40px 20px 24px;
  color: rgba(255,255,255,.6);
}

.site-footer__logo {
  font-family: var(--ff-min);
  font-size: 14px;
  color: var(--c-white);
  margin-bottom: 4px;
}

.site-footer__logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  display: block;
}

.site-footer__profile {
  margin-bottom: 24px;
  text-align: left;
}

.site-footer__profile-title {
  font-family: var(--ff-min);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

.site-footer__profile-dl {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__profile-row {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 8px 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__profile-row:first-of-type {
  padding-top: 0;
}

.site-footer__profile-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.site-footer__profile-dl dt {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__profile-dl dd {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.site-footer__link {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.site-footer__link:hover { color: var(--c-white); }

.site-footer__copy {
  font-size: 11px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

/* ============================================
   20. Fixed CTA
   ============================================ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: var(--sp-max);
  z-index: 90;
  transition: transform .4s ease;
  overflow: visible;
}

.fixed-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.fixed-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  border: none;
  text-decoration: none;
}

.fixed-cta__btn--consult {
  position: relative;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--c-orange);
}

/* ラベル（自社物件・コスト抑制）擬似要素 */
.fixed-cta__btn--consult::before {
  content: "仲介コスト抑制";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  white-space: pre;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--c-orange);
  background: #fff;
  border: 1px solid var(--c-orange);
  padding: 2px 7px 3px;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.fixed-cta__btn--line { background: var(--c-teal); }
.fixed-cta__btn--mail { background: var(--c-navy); }

/* ============================================
   21. Fade Animation
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Legal page (page-privacy-policy.php)
   ============================================ */
.page-legal {
  padding: 68px 0 56px;
  background: var(--c-bg-cream);
  min-height: 65vh;
}

.page-legal__header {
  text-align: center;
  padding-bottom: 24px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--c-border);
}

.page-legal__eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-wine);
  font-weight: 700;
  margin: 0 0 10px;
}

.page-legal__title {
  font-family: var(--ff-min);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.45;
  margin: 0 0 12px;
}

.page-legal__meta {
  font-size: 12px;
  color: var(--c-text-sub);
  margin: 0;
}

.page-legal__body {
  padding-top: 28px;
  padding-bottom: 8px;
}

.page-legal__prose {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
}

.page-legal__prose > *:first-child {
  margin-top: 0;
}

.page-legal__prose > *:last-child {
  margin-bottom: 0;
}

.page-legal__prose h2,
.page-legal__prose h3 {
  font-family: var(--ff-min);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.55;
  margin: 2em 0 0.75em;
}

.page-legal__prose h2 {
  font-size: 17px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(19, 25, 83, 0.12);
}

.page-legal__prose h2:first-child {
  margin-top: 0;
}

.page-legal__prose h3 {
  font-size: 15px;
  margin-top: 1.5em;
}

.page-legal__prose p {
  margin: 0 0 1.1em;
}

.page-legal__prose ul,
.page-legal__prose ol {
  margin: 0 0 1.1em;
  padding-left: 1.35em;
}

.page-legal__prose li {
  margin: 0.35em 0;
}

.page-legal__prose li > ul,
.page-legal__prose li > ol {
  margin-bottom: 0.35em;
}

.page-legal__prose a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-legal__prose a:hover {
  color: var(--c-wine);
}

.page-legal__prose strong {
  font-weight: 700;
  color: var(--c-text-light);
}

.page-legal__prose hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 2em 0;
}

.page-legal__prose blockquote {
  margin: 1.25em 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--c-gold);
  font-size: 13px;
  color: var(--c-text-sub);
}

.page-legal__prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 1.25em 0;
}

.page-legal__prose th,
.page-legal__prose td {
  border: 1px solid var(--c-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.page-legal__prose th {
  background: rgba(19, 25, 83, 0.06);
  font-weight: 700;
  color: var(--c-navy);
}

.page-legal__footer {
  text-align: center;
  padding-top: 36px;
  margin-top: 8px;
  border-top: 1px solid var(--c-border);
}

.page-legal__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 60px;
  text-decoration: none;
}

.page-legal__back:hover {
  opacity: 0.92;
  color: var(--c-white);
}

/* プライバシーポリシー閲覧時は LP 用追従 UI を非表示（スラッグ可変に body_class で付与） */
body.retoushi-privacy-policy .fixed-cta,
body.retoushi-privacy-policy .pc-side-toc,
body.retoushi-privacy-policy .pc-side-cta {
  display: none !important;
}

body.retoushi-disclaimer-page .fixed-cta,
body.retoushi-disclaimer-page .pc-side-toc,
body.retoushi-disclaimer-page .pc-side-cta {
  display: none !important;
}

/* LINE クッション中は追従 UI を非表示 */
body.retoushi-line-cushion .fixed-cta,
body.retoushi-line-cushion .pc-side-toc,
body.retoushi-line-cushion .pc-side-cta {
  display: none !important;
}

body.retoushi-contact-cushion .fixed-cta,
body.retoushi-contact-cushion .pc-side-toc,
body.retoushi-contact-cushion .pc-side-cta {
  display: none !important;
}

/* LINE クッションページ */
.line-cushion {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 64px;
}

.line-cushion__title {
  font-family: var(--ff-min);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 12px;
}

.line-cushion__text {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 22em;
}

.line-cushion__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--c-teal);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 60px;
  text-decoration: none;
}

.line-cushion__btn:hover {
  color: var(--c-white);
  opacity: 0.94;
}

.contact-cushion .line-cushion__btn,
.contact-cushion__btn {
  background: var(--c-navy);
}

.contact-cushion .line-cushion__btn:hover,
.contact-cushion__btn:hover {
  color: var(--c-white);
  opacity: 0.94;
}

/* ============================================
   LP インライン免責・注釈
   ============================================ */
.lp-disclaimer {
  margin: 0 20px 20px;
  padding: 16px 18px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-text-sub);
  background: rgba(19, 25, 83, 0.04);
  border: 1px solid rgba(19, 25, 83, 0.1);
  border-radius: 8px;
}

.lp-disclaimer a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-disclaimer strong {
  color: var(--c-text);
  font-weight: 700;
}

.lp-disclaimer--cases {
  margin-top: 8px;
  margin-bottom: 16px;
}

.lp-disclaimer--reviews {
  margin-top: 0;
  margin-bottom: 16px;
}

.lp-disclaimer--results {
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 36em;
}

.lp-disclaimer--contact {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 11px;
}

.site-footer__disclaimer {
  margin: 20px 0 16px;
  padding: 18px 16px;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__disclaimer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__disclaimer-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   22. Thanks / 404
   ============================================ */
.thanks {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}

.thanks__icon { font-size: 48px; margin-bottom: 20px; }

.thanks__title {
  font-family: var(--ff-min);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}

.thanks__text {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

.thanks__btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--c-navy);
  color: var(--c-white);
  font-weight: 700;
  border-radius: 60px;
  font-size: 14px;
}

/* ============================================
   23. PC Side TOC
   ============================================ */
.pc-side-toc {
  display: none;
}

@media (min-width: 820px) {
  .pc-side-toc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: calc(50% + 390px / 2 + 40px);
    z-index: 100;
  }

  .pc-side-toc__track {
    position: absolute;
    top: 8px;
    right: 5px;
    width: 1px;
    height: calc(100% - 16px);
    background: rgba(255,255,255,.12);
  }

  .pc-side-toc__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-decoration: none;
    transition: .3s;
  }

  .pc-side-toc__label {
    font-family: var(--ff-min);
    font-size: 13px;
    letter-spacing: .05em;
    color: rgba(50, 50, 50, 0.4);
    white-space: nowrap;
    transition: .3s;
  }

  .pc-side-toc__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    /*
    background: rgba(255,255,255,.2);
    border: 1.5px solid rgba(255,255,255,.3);
    */
    background: rgb(50 50 50 / 20%);
    border: 1.5px solid rgba(50, 50, 50, 0.4);
    flex-shrink: 0;
    transition: .3s;
    position: relative;
    z-index: 1;
  }

  .pc-side-toc__item:hover .pc-side-toc__label {
    /*color: rgba(255,255,255,.8);*/
    color: rgba(50, 50, 50, 0.4);
  }

  .pc-side-toc__item:hover .pc-side-toc__dot {
    background: rgba(255,255,255,.45);
    border-color: rgba(255,255,255,.55);
  }

  .pc-side-toc__item.is-active .pc-side-toc__label {
    color: var(--c-navy);
    font-weight: 700;
  }

  .pc-side-toc__item.is-active .pc-side-toc__dot {
    background: var(--c-gold);
    border-color: var(--c-gold);
    box-shadow: 0 0 10px rgba(168,135,42,.5);
    width: 13px;
    height: 13px;
  }

}

@media (min-width: 567px) {
  .sec-problems:after {
    border-right: 195px solid transparent;
    border-left: 195px solid transparent;
  }
}

@media (min-width: 1200px) {
  .pc-side-toc {
    right: calc(50% + 390px / 2 + 60px);
  }

  .pc-side-toc__label {
    font-size: 18px;
  }

  .pc-side-toc__item {
    gap: 16px;
    padding: 14px 0;
  }
}

/* ============================================
   24. PC Side CTA
   ============================================ */
.pc-side-cta {
  display: none;
}

@media (min-width: 820px) {
  .pc-side-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: calc(50% + 390px / 2 + 40px);
    z-index: 100;
    width: 280px;
    padding: 28px 20px 24px;
    background: var(--c-white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
    text-align: center;
  }

  .pc-side-cta__logo {
    width: auto;
    height: 28px;
    margin-bottom: 16px;
  }

  .pc-side-cta__title {
    font-family: var(--ff-min);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .pc-side-cta__divider {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--c-gold);
    margin: 0 auto 12px;
  }

  .pc-side-cta__desc {
    font-family: var(--ff-min);
    font-size: 11px;
    color: var(--c-text-sub);
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .pc-side-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 8px;
    border-radius: 6px;
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--c-white);
    position: relative;
    transition: .3s;
  }

  .pc-side-cta__arrow {
    position: absolute;
    right: 10px;
    font-size: 14px;
    opacity: .7;
  }

  .pc-side-cta__btn--primary {
    background: var(--c-cta-red);
    box-shadow: 0 3px 12px rgba(192,72,24,.3);
  }

  .pc-side-cta__btn--primary:hover {
    box-shadow: 0 5px 20px rgba(192,72,24,.45);
    transform: translateY(-1px);
  }

  .pc-side-cta__sub {
    font-size: 10px;
    color: var(--c-text-sub);
    margin-top: 6px;
    margin-bottom: 10px;
  }

  .pc-side-cta__or {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--c-border);
    font-size: 10px;
    letter-spacing: .1em;
    width: 100%;
  }

  .pc-side-cta__or::before,
  .pc-side-cta__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--c-border);
  }

  .pc-side-cta__btn--line {
    background: var(--c-line);
    box-shadow: 0 3px 12px rgba(6,199,85,.25);
    border-radius: 100px;
  }

  .pc-side-cta__btn--line:hover {
    box-shadow: 0 5px 20px rgba(6,199,85,.4);
    transform: translateY(-1px);
  }

  .pc-side-cta__btn--mail {
    background: var(--c-navy);
    box-shadow: 0 3px 12px rgba(19, 25, 83, 0.3);
    border-radius: 100px;
  }

  .pc-side-cta__btn--mail:hover {
    box-shadow: 0 5px 20px rgba(19, 25, 83, 0.42);
    transform: translateY(-1px);
  }
}

@media (min-width: 1200px) {
  .pc-side-cta {
    left: calc(50% + 390px / 2 + 60px);
    width: 320px;
    padding: 32px 24px 28px;
  }

  .pc-side-cta__logo {
    height: 32px;
  }

  .pc-side-cta__title {
    font-size: 15px;
  }

  .pc-side-cta__desc {
    font-size: 12px;
  }

  .pc-side-cta__btn {
    font-size: 14px;
    padding: 14px 8px;
  }
}
