@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:wght@700&display=swap');

/* ================================================
   CSS Variables
   ================================================ */
:root {
  --primary-color:    #21445B;
  --secondary-color:  #FFF032;
  --accent-blue:      #50BBED;
  --accent-red:       #BE3D3D;
  --bg-section-beige: #FFFCCD;
  --bg-section-blue:  #E0F3FC;
  --main-font-color:  #222222;
  --font-default:     'Noto Sans JP', sans-serif;
  --font-roboto:      'Roboto', sans-serif;
  --svg-icon-blank: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.625 0.5V12.625H0.5V0.5H12.625Z' stroke='black'/%3E%3Cpath d='M15.0001 1.875V15H1.87512' stroke='black'/%3E%3C/svg%3E");
}

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

html {
  font-size: 1rem;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-default);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--main-font-color);
  background: #fff;
  overflow-x: hidden;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

body.is-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.75; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  z-index: 10000;
  transition: top 0.2s;

  &:focus { top: 0; }
}

/* ================================================
   Animations
   ================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-pop {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.anim-pop.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ================================================
   PC Background Layout
   ================================================ */
.l-pc-bg {
  display: none;
}

/* ================================================
   Content Wrapper
   ================================================ */
.l-content-wrap {
  position: relative;
}

.l-content {
  position: relative;
  background: #fff;
}

/* ================================================
   Toggle Menu Button (fixed)
   ================================================ */
.toggle-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  transition: opacity 0.3s, visibility 0.3s;
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 0 0 0 8px;
  padding: 0.625rem 0.75rem 0.5rem;
  cursor: pointer;
  gap: 0;
}

.hamburger__line {
  display: block;
  width: 28px;
  height:2px;
  border-radius: 2px;
  background: var(--primary-color);
  transition: transform 0.4s, opacity 0.3s, width 0.3s;
}
.hamburger__line + .hamburger__line { margin-top: 5px; }

.hamburger__label {
  font-family: var(--font-roboto);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 4px;
}

/* Active state: ✕ */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(25deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-25deg);
}

/* ================================================
   Nav Overlay
   ================================================ */
.nav-wrap {
  position: fixed;
  inset: 0;
  z-index: 190;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  transition: visibility 0.4s, opacity 0.4s;
}

.nav-wrap[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.nav-menu {
  overflow: scroll;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.nav-wrap[aria-hidden="false"] .nav-menu {
  visibility: visible;
  opacity: 1;
}

/* Overlay backdrop */
.nav-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 2rem;
  min-height: 100%;
  overflow: scroll;
  gap: 0;
}

/* nav-list */
.nav-list {
  list-style: none;
  width: 100%;
  margin-bottom: 0.5rem;
}

.nav-list li {
  border-bottom: 1px solid rgba(33, 68, 91, 0.08);
}
.nav-list li:first-child {
  border-top: 1px solid rgba(33, 68, 91, 0.08);
}

.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.75rem;
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--primary-color);
  position: relative;
}

.nav-list a::after {
  content: '';
  display: block;
  width: 16px;
  height: 14px;
  background: url('../images/nav_icon_arrow.svg') no-repeat center / contain;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.nav-list a:hover::after {
  transform: translateX(4px);
}

/* nav-sub */
.nav-sub {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-bottom: 1.25rem;
}

.nav-sub a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--primary-color);
}

.nav-sub li:nth-child(1) a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url('../images/nav_icon_mail.svg') no-repeat center / contain;
  flex-shrink: 0;
}

.nav-sub li:nth-child(2) a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 14px;
  background: url('../images/nav_icon_flow.svg') no-repeat center / contain;
  flex-shrink: 0;
}

/* nav-btn */
.nav-btn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.nav-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: 6px;
  transition: opacity 0.3s;
}
.nav-btn a:hover { opacity: 0.8; }

.nav-btn__apply a {
  background: url('../images/bg-btn-apply.png') center / cover no-repeat;
}

.nav-btn__apply a::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 20px;
  background: url('../images/nav_icon_apply.svg') no-repeat center / contain;
  flex-shrink: 0;
}

.nav-btn__login a {
  background: var(--primary-color);
}

.nav-btn__login a::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url('../images/nav_icon_login.svg') no-repeat center / contain;
  flex-shrink: 0;
}
/* ================================================
   Splash
   ================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;

  &.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  &__logo {
    opacity: 1;
    transition: opacity 0.5s ease;

    &.is-hidden {
      opacity: 0;
    }
  }
}

.splash__logo img {
  width: 165px;
  height: auto;
  aspect-ratio: 220 / 78;
  object-fit: contain;
}

/* ================================================
   Header / KV
   ================================================ */
.l-header {
  position: relative;
  overflow: hidden;
}
.l-header__nav{
  position: relative;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}

.l-header__logo {
  position: relative;
  width: 110px;
  margin: 0 auto;
}

/* fallback when SVG logo not supported */
.l-header__logo img {
  width: 100%;
}

.l-kv {
  position: relative;
  overflow: hidden;
}

.l-kv__img {
  width: 100%;
  display: block;
}

