/* ============================================
   Pill Page
   ============================================ */

/* --------------------------------------------
   Section heading (shared pattern)
   -------------------------------------------- */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-heading__en {
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-navy);
  font-style: normal;
}

.section-heading__en em {
  color: var(--color-pink);
  font-style: normal;
}

.section-heading__ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

/* --------------------------------------------
   Shared utilities
   -------------------------------------------- */
.pl-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.pl-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.pl-highlight {
  font-weight: 700;
  color: var(--color-pink);
}

/* --------------------------------------------
   PL Divider (dotted pink line)
   -------------------------------------------- */
.pl-divider {
  border: none;
  height: 2px;
  background: url('../images/facility/divider.svg') no-repeat center;
  background-size: 100% 2px;
  margin: 0;
}

/* --------------------------------------------
   PL Feature Box (bullet list)
   -------------------------------------------- */
.pl-feature-box {
  background: var(--color-white);
  border: 1px solid #cce8fe;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-feature-box__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
}

.pl-feature-box__dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-pink);
  border-radius: 50%;
}

.pl-feature-box__line {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #fedbde, #cce8fe);
  margin: 0;
}

/* --------------------------------------------
   PL Section (h2 content block)
   -------------------------------------------- */
.pl-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pl-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --------------------------------------------
   PL Subsection (h3 block)
   -------------------------------------------- */
.pl-subsection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pl-subsection__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

.pl-subsection__diamond {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  transform: rotate(45deg);
}

/* --------------------------------------------
   PL News Button (right-aligned link)
   -------------------------------------------- */
.pl-btn-news {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-pink);
  text-decoration: none;
  transition: opacity 0.3s;
}

.pl-btn-news::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-pink);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' fill='none'%3E%3Cpath d='M1.5 1l5 5-5 5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pl-btn-news:hover {
  opacity: 0.7;
}

/* --------------------------------------------
   PL Menu Buttons (anchor links at top)
   -------------------------------------------- */
.pl-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pl-menu__btn {
  display: block;
  width: 20em;
  padding: 0.3em 0;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
  text-decoration: none;
  position: relative;
  color: #fff;
  transition: opacity 0.1s, background 0.1s, color 0.1s;
}

.pl-menu__btn::after {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.pl-menu__btn--pink {
  background: var(--color-pink);
}

.pl-menu__btn--pink:hover {
  color: var(--color-pink);
  background: var(--color-pink-bg);
}

.pl-menu__btn--light {
  background: #f09eba;
}

.pl-menu__btn--light:hover {
  color: #f09eba;
  background: #fef2f5;
}

/* --------------------------------------------
   PL Intro Section (Contents 1)
   -------------------------------------------- */
.pl-intro {
  padding: 40px 40px 0;
}

.pl-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1040px;
  margin: 0 auto;
}

/* About hero */
.pl-about__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pl-about__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pl-about__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto;
}

.pl-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .pl-intro {
    padding: 60px 120px 0;
  }

  .pl-about__hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .pl-about__text {
    flex: 1;
    min-width: 0;
  }

  .pl-about__photo {
    width: min(400px, 45%);
    flex-shrink: 0;
    margin: 0;
  }
}

/* --------------------------------------------
   PL Benefits Section (Contents 2)
   -------------------------------------------- */
.pl-benefits {
  position: relative;
  padding: 80px 40px 0;
}

.deco-circle-pl-benefits {
  position: absolute;
  top: -28px;
  right: -60px;
  width: 502px;
  height: 748px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-pl-benefits img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-pl-benefits {
    width: 251px;
    height: 374px;
    top: -14px;
    right: -30px;
  }
}

.pl-benefits__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .pl-benefits {
    padding: 100px 120px 0;
  }
}

/* --------------------------------------------
   PL Daily Section (Contents 3)
   -------------------------------------------- */
.pl-daily {
  position: relative;
  padding: 80px 40px 0;
  --section-bg: linear-gradient(to bottom, #fff 0%, var(--color-pink-bg) 40%, #fff 100%);
}

.deco-circle-pl-daily-rt {
  position: absolute;
  top: -30px;
  right: -60px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-pl-daily-rt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.deco-circle-pl-daily-lb {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-pl-daily-lb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-pl-daily-rt {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -40px;
  }

  .deco-circle-pl-daily-lb {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
  }
}

.pl-daily__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1040px;
  margin: 0 auto;
}

.pl-daily__hero-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pl-daily__hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pl-daily__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pl-daily__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto;
}

.pl-daily__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .pl-daily {
    padding: 100px 120px 0;
  }

  .pl-daily__hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .pl-daily__photo {
    width: min(400px, 45%);
    flex-shrink: 0;
    margin: 0;
  }

  .pl-daily__text {
    flex: 1;
    min-width: 0;
  }
}

/* --------------------------------------------
   PL Emergency Section (Contents 4)
   -------------------------------------------- */
.pl-emergency {
  position: relative;
  padding: 80px 40px 80px;
  --section-bg: linear-gradient(to bottom, #fff 0%, var(--color-pink-bg) 60%, #fff 100%);
}

.deco-circle-pl-emergency {
  position: absolute;
  top: -28px;
  right: -60px;
  width: 502px;
  height: 748px;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-pl-emergency img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .deco-circle-pl-emergency {
    width: 251px;
    height: 374px;
    top: -14px;
    right: -30px;
  }
}

.pl-emergency__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .pl-emergency {
    padding: 100px 120px 100px;
  }
}
