@charset "UTF-8";

/* ============================================================
   7BEE TOP PAGE CSS
   cleaned: removed unused selectors, duplicate declarations,
   and invalid typo properties based on index.php usage.
============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #fff;
  padding: 0;
}

.hero-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  max-height: 400px;
  background: linear-gradient(180deg, #3d8fc0 0%, #4e9fd1 25%, #72b5de 55%, #ffffff 100%);
  will-change: transform;
}

.hero-illust {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 1460px;
  z-index: 5;
  pointer-events: none;
  will-change: transform;
  animation: illustUp .9s var(--ease) .15s both;
}

.hero-illust img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 3.5fr 6.2fr;
  gap: 0 8%;
  padding: 7vh 5% 13vh;
  max-width: 1360px;
  margin: 0 auto;
  left: 0;
  right: 0;
  will-change: transform;
}

.hero-inner2 {
  position: relative;
  z-index: 10;
  padding-bottom: 7%;
}

@media (min-width: 768px) {
  .hero-chara-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-copy:first-of-type {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-copy-lower {
    grid-column: 2;
    grid-row: 1;
  }
}

.hero-chara-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 4;
  max-width: 400px;
  margin-top: 5%;
  animation: charaIn .9s var(--ease) .28s both;
}

@media (max-width: 767px) {
  .hero-chara-wrap {
    display: block;
    width: 80%;
    margin: 0 0 0 10%;
  }
}

.hero-chara-img {
  width: 70%;
  margin: 0 0 0 -16%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(10,30,60,.16));
  animation: charaBob 4.2s ease-in-out infinite;
  display: block;
}

@media (max-width: 767px) {
  .hero-chara-img {
    width: 50%;
    margin: -19% 0 0 -17%;
  }
}

.hero-name-svg {
  width: 86%;
  height: auto;
  display: block;
  margin: -16% 0 0 8%;
  filter: drop-shadow(0 4px 12px rgba(10,30,60,.18));
  animation: fadeUp .7s var(--ease) .5s both;
}

@media (max-width: 767px) {
  .hero-name-svg {
    width: 94%;
    margin: -20% 0 0 3%;
  }
}

.chara-balloon {
  position: absolute;
  top: 0;
  right: -12%;
  margin-top: 9%;
  background: #fff;
  border-radius: 100px;
  padding: 1em;
  box-shadow: 0 4px 20px rgba(0,0,0,.13), inset 0 1px 0 rgba(255,255,255,.8);
  font-size: clamp(45%, 1.28vw, 110%);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
  z-index: 15;
  pointer-events: none;
  animation: balloonIn .65s var(--ease) 1.2s both;
}

.chara-balloon::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 33px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 6px solid transparent;
  border-top: 13px solid #fff;
}

.chara-balloon em {
  font-style: normal;
  color: var(--accent);
}

@media (max-width: 767px) {
  .chara-balloon,
.chara-balloon::after {
    display: none;
  }
}

.hero-copy {
  padding: 9% 0 0;
}

.h1-sub-s {
  display: block;
  font-size: clamp(14px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #000;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 1.0);
  text-align: center;
  margin-top: 0.5em;
  background-color: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 0.3em 0.5em;
  line-height: 100%;
}

@media (max-width: 767px) {
  .h1-sub-s {
    font-size: clamp(15px, 5vw, 26px);
    margin: 0.5em 0 25px;
    background: none;
    line-height: 1.4;
  }

  .h1-sub-s span {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-h1 .h1-sub-s {
    font-size: clamp(14px, 3.5vw, 26px);
    display: inline-block;
    color: #222;
    text-shadow: none;
    background: #fff;
    border-radius: 100px;
    padding: 0.5em 1.5em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .13), inset 0 1px 0 rgba(255, 255, 255, .8);
    line-height: 1.4;
    white-space: nowrap;
    z-index: 15;
    pointer-events: none;
    margin: 6% 0 0 24%;
  }

  .hero-h1 .h1-sub-s::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 33%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 6px solid transparent;
    border-top: 13px solid #fff;
  }

  .hero-h1 .h1-sub-s span {
    display: none;
  }
}

.hero-check {
  display: flex;
  align-items: center;
  gap: .7em;
  background: rgba(10,10,10,.82);
  color: #fff;
  padding: .5em 1.2em;
  font-size: clamp(17px, 3.8vw, 38px);
  font-weight: 700;
  text-shadow: none;
  letter-spacing: -.02em;
  line-height: 1.5;
  margin-bottom: .3em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(-4deg);
}

.hero-check:nth-of-type(2) {
  transform: rotate(1.5deg);
}

@media (max-width: 767px) {
  .hero-check {
    margin-left: inherit;
    margin-right: inherit;
  }

  .hero-check:nth-of-type(2) {
    margin-left: 1em;
  }
}

.hero-check::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  min-width: 1.4em;
  background-color: #BBB90B;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}

.hero-problem {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: clamp(10px, 3.8vw, 50px);
  font-weight: 900;
  background: rgba(10,10,10,.82);
  padding: 0 .7em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.3;
  letter-spacing: .01em;
  animation: fadeUp .7s var(--ease) .66s both;
}

@media (max-width: 767px) {
  .hero-problem {
    font-size: clamp(10px, 6.36vw, 45px);
  }
}

.hero-h2 {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: clamp(10px, 3.8vw, 54px);
  font-weight: 900;
  background: rgba(170,166,0,.82);
  padding: 0 .7em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.3;
  letter-spacing: .01em;
  margin: 0.1em 0;
  animation: fadeUp .7s var(--ease) .66s both;
}

@media (max-width: 767px) {
  .hero-h2 {
    font-size: clamp(10px, 6.36vw, 45px);
  }
}

.hero-lead {
  text-align: center;
  margin-bottom: 20px;
  animation: fadeUp .7s var(--ease) .66s both;
  font-size: clamp(14px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 9px rgba(255,255,255,.7);
  padding: .45em .7em;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .hero-lead {
    font-size: 100%;
    background: none;
    padding: .45em 0;
    text-align: left;
  }

  .pb-bubble p,
.cta-panel p:not(.cta-badge) {
    background: none;
  }

  .cta-micro {
    font-size:100%;
  }
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeUp .7s var(--ease) .8s both;
}

@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(61,184,122,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(61,184,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,184,122,0); }
}

.section-problem {
  background: #f5f7fa;
}

.section-flow {
  background: transparent;
}

.section-problem .container,
.section-concept .container,
.section-services .container,
.section-area .container,
.section-reason .container,
.section-flow .container,
.area-policy .container,
.works .container,
.pricing .container {
  position: relative;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-lead .section-label {
  margin-bottom: 16px;
}

.problem-lead figure {
  width: 60%;
}

.problem-lead h2 {
  font-size: clamp(20px, 5.2vw, 40px);
  line-height: 1.6;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 24px;
}

.problem-lead h2 span {
  font-size: 60%;
  margin: 0 0.2em;
}

.problem-lead p {
  line-height: 1.95;
  font-weight: 600;
}

.problem-balloons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pb-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.pb-row.-right {
  flex-direction: row-reverse;
}

.pb-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8cff 0%, #8e6cff 100%);
  box-shadow: 0 4px 12px rgba(74,140,255,.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pb-avatar span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}

.pb-avatar img {
  width: 75%;
  margin: 0 auto;
}

.pb-bubble {
  position: relative;
  padding: 16px 18px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 6px 20px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pb-row.-left .pb-bubble::before,
.pb-row.-right .pb-bubble::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: -8px;
  border-top: 7px solid transparent;
  border-right: 9px solid rgba(255,255,255,.92);
}

.pb-bubble h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  letter-spacing: -.01em;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
}

.pb-bubble p {
  font-size: 14px;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.88);
  margin: 0;
}

@media (max-width: 767px) {
  .pb-bubble p {
    font-size: 100%;
  }
}

.wc {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  margin-top: 48px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(var(--panel-strong-r),var(--panel-strong-g),var(--panel-strong-b),.9);
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.09);
  box-shadow: 0 20px 56px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: inherit;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s ease;
}

.wc:first-of-type {
  margin-top: 52px;
}

.wc:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 72px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.11);
  border-color: rgba(var(--border-r),var(--border-g),var(--border-b),.15);
}

.wc-num {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-ui);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--border-r),var(--border-g),var(--border-b),.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.wc-thumb {
  margin: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

.wc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.wc:hover .wc-thumb img {
  transform: scale(1.04);
}

.wc-thumb {
  margin: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

.wc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 28, 0) 0%,
    rgba(10, 16, 28, 0.16) 52%,
    rgba(10, 16, 28, 0.56) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}

.wc-overlay-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transform: translateY(10px);
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .32s ease;
  opacity: 0;
}

.wc-overlay-label svg {
  flex-shrink: 0;
}

.wc:hover .wc-overlay {
  opacity: 1;
}

.wc:hover .wc-overlay-label {
  opacity: 1;
  transform: translateY(0);
}

.wc-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 52px 36px 40px;
}

.wc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.wc-meta span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.8);
  background: var(--tag-bg);
  border: var(--tag-border);
}

.wc-type {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 6px 0 3px;
}

.wc-role {
  height: 28px !important;
  padding: 0 12px !important;
  font-weight: 800 !important;
  letter-spacing: .03em !important;
  background: rgba(var(--border-r),var(--border-g),var(--border-b),.06) !important;
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.1) !important;
}

.role-beauty {
  color: #8a4a45 !important;
}

.role-care {
  color: #3d6058 !important;
}

.wc-name {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.25;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
}

.wc-name small {
  display: block;
  font-size: .5em;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.7);
  margin-top: 4px;
}

.wc-catch {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.65;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
}

.wc-story {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wc-story-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(var(--border-r),var(--border-g),var(--border-b),.03);
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.07);
}

.wc-story-item dt {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(var(--soft-r),var(--soft-g),var(--soft-b),.5);
}

.wc-story-item dd {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(var(--text-r),var(--text-g),var(--text-b),.75);
}

.wc-story-result {
  background: rgba(74,124,255,.04) !important;
  border-color: rgba(74,124,255,.12) !important;
}

.wc-story-result dt {
  color: var(--accent) !important;
}

.wc-story-result dd {
  font-weight: 700;
  color: rgb(var(--text-r),var(--text-g),var(--text-b)) !important;
}

.wc-point {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--tag-bg);
  border: var(--tag-border);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(var(--text-r),var(--text-g),var(--text-b),.78);
}

.wc-point span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(74,124,255,.1);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent);
}

.wc-arrow {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
}

.wc:hover .wc-arrow {
  transform: translate(3px, -3px);
}

.section-bottom-cta {
  margin-top: 48px;
  text-align: center;
}

.pricing {
  padding-top: 118px;
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.area-intro figure {
  width: 45%;
}

.area-intro .section-label {
  margin-bottom: 16px;
}

.area-intro h2 {
  font-size: clamp(20px, 5.2vw, 40px);
  line-height: 1.0;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 24px 0;
}

.area-intro h2 span {
  font-size: 60%;
  margin: 0 0.2em;
}

.area-intro p {
  line-height: 2;
  font-weight: 600;
}

.area-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.area-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-links-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.48);
}

.area-links-label::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.area-intro-lead {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.88);
}

.area-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(var(--panel-strong-r),var(--panel-strong-g),var(--panel-strong-b),.88);
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.09);
  box-shadow: 0 8px 24px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.05),
              inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease, background .3s ease;
  overflow: hidden;
}

.area-btn:hover {
  transform: translateY(-5px);
  border-color: rgba(74,124,255,.22);
  box-shadow: 0 18px 40px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.10),
              inset 0 1px 0 rgba(255,255,255,.8);
  background: rgba(255,255,255,.96);
}

.area-btn-en {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.4);
  margin-bottom: 6px;
}

.area-btn-ja {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  flex: 1;
}

.area-btn-ja span {
  font-size: 90%;
  font-weight: 500;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.88);
}

.area-btn-arrow {
  display: block;
  align-self: flex-end;
  font-size: 14px;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.3);
  transition: transform .3s var(--ease), color .3s ease;
  line-height: 1;
  margin-top: 10px;
}

.area-btn:hover .area-btn-arrow {
  transform: translate(3px, -2px);
  color: var(--accent);
}

.section-flow {
  position: relative;
}

.section-flow .container {
  position: relative;
  z-index: 1;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 7% 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.flow-step {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

.flow-step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #bbb907;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: -10px;
  margin-right: -20px;
}

.flow-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-right: -20px;
  padding-top: 4px;
  padding-bottom: 14px;
}

.flow-step-line {
  width: 2px;
  flex: 1;
  background: #c9c806;
}

.flow-step-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #c9c806;
  flex-shrink: 0;
}

.flow-step:last-child .flow-step-connector {
  display: none;
}

.flow-step-content {
  flex: 1;
  padding: 16px 24px 22px 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.07);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

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

.flow-step-en {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a8600;
  margin-bottom: 6px;
  display: block;
}

.flow-step-content h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.35;
  margin-bottom: 8px;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}

.flow-step-content p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .72);
  margin: 0;
}

@media (max-width: 767px) {
  .flow-step-content p {
    font-size: 100%;
  }
}

.works {
  background-color: #fff;
}

.section-structure {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.structure-bg-typo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sbt-word {
  position: absolute;
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(74,140,255,.08);
  white-space: nowrap;
  will-change: transform;
  user-select: none;
}

.sbt-word--1 {
  font-size: clamp(100px, 22vw, 280px);
  top: -4%;
  left: -2%;
}

.sbt-word--2 {
  font-size: clamp(80px, 17vw, 220px);
  top: 30%;
  right: -4%;
  text-align: right;
}

.sbt-word--3 {
  font-size: clamp(70px, 14vw, 180px);
  bottom: 0%;
  left: 3%;
}

.structure-container {
  position: relative;
  z-index: 1;
}

.structure-layout {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

.structure-row3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: nowrap;
}

.structure-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 1;
  transform: rotate(-6.8deg);
  transform-origin: center bottom;
}

.structure-cell.is-inview,
.structure-row3.is-inview .structure-cell {
  transform: rotate(-6.8deg);
}

.structure-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeUp .7s var(--ease) .54s both;
}

.structure-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(74,140,255,.65);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 6px;
  animation: fadeUp .7s var(--ease) .54s both;
}

.structure-h2 {
  display: inline;
  font-size: clamp(22px, 3.7vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 2.0;
  background: rgba(10,10,10,.88);
  color: #fff;
  padding: .18em .5em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  white-space: nowrap;
}

.structure-h2--accent {
  background: rgba(170,166,0,.82);
}

.structure-sub {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  margin-left: 2px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.5;
  white-space: nowrap;
}

.structure-sub::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(74,140,255,.5);
  margin-right: 6px;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes charaIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes illustUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes charaBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes balloonIn {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1100px) {
  .wc {
    grid-template-columns: 300px 1fr;
  }

  .wc-body {
    padding: 28px 36px 28px 30px;
    gap: 16px;
  }

  .wc-story {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wc-story-item {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .wc-story-item dt {
    flex-shrink: 0;
    width: 2.5em;
  }
}

@media (max-width: 1080px) {
  .problem-layout {
    gap: 48px;
  }

  .area-layout {
    gap: 48px;
  }

  .flow-steps {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .area-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    max-height: none;
  }

  .hero-illust {
    top: 35%;
    width: 120%;
  }

  .hero-inner {
    position: relative;
    grid-template-columns: 1fr;
    inset: auto;
    padding: 17% 5% 28%;
    width: 100%;
    gap: 0;
    align-items: start;
  }

  .hero-copy {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0 0;
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .problem-balloons {
    gap: 12px;
  }

  .pb-avatar {
    width: 34px;
    height: 34px;
  }

  .pb-avatar span {
    font-size: 10px;
  }

  .pb-bubble {
    padding: 14px 15px 12px;
    border-radius: 14px;
  }

  .problem-lead h2 {
    font-size: clamp(10px, 8.2vw, 40px);
  }

  .wc {
    grid-template-columns: 1fr;
    margin-top: 28px;
    border-radius: 22px;
  }

  .wc-thumb {
    aspect-ratio: 16/9;
    height: auto;
  }

  .wc-body {
    padding: 22px 20px 24px;
    gap: 16px;
  }

  .wc-name {
    font-size: 20px;
  }

  .wc-catch {
    font-size: 13.5px;
  }

  .wc-num {
    font-size: 52px;
    top: 14px;
    right: 18px;
  }

  .wc-arrow {
    right: 16px;
    bottom: 18px;
  }

  .wc-story {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wc-story-item {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 11px 13px;
  }

  .wc-story-item dt {
    flex-shrink: 0;
    width: 2.5em;
  }

  .pricing {
    padding-top: 92px;
  }

  .area-intro h2 {
    font-size: clamp(10px, 6.2vw, 40px);
  }

  .area-btn-grid {
    gap: 8px;
  }

  .area-btn {
    min-height: 96px;
    padding: 16px 14px 14px;
    border-radius: 14px;
  }

  .area-btn-ja {
    font-size: 13.5px;
  }

  .area-links {
    gap: 22px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }

  .flow-step:nth-child(1) .flow-step-inner,
.flow-step:nth-child(2) .flow-step-inner,
.flow-step:nth-child(3) .flow-step-inner {
    border-radius: 3px !important;
  }

  .section-structure {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .sbt-word--1 {
    font-size: clamp(72px, 22vw, 120px);
    top: -2%;
    left: -4%;
  }

  .sbt-word--2 {
    font-size: clamp(56px, 17vw, 100px);
    top: 28%;
  }

  .sbt-word--3 {
    font-size: clamp(50px, 15vw, 90px);
    bottom: 2%;
  }

  .structure-layout {
    gap: 28px;
    margin-top: 15%;
  }

  .structure-row3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .structure-cell {
    transform: rotate(-6.8deg);
  }

  .structure-tag {
    font-size: 10px;
  }

  .structure-h2 {
    font-size: clamp(14px, 8.36vw, 65px);
    white-space: nowrap;
  }

  .structure-sub {
    font-size: clamp(12px, 3.0vw, 20px);
    white-space: normal;
  }
}

.hero-micro {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  align-items: center;
  justify-content: center;
}

.hero-micro li {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,1.0);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-micro-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #8a8600;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.hero-micro-accent .hero-micro-icon {
  background-color: #5a5800;
}

@media (max-width: 600px) {
  .hero-micro {
    gap: 0.25rem 0.5rem;
  }

  .hero-micro li {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }
}

.section-heading p {
  text-align: center;
}

@media (max-width: 767px) {
  .section-heading p {
    text-align: left;
  }
}

.pricing {
  padding-top: 100px;
}

.plan-head-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.plan-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #BBB90B;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  gap: 1px;
}

.plan-badge__ja {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-align: center;
}

.plan-badge__en {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-align: center;
  font-family: var(--font-ui, "Inter", sans-serif);
}

.plan-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  margin: 0;
  letter-spacing: -.01em;
  flex: 1;
}

.plan-col__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.3;
  margin: 0 0 8px;
}

.plan-col__price {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.055em;
  margin: 0 0 20px;
  color: #aaa600;
}

.plan-col__price .sTxt {
  font-size: 70%;
}

.plan-col__price--build {
  color: #aaa600;
}

.plan-col__price--improve {
  color: #4a7cff;
}

.plan-col__tax {
  font-size: .32em;
  color: #333;
  font-weight: 800;
  letter-spacing: 0;
}

.plan-col__price-prefix {
  display: inline-block;
  font-size: .35em;
  margin-right: 8px;
  color: #111;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  background: rgba(0,0,0,.04);
  padding: 8px 14px;
  letter-spacing: -.01em;
}

.plan-features li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  flex-shrink: 0;
}

.plan-features--main li {
  background: rgba(187,185,11,.07);
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
}

.plan-features--main li::before {
  background-color: #BBB90B;
}

.plan-sitemap {
  margin: 0 0 16px;
  padding: 16px 18px;
  background: rgba(187,185,11,.05);
  border-radius: 14px;
  border: 1px solid rgba(187,185,11,.15);
  flex: 1;
}

.plan-sitemap__label {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(187,185,11,.85);
  margin: 0 0 10px;
  display: block;
}

.plan-sitemap__list {
  list-style: none;
  padding: 0 0 0 12px;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(187,185,11,.3);
}

.plan-sitemap__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 4px 8px;
}

.plan-sitemap__item--top {
  padding-left: 8px;
}

.plan-sitemap__page {
  display: inline-flex;
  align-items: center;
  min-width: 76px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  background: rgba(0,0,0,.06);
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  flex-shrink: 0;
}

.plan-sitemap__item--top .plan-sitemap__page,
.plan-sitemap__page--top {
  background: rgba(10,10,10,.88);
  color: #fff;
}

.plan-sitemap__role {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.62);
}

@media (max-width: 767px) {
  .plan-sitemap__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 6px 0 6px 8px;
  }

  .plan-sitemap__page {
    min-width: 0;
  }

  .plan-sitemap__role {
    font-size: 12px;
    padding-left: 2px;
  }
}

.plan-sitemap__conclusion {
  font-size: 12px;
  font-weight: 700;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(187,185,11,.2);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.6;
}

.plan-sitemap__conclusion::before {
  content: "→";
  color: #BBB90B;
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-cta-wrap .sw {
  margin: 0;
}

.extra-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.extra-label {
  margin: 0;
  letter-spacing: .01em;
  text-align: center;
}

@media (max-width: 900px) {
  .extra-label {
    text-align: left;
  }
}

.extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.extra-list li {
  font-size: 13px;
  line-height: 1.7;
  color: #222;
  padding-left: 12px;
  position: relative;
}

.extra-label {
  font-weight: 600;
  margin: 0;
  letter-spacing: .01em;
}

.extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

@media (max-width: 900px) {
  .extra-list {
    display: block;
  }
}

.extra-list li {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  padding: 5px 1em;
  position: relative;
  background-color: #fff;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .extra-list li {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .pricing {
    padding-top: 72px;
  }

  .plan-sitemap {
    padding: 14px 16px;
  }

  .extra-inner {
    flex-direction: column;
    gap: 0;
  }

  .extra-list {
    gap: 6px 16px;
  }
}

.section-heading p {
  text-align: center;
}

@media (max-width: 767px) {
  .section-heading p {
    text-align: left;
  }
}

.plan-badge--improve {
  background: #4a7cff;
}

.plan-features--improve li {
  background: rgba(74,124,255,.06);
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
}

.plan-features--improve li::before {
  background-color: #4a7cff;
}

.plan-notdo {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: rgba(74,124,255,.05);
  border: 1px solid rgba(74,124,255,.15);
  flex: 1;
  border-radius: 14px;
}

.plan-notdo__label {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(74,124,255,.75);
  margin: 0 0 10px;
  display: block;
}

.plan-notdo__list {
  list-style: none;
  padding: 0 0 0 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(74,124,255,.25);
}

.plan-notdo__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 4px 8px;
}

.plan-notdo__item {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(74,124,255,.07);
  color: rgba(var(--muted-r),var(--muted-g),var(--muted-b),.65);
  position: relative;
  padding-left: 20px;
}

.plan-notdo__item::before {
  content: "×";
  position: absolute;
  left: 7px;
  font-size: 9px;
  font-weight: 800;
  color: rgba(74,124,255,.45);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .plan-notdo {
    padding: 14px 16px;
  }
}

.plan-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.plan-col {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px;
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.1);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 20px 55px rgba(38,76,110,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
}

.plan-col--build {
  border: 2px solid rgba(184,168,0,.60);
}

.plan-col--improve {
  border: 2px solid rgba(74,124,255,.60);
}

.plan-col__head {
  margin-bottom: 20px;
}

.plan-col__body {
  flex: 1;
}

.plan-col__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.08);
}

.plan-features-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(187,185,11,.8);
  margin: 0 0 10px;
  font-family: var(--font-ui, "Inter", sans-serif);
}

.plan-features-label--improve {
  color: rgba(74,124,255,.75);
}

.plan-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(187,185,11,.4);
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  width: 100%;
  justify-content: center;
  letter-spacing: .01em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.plan-detail-btn::-webkit-details-marker {
  display: none;
}

.plan-detail-btn::after {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #BBB90B;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 5v10M5 11l5 5 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.plan-detail-btn--improve::after {
  background-color: #4a7cff;
}

.plan-accordion[open] .plan-detail-btn::after {
  transform: rotate(180deg);
}

.plan-detail-btn--improve {
  border-color: rgba(74,124,255,.3);
}

summary.plan-detail-btn {
  -webkit-appearance: none;
  appearance: none;
}

summary.plan-detail-btn--build:hover {
  background: #BBB90B !important;
  color: #fff !important;
  border-color: #BBB90B !important;
  box-shadow: 0 8px 24px rgba(187,185,11,.35);
  transform: translateY(-2px);
}

summary.plan-detail-btn--improve:hover {
  background: #4a7cff !important;
  color: #fff !important;
  border-color: #4a7cff !important;
  box-shadow: 0 8px 24px rgba(74,124,255,.3);
  transform: translateY(-2px);
}

.plan-detail-btn {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  background-color: #fff;
}

.plan-detail-btn--build {
  background-color: #fff;
  border: 2px solid rgba(184,168,0,.45);
  color: #aaa600;
}

.plan-detail-btn--improve {
  background-color: #fff;
  border: 2px solid rgba(74,124,255,.34);
  color: #4a7cff;
}

.plan-detail-btn--build:hover,
summary.plan-detail-btn--build:hover {
  background-color: #BBB90B !important;
  color: #fff !important;
  border-color: #BBB90B !important;
  box-shadow: 0 8px 24px rgba(187,185,11,.35);
  transform: translateY(-2px);
}

.plan-detail-btn--improve:hover,
summary.plan-detail-btn--improve:hover {
  background-color: #4a7cff !important;
  color: #fff !important;
  border-color: #4a7cff !important;
  box-shadow: 0 8px 24px rgba(74,124,255,.3);
  transform: translateY(-2px);
}

:is(summary).plan-detail-btn--build:hover {
  background-color: #BBB90B !important;
  color: #fff !important;
  border-color: #BBB90B !important;
}

:is(summary).plan-detail-btn--improve:hover {
  background-color: #4a7cff !important;
  color: #fff !important;
  border-color: #4a7cff !important;
}

@media (max-width: 900px) {
  .plan-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .plan-col {
    padding: 24px 20px;
  }
}

.pf-block {
  max-width: 960px;
  margin: 28px auto 0;
  border: 5px solid rgba(184,168,0,1);
  background: rgba(255,254,245,.98);
  position: relative;
  border-radius: 26px;
  box-shadow:
    0 20px 55px rgba(38,76,110,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
}

.pf-inner {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-upper {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
}

.pf-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2%;
  min-width: 0;
}

.pf-right {
  display: flex;
  align-items: center;
}

.pf-right__body {
  font-weight: 600;
  margin: 0;
  line-height: 2;
}

.pf-terms {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.pf-term {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(187,185,11,1);
  border-radius: 14px;
}

.pf-term__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  width: 18%;
}

.pf-term__main {
  font-size: clamp(100%, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  margin: 0;
}

.pf-term__main2 {
  font-size: clamp(100%, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  margin: 0;
}

.pf-term__sub {
  font-size: 11px;
  color: rgba(17,17,17,.5);
  margin: 2px 0 0;
}

.pf-term__arrow {
  font-size: 4vw;
  color: #BBB90B;
  font-weight: 900;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.pcta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  margin: 20px auto 0;
  padding: 36px 48px;
  background: rgba(140,160,212,.35);
  border-radius: 24px;
}

.pcta__chara {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
	.pcta {
	  gap: 12px;
	}
  .pcta__chara {
    max-width: 120px;
    width: 36%;
  }
}

.pcta__chara img {
  width: 140%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: -60%;
}

@media (max-width: 900px) {
  .pcta__chara img {
    width: 140%;
    position: relative;
    top: inherit;
    left: inherit;
  }
}

.pcta__balloon {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 16%;
  transform: translateX(-20%);
  background: #fff;
  border: 3px solid #000;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  padding: 7px 12px;
  white-space: nowrap;
  color: #111;
  border-radius: 999px;
}

.pcta__balloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #000;
}

.pcta__balloon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 30px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
}

.pcta__balloon::after::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #000;
}

.pcta__title {
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.4;
  color: #111;
  margin: 0 0 10px;
}

.pcta__lead {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

.pcta__btn-col {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .plan-cols {
    grid-template-columns: 1fr;
  }

  .pf-inner {
    padding: 40px 24px 28px;
  }

  .pf-upper {
    grid-template-columns: 1fr;
  }

  .pf-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(187,185,11,.2);
    padding-bottom: 24px;
  }

  .pf-right {
    padding-left: 0;
    padding-top: 20px;
  }

  .pf-terms {
    grid-template-columns: 1fr;
  }

  .pf-term__arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .pcta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pf-block {
    margin-top: 20px;
  }

  .pcta {
    padding: 28px 24px;
    border-radius: 18px;
  }
}

.plan-accordion {
  width: 100%;
}

.plan-accordion[open] summary svg {
  display: none;
}

.plan-accordion__body {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 16px;
}

.plan-accordion--build .plan-accordion__body {
  border-top-color: rgba(187,185,11,.2);
}

.plan-accordion--improve .plan-accordion__body {
  border-top-color: rgba(74,124,255,.15);
}

.pricing-group {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 40px;
  background: transparent;
  border: 1px solid rgba(0,0,0,.08);
}

.pricing-group .pricing-lede {
  max-width: 100%;
  margin: 0 0 36px;
}

.pricing-group .plan-cols {
  max-width: 100%;
  margin: 0 0 24px;
}

.pricing-group .pf-block {
  max-width: 100%;
  margin: 36px 0 0;
}

.pricing-group .plan-cols,
.pricing-group .pf-block {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .pricing-group {
    padding: 32px 20px 28px;
    border-radius: 18px;
  }
}

.pricing {
  padding: 0!important;
  margin-bottom: 0;
}

.pricing .container {
  max-width: 1180px;
  padding: 0!important;
}

.pricing-group {
  max-width: 1110px;
  margin: 0 auto;
  padding: 48px 52px 32px;
  background: transparent;
  border-radius: 28px;
  border: 1.5px solid rgba(130,170,210,.28);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,.9) inset,
    0 -1px 0 0 rgba(130,170,210,.15) inset,
    0 24px 64px rgba(40,80,120,.07);
}

@media (max-width: 900px) {
  .pricing-group {
    padding: 10% 5%;
  }

  .plan-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 34px;
    margin: 0 0 34px;
  }

  .plan-col {
    position: relative;
    min-height: 540px;
    padding: 34px 34px 30px;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow:
    0 20px 55px rgba(38,76,110,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
  }

  .plan-col--build {
    border: 2px solid rgba(184,168,0,.30);
  }

  .plan-col--improve {
    border: 2px solid rgba(74,124,255,.24);
  }

  .plan-head-top {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .plan-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #b8a800;
    color: #fff;
    box-shadow: 0 10px 24px rgba(184,168,0,.20);
  }

  .plan-badge--improve {
    background: #4a7cff;
    box-shadow: 0 10px 24px rgba(74,124,255,.18);
  }

  .plan-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #111;
  }

  .plan-col__lead {
    line-height: 2;
    margin: 0 0 26px;
  }

  .plan-features-label {
    font-size: 13px;
    font-weight: 900;
    color: #aaa600;
    margin: 0 0 12px;
  }

  .plan-features-label--improve {
    color: #4a7cff;
  }

  .plan-features {
    gap: 9px;
  }

  .plan-features li {
    background: transparent !important;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 700;
    color: #111;
  }

  .plan-features li::before {
    width: 17px;
    height: 17px;
    min-width: 17px;
    background-color: #b8a800;
  }

  .plan-features--improve li::before {
    background-color: #4a7cff;
  }

  .plan-col__foot {
    margin-top: 30px;
  }

  .plan-detail-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .plan-detail-btn--build {
    border: 2px solid rgba(184,168,0,.45);
    color: #aaa600;
  }

  .plan-detail-btn--improve {
    border: 2px solid rgba(74,124,255,.34);
    color: #4a7cff;
  }

  .plan-accordion summary {
    list-style: none;
    cursor: pointer;
  }

  .plan-accordion summary::-webkit-details-marker {
    display: none;
  }

  .plan-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  @media (max-width: 900px) {
    .plan-cols {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  .plan-cols:has(details[open]) {
    align-items: flex-start;
  }

  .plan-col {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .plan-col__body {
    flex: 1;
  }

  .plan-col__foot {
    margin-top: auto;
  }

  .plan-cols {
    align-items: stretch !important;
  }

  .plan-cols:has(.plan-accordion[open]) {
    align-items: start !important;
  }

  .plan-cols:has(.plan-accordion[open]) .plan-col {
    align-self: start !important;
  }

  .plan-col {
    height: 100%;
  }

  .plan-cols {
    align-items: stretch;
  }

  .plan-col {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .plan-col__body {
    flex: 0 0 auto;
  }

  .plan-col__foot {
    margin-top: 30px !important;
  }

  .plan-detail-btn {
    transition: all .25s ease;
    cursor: pointer;
  }

  .plan-detail-btn--build:hover {
    background: #BBB90B;
    color: #fff;
    border-color: #BBB90B;
    box-shadow: 0 8px 24px rgba(187,185,11,.35);
    transform: translateY(-2px);
  }

  .plan-detail-btn--build:hover .plan-detail-btn__icon {
    background: rgba(255,255,255,.25);
    color: #fff;
  }

  .plan-detail-btn--improve:hover {
    background: #4a7cff;
    color: #fff;
    border-color: #4a7cff;
    box-shadow: 0 8px 24px rgba(74,124,255,.3);
    transform: translateY(-2px);
  }

  .plan-detail-btn--improve:hover .plan-detail-btn__icon {
    background: rgba(255,255,255,.25);
    color: #fff;
  }

  .pf-term {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .pf-term__arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0 12px;
  }

  @media (max-width: 900px) {
    .pf-term__arrow {
      display: block;
      padding: 0;
    }
  }

  .plan-cols {
    align-items: stretch !important;
  }

  .plan-cols:has(.plan-accordion[open]) {
    align-items: start !important;
  }

  .plan-cols:has(.plan-accordion[open]) .plan-col {
    height: auto !important;
    align-self: start !important;
  }

  .plan-col {
    height: auto !important;
  }
}