.l-kv__bar {
  height: 60px;
  background: var(--accent-blue);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ================================================
   Section Connect (diagonal transition)
   ================================================ */
.c-sec-connect {
  width: 100%;
  height: 46px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.c-sec-connect::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Color per usage: the triangle shows the PREVIOUS section's color */
.c-sec-connect--kv::after        { background: var(--accent-blue); }
.c-sec-connect--beige::after     { background: var(--bg-section-beige); }
.c-sec-connect--blue::after      { background: var(--bg-section-blue); }

/* ================================================
   Section Title Badge
   ================================================ */
.c-sec-badge {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 24px 24px 24px 0;
  box-shadow: 2px 3px 0 var(--primary-color);
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--primary-color);
  text-align: center;
  white-space: nowrap;
  /* Center + lift into the connect zone */
  margin: -5rem auto 1.5rem;
}

.c-sec-badge--light {
  background: #fcfcfc;
}

.c-sec-badge span.red {
  color: var(--accent-red);
}

/* ================================================
   Numbered Point List
   ================================================ */
.c-point-list {
  list-style: none;
  width: 100%;
}

.c-point-list__divider {
  height: 1px;
  border-bottom: 1px dashed rgb(48,129,163,.3);
  margin: 0 1rem;
}

.c-point-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
  position: relative;
  border-top: 1px dashed var(--accent-blue) ;
  &:last-child{
    border-bottom: 1px dashed var(--accent-blue);
  }
}

.c-point-list__num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  border-radius: 0 30px 30px 0;
  flex-shrink: 0;
  font-family: var(--font-roboto);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  padding-right: 1.2rem;
  margin-left: -1rem;
}

.c-point-list__text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent-blue);
}

/* ================================================
   Section Buttons
   ================================================ */
   .c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: opacity 0.3s;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
  }
  .c-btn:hover {
    opacity: 0.85;
  }
  .c-btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask-image: var(--svg-icon-blank);
    mask-image: var(--svg-icon-blank);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: calc(50% - 8px);
    right: 1rem;
  }
  .c-btn-primary {
    padding: 1.5rem 1rem;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    line-height: 1;
  }
  .c-btn-outline {
    padding: 1rem;
    background: #fff;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
  }

/* ================================================
   Section 1: 下置きウォーターサーバーの利点と盲点
   ================================================ */
.p-sec01 {
  background: var(--bg-section-beige);
  padding-bottom: 5rem;
}

.p-sec01__inner {
  padding: 0 1rem;
}

.p-sec01__highlight {
  position: relative;
  display: block;
  width: fit-content;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 auto;
}

.p-sec01__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: calc(100% + 6px);
  height: 8px;
  background: rgba(255, 240, 50, 1);
  z-index: -1;
}

.p-sec01__intro {
  margin-bottom: 1.5rem;
}

/* Server comparison card */
.p-server-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(112, 92, 38, 0.15);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
}

.p-server-card__header {
  padding: 1rem 1.5rem;
  text-align: center;
}

.p-server-card__header--gray {
  background: #e4e4e4;
}

.p-server-card__header--blue {
  background: var(--accent-blue);
}

.p-server-card__title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.p-server-card__header--gray .p-server-card__title {
  color: var(--main-font-color);
}

.p-server-card__header--blue .p-server-card__title {
  color: #fff;
}

.p-server-card__img {
  margin: 0 auto;
  display: block;
}

.p-server-card__subtitle {
  padding: 1rem 1.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: var(--main-font-color);
}
.p-server-card__img-wrap{
  padding: 0 1rem;
  display: grid;
  gap: 1rem;
}

