/* ===================================================
   Blossom Blooms - Website Page
   =================================================== */

/* ===== Hero ===== */
.ws-hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
}

.ws-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.ws-hero__catch {
  font-family: var(--font-ja);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.ws-hero__sub {
  font-size: 20px;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.ws-hero__image {
  position: absolute;
  right: -20px;
  top: var(--header-height);
  width: 52%;
  height: calc(100% - var(--header-height));
  pointer-events: none;
}

.ws-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.ws-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.8;
}

/* ===== About Service ===== */
.ws-about__lead {
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  line-height: 2.3;
  margin-bottom: 24px;
}

.ws-about__sub {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text-light);
}

/* ===== For You（common.cssに定義） ===== */

/* ===== Why Blossom Blooms? ===== */
.ws-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ws-why__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-bg-alt);
  border-radius: 10px;
  padding: 32px 24px;
}

.ws-why__flower {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

.ws-why__card-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.ws-why__card-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
}

/* ===== Works ===== */
.ws-works__note {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 2;
}

.ws-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
}

.work-card {
  text-align: center;
}

.work-card__devices {
  display: block;
  position: relative;
  margin: 0 auto 56px;
  max-width: 420px;
}

.device-pc {
  display: block;
  background-color: var(--color-text);
  border-radius: 10px;
  padding: 10px;
}

.device-pc__screen {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 16 / 10;
  background-color: #fff;
}

.device-pc__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-pc__stand {
  display: block;
  width: 18%;
  height: 26px;
  margin: 0 auto;
  background-color: var(--color-text);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}

.device-sp {
  display: block;
  position: absolute;
  right: -8%;
  bottom: -32px;
  width: 32%;
  background-color: var(--color-text);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(58, 53, 48, 0.25);
}

.device-sp__screen {
  display: block;
  overflow: hidden;
  border-radius: 13px;
  aspect-ratio: 9 / 19.5;
  background-color: #fff;
}

.device-sp__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.work-card__title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.work-card__text {
  max-width: 480px;
  margin: 0 auto 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
}

.work-card__link {
  display: inline-block;
  font-size: 14px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.work-card__link:hover {
  opacity: 0.6;
}

/* ===== Flow ===== */
.ws-flow__note {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 2;
}

.ws-flow__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: flow;
}

.ws-flow__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 185, 154, 0.4);
}

.ws-flow__item:first-child {
  border-top: 1px solid rgba(201, 185, 154, 0.4);
}

.ws-flow__num {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--color-accent);
  line-height: 1;
  min-width: 32px;
  text-align: center;
  padding-top: 4px;
}

.ws-flow__content h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ws-flow__content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
}

.ws-flow__period {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-light);
  margin-top: 32px;
  letter-spacing: 0.08em;
}

.ws-flow__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Price ===== */
.ws-price__lead {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text-light);
}

.ws-price__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 48px;
}

.ws-price__main {
  background-color: var(--color-bg-alt);
  padding: 40px 36px;
}

.ws-price__plan-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.ws-price__amount {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.ws-price__note {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.ws-price__includes {
  border-top: 1px solid var(--color-accent);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws-price__includes li {
  font-size: 13px;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.ws-price__includes li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 11px;
}

.ws-price__option-heading {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.ws-price__option-heading span {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-light);
  margin-left: 8px;
}

.ws-price__option-note {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.ws-price__option-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ws-price__option-list li h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.ws-price__option-list li h4::before {
  content: '🟢';
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 2px;
}

.ws-price__option-list li p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-light);
  padding-left: 16px;
}

.ws-price__cta {
  text-align: center;
}

/* ===== Examples ===== */
.ws-examples__note {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 2;
}

.work-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background-color: var(--color-bg);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

/* ===== Message ===== */
.ws-message__body {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
  text-align: center;
}

.ws-message__lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ws-hero {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height) + 48px) 24px 72px;
    min-height: 100svh;
  }

  .ws-hero__content {
    position: relative;
    z-index: 1;
    background-color: rgba(250, 247, 242, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 32px 24px;
  }

  .ws-hero__catch {
    font-size: 20px;
  }

.ws-hero__sub {
  font-size: 15px;
}

  .ws-hero__image {
    position: absolute;
    inset: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .ws-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .ws-hero__scroll {
    bottom: 20px;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(250, 247, 242, 0.9);
  }

.ws-about__lead {
  font-size: 18px;
  text-align: left;
}

.ws-about__sub {
  text-align: left;
  font-size: 14px;
}


  .ws-why__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

.ws-works__note {
  font-size: 14px;
  text-align: left;
}

.ws-examples__note {
  font-size: 14px;
  text-align: left;
}

.ws-works__grid {
  grid-template-columns: 1fr;
  gap: 64px;
}

.device-sp {
  right: -4%;
  bottom: -24px;
  width: 34%;
}

.ws-flow__note {
  font-size: 18px;
  text-align: left;
}

.ws-price__lead {
  font-size: 18px;
  text-align: left;
}

.ws-price__note {
  font-size: 14px;
}

  .ws-price__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ws-price__main {
    padding: 32px 24px;
  }

  .ws-message__lead {
  font-size: 18px;
}

.ws-message__body {
  text-align: left;
}
}