.p-server-card__img-wrap__comment{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  figure{
    img{
      width: 92px;
      height: 120px;
    }
  }
}
.p-server-card__img-setup {
  display: grid;
  grid-auto-rows: auto;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.p-server-card__img-setup__point {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: -2rem;

  /* figcaption を figure 内に移動したため、figure をグリッドから透過させる */
  & figure {
    display: contents;
  }
}

.p-server-card__img-wrap__comment-text{
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
  background: #F5F5F5;
  padding: .8rem 1rem;
  border-radius: 2rem;
  position: relative;
  &::after{
    content: '';
    display: inline-block;
    width: 15px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6873 7.73013C14.6873 7.73013 11.5952 13.9142 2.42176e-06 10.0492C2.52313e-06 7.73013 2.72376e-06 3.14011 2.86102e-06 -6.42e-07C8.50315 9.27616 14.6873 7.73013 14.6873 7.73013Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -4px;
    bottom: 8px;
  }
}
.p-server-card__img-wrap__comment-text--blue{
  background: var(--bg-section-blue);
  &::after{
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6873 7.73013C14.6873 7.73013 11.5952 13.9142 2.42176e-06 10.0492C2.52313e-06 7.73013 2.72376e-06 3.14011 2.86102e-06 -6.42e-07C8.50315 9.27616 14.6873 7.73013 14.6873 7.73013Z' fill='%23E0F3FC'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    right: -8px;
  }
}

/* ================================================
   Section 2: プレミアムウォーターの特許技術
   ================================================ */
.p-sec02 {
  background: var(--bg-section-blue);
  padding-bottom: 5rem;
}

.p-sec02__intro {
  margin-bottom: 1.5rem;
}

/* Video section */
.p-video {
}
.p-video__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: var(--accent-red);
  border-radius: 8px 8px 0 0;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.p-video__embed{
  iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* ================================================
   Section 3: こんな方に選ばれています
   ================================================ */
.p-sec03 {
  background: var(--bg-section-beige);
  padding-bottom: 5rem;
}

.p-sec03__intro {
  margin-bottom: 1.5rem;
}

/* Merit card */
.p-merit {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 1.5rem;
}

.p-merit:last-child { margin-bottom: 0; }

.p-merit__header {
  background: var(--accent-blue);
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.p-merit__header-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.p-merit__img {
  width: 100%;
  aspect-ratio: 358 / 240;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.p-merit__body {
  padding: 1rem;
}

.p-merit__points {
  padding: 0 1rem 1rem;
}

/* ================================================
   Section 4: ラインナップ
   ================================================ */
.p-sec04 {
  background: var(--bg-section-blue);
  padding-bottom: 3rem;
}

.p-sec04__intro {
  margin-bottom: 1.5rem;
}

/* Product card */
.p-product {
  background: #fff;
  border-radius: 8px;
  margin: 0 0 2rem;
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.p-product__category {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.p-product__name {
  font-family: var(--font-roboto);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: 100%;
  margin-top: -1.4rem;
}

.p-product__colors {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
}

.p-product__color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.p-product__color-img {
  width: 57px;
  object-fit: contain;
}

.p-product__color-img--famfit {
  width: 60px;
}

.p-product__color-label {
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--main-font-color);
  text-align: center;
  line-height: 1.4;
}

/* Logo area */
.p-product__logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.p-product__logo {
  height: 57px;
  object-fit: contain;
}

.p-product__logo--famfit {
  height: 47px;
}

.p-product__cert {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-product__points {
}

.p-product__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 0.25rem;
}

/* Baby plan card */
.p-baby-plan {
  width: 100%;
}

.p-baby-plan__header {
  background: var(--primary-color);
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin: 0 -1rem 0 -1rem;
}

.p-baby-plan__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0 0;
}

.p-baby-plan__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
}

.p-baby-plan__bracket {
  width: 1px;
  height: 44px;
  background: var(--main-font-color);
  flex-shrink: 0;
}
.p-baby-plan__bracket--left  { transform: rotate(-15deg); }
.p-baby-plan__bracket--right { transform: rotate(15deg); }

.p-baby-plan__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--main-font-color);
  text-align: center;
}

.p-baby-plan__img {
  width: 100%;
  max-width: 327px;
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(38, 54, 112, 0.2);
  object-fit: cover;
}

/* ================================================
   Campaign Section
   ================================================ */
.p-campaign {
  background: #fff;
  padding-bottom: 3rem;
}

.p-campaign__inner {
  padding: .5rem 1.25rem 0;
}

.p-campaign__block {
  margin-bottom: 1.5rem;
}

.p-campaign__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.p-campaign__bracket {
  width: 1px;
  height: 26px;
  background: var(--main-font-color);
  flex-shrink: 0;
}
.p-campaign__bracket--left  { transform: rotate(-15deg); }
.p-campaign__bracket--right { transform: rotate(15deg); }

.p-campaign__label-text {
  white-space: nowrap;
}

.p-campaign__img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(38, 54, 112, 0.2);
}

/* ================================================
   Footer
   ================================================ */
.l-footer {
  background: var(--primary-color);
  color: #fff;
}

.l-footer__nav {
  list-style: none;
}

.l-footer__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.l-footer__nav li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.l-footer__nav a {
  display: block;
  padding: 1.125rem 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  transition: background 0.2s;
}
.l-footer__nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.l-footer__copy {
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

/* ================================================
   PC Background Layout (600px+)
   ================================================ */
@media screen and (min-width: 600px) {
  .l-pc-bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url('../images/pc_bg.jpg') center / cover no-repeat;
  }

  .l-pc-bg__logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 165px;
  }
  .l-header__nav{
    display: none;
  }
  .l-kv{
    border-radius: 19px 19px 0 0;
  }
  .l-content-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 14.06vw 12.5vw 0 0;
  }

  .l-content {
    width: 400px;
    border-radius: 19px;
    position: relative;
  }

  .l-content::after {
    content: '';
    position: absolute;
    top: -0.3125rem;
    left: -0.3125rem;
    width: calc(100% + .625rem);
    height: calc(100% + .3125rem);
    background: rgba(255, 255, 255, 1);
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: -1;
    pointer-events: none;
  }

  .toggle-wrap {
    opacity: 0;
    visibility: hidden;
  }
  /* スクロール後にJSで付与するクラス */
  .toggle-wrap.is-show {
    opacity: 1;
    visibility: visible;
  }  
  .toggle-wrap {
    right: 12.5vw;
  }
  .nav-menu{
    right: 12.5vw;
    width: min(100vw, 400px);
  }
}

/* ================================================
   PC only (1025px+): narrow the content card
   ================================================ */
@media screen and (min-width: 1025px) {

}
