/* ========================================
   ZEROJI - 夜に飲む、クロレラ。
   LP Stylesheet v2 - 視認性改善 & 時間ギミック
   ======================================== */

/* --- Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px}
body{
  font-family:'Noto Sans JP','Hiragino Kaku Gothic ProN',sans-serif;
  background:#080c18;
  color:#dde1f0;
  line-height:1.8;
  letter-spacing:.04em;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{background:none;border:none;cursor:pointer;font:inherit;color:inherit}
strong{font-weight:600;color:#f0f2ff}
sub{font-size:.7em}

/* --- Layout --- */
.container{
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding:0 24px;
}

/* --- Responsive helpers --- */
.sp-only{display:none}
.pc-only{display:inline}
@media(max-width:768px){
  .sp-only{display:inline}
  .pc-only{display:none}
}

/* ========================================
   Loader - カウントダウン演出
   ======================================== */
#loader{
  position:fixed;inset:0;z-index:9999;
  background:linear-gradient(160deg,#060a14 0%,#0b1530 50%,#10173a 100%);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .8s ease,visibility .8s ease;
}
#loader.loaded{opacity:0;visibility:hidden;pointer-events:none}
.loader-inner{text-align:center}
.loader-logo{
  display:flex;align-items:baseline;justify-content:center;gap:8px;
  margin-bottom:40px;
  opacity:0;
  animation:loaderLogoIn .8s ease .1s forwards;
}
@keyframes loaderLogoIn{to{opacity:1}}
.loader-logo-time{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-weight:300;
  letter-spacing:.12em;
  color:#a0a8c8;
}
.loader-logo-name{
  font-family:'Cormorant Garamond',serif;
  font-size:.8rem;font-weight:400;
  letter-spacing:.25em;
  color:#a0a8c8;
  text-transform:uppercase;
}

/* ローダー アナログ時計 */
.loader-clock-face{
  width:100px;height:100px;
  border-radius:50%;
  border:1px solid rgba(200,210,240,.12);
  position:relative;
  margin:0 auto 28px;
}
.loader-clock-hand{
  position:absolute;
  bottom:50%;left:50%;
  transform-origin:bottom center;
  border-radius:2px;
}
.loader-hand-hour{
  width:2px;height:24px;
  background:rgba(200,210,240,.5);
  margin-left:-1px;
  animation:loaderHourSpin 3s linear forwards;
}
.loader-hand-minute{
  width:1.5px;height:34px;
  background:rgba(200,210,240,.35);
  margin-left:-.75px;
  animation:loaderMinuteSpin 3s linear forwards;
}
.loader-clock-center{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:5px;height:5px;border-radius:50%;
  background:rgba(120,150,255,.5);
}
@keyframes loaderHourSpin{
  from{transform:rotate(270deg)}to{transform:rotate(360deg)}
}
@keyframes loaderMinuteSpin{
  from{transform:rotate(0deg)}to{transform:rotate(360deg)}
}

.loader-time{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,7vw,4.5rem);
  font-weight:300;
  color:#e8ecf8;
  letter-spacing:.15em;
  display:block;
  margin-bottom:12px;
}
.loader-message{
  font-family:'Noto Serif JP',serif;
  font-size:.85rem;font-weight:300;
  color:rgba(200,210,240,.5);
  letter-spacing:.15em;
  margin-bottom:28px;
  opacity:0;
  animation:loaderMsgIn 1s ease .8s forwards;
}
@keyframes loaderMsgIn{to{opacity:1}}
.loader-bar{
  width:200px;height:1px;
  background:rgba(255,255,255,.08);
  margin:0 auto;overflow:hidden;
  border-radius:1px;
}
.loader-bar-fill{
  width:0;height:100%;
  background:linear-gradient(90deg,#4a6cf7,#8b9ff5);
  animation:loaderFill 2.6s ease-in-out forwards;
}
@keyframes loaderFill{to{width:100%}}

/* ========================================
   Stars Canvas
   ======================================== */
#stars-canvas{
  position:fixed;inset:0;z-index:0;
  pointer-events:none;
  opacity:.7;
}

/* ========================================
   Time Progress Bar (スクロール=時間が進む)
   ======================================== */
.time-progress{
  position:fixed;
  top:0;left:0;right:0;
  height:2px;
  z-index:101;
  background:transparent;
  pointer-events:none;
}
.time-progress-bar{
  height:100%;width:0;
  background:linear-gradient(90deg,rgba(74,108,247,.6),rgba(139,159,245,.8));
  transition:width .1s linear;
  box-shadow:0 0 8px rgba(74,108,247,.4);
}
.time-progress-label{
  position:fixed;
  top:6px;right:20px;
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-weight:300;
  letter-spacing:.1em;
  color:rgba(139,159,245,.7);
  z-index:102;
  opacity:0;
  transition:opacity .4s ease;
}
.time-progress-label.show{opacity:1}

/* ========================================
   Header
   ======================================== */
#header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:16px 0;
  background:transparent;
  transition:background .4s ease,box-shadow .4s ease,padding .3s ease;
}
#header.scrolled{
  background:rgba(8,12,24,.9);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
  padding:10px 0;
}
.header-inner{
  max-width:1200px;margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{display:flex;align-items:baseline;gap:8px}
.logo-time{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-weight:300;
  letter-spacing:.12em;color:#a0a8c8;
}
.logo-name{
  font-family:'Cormorant Garamond',serif;
  font-size:.8rem;font-weight:400;
  letter-spacing:.25em;color:#a0a8c8;
  text-transform:uppercase;
}
.header-right{
  display:flex;align-items:center;gap:20px;
}
.header-live-clock{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-weight:300;
  letter-spacing:.1em;
  color:rgba(139,159,245,.6);
  min-width:50px;text-align:right;
}
.header-cta{
  font-size:.75rem;letter-spacing:.15em;
  color:#dde1f0;
  border:1px solid rgba(200,205,224,.3);
  padding:8px 24px;
  border-radius:100px;
  transition:all .3s ease;
}
.header-cta:hover{
  background:rgba(74,108,247,.2);
  border-color:rgba(74,108,247,.5);
  color:#fff;
}

/* ========================================
   First View
   ======================================== */
.section-fv{
  position:relative;
  min-height:100vh;min-height:100dvh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  padding:120px 24px 80px;
}
.fv-bg-gradient{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%,rgba(20,30,80,.8) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 70%,rgba(40,20,80,.4) 0%,transparent 50%),
    linear-gradient(180deg,#060a14 0%,#0b1530 40%,#0e1628 100%);
  z-index:0;
}
.fv-content{
  position:relative;z-index:2;
  text-align:center;
  max-width:800px;
}

/* FV 背景装飾：時計シルエット */
.fv-clock-silhouette{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:min(70vw,600px);height:min(70vw,600px);
  z-index:1;
  pointer-events:none;
}
.fv-clock-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(139,159,245,.08);
  top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.fv-clock-ring-1{width:100%;height:100%;animation:fvRingPulse 6s ease-in-out infinite}
.fv-clock-ring-2{width:80%;height:80%;border-color:rgba(139,159,245,.06);animation:fvRingPulse 6s ease-in-out 1s infinite}
.fv-clock-ring-3{width:60%;height:60%;border-color:rgba(139,159,245,.04);animation:fvRingPulse 6s ease-in-out 2s infinite}
@keyframes fvRingPulse{
  0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:1;transform:translate(-50%,-50%) scale(1.03)}
}
.fv-clock-tick-group{
  position:absolute;inset:0;
}
.fv-clock-tick{
  position:absolute;
  top:2%;left:50%;
  width:1.5px;height:3%;
  background:rgba(139,159,245,.15);
  transform-origin:0 calc(min(35vw,300px) - 2%);
  transform:translateX(-50%) rotate(calc(var(--ti) * 30deg));
}
.fv-clock-tick:nth-child(3n+1){
  height:4.5%;width:2px;
  background:rgba(139,159,245,.25);
}
.fv-clock-hand-h{
  position:absolute;
  bottom:50%;left:50%;
  width:3px;height:18%;
  background:linear-gradient(to top,rgba(139,159,245,.25),rgba(139,159,245,.05));
  transform-origin:bottom center;
  transform:translateX(-50%) rotate(0deg);
  border-radius:2px;
}
.fv-clock-hand-m{
  position:absolute;
  bottom:50%;left:50%;
  width:2px;height:25%;
  background:linear-gradient(to top,rgba(139,159,245,.2),rgba(139,159,245,.03));
  transform-origin:bottom center;
  transform:translateX(-50%) rotate(0deg);
  border-radius:2px;
}
.fv-clock-center-dot{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(139,159,245,.3);
  box-shadow:0 0 20px rgba(139,159,245,.2);
}

/* FV 背景装飾：光パルス */
.fv-pulse{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border:1px solid rgba(74,108,247,.1);
  pointer-events:none;
  z-index:1;
}
.fv-pulse-1{
  width:min(90vw,750px);height:min(90vw,750px);
  animation:fvPulseExpand 4s ease-out infinite;
}
.fv-pulse-2{
  width:min(90vw,750px);height:min(90vw,750px);
  animation:fvPulseExpand 4s ease-out 1.3s infinite;
}
.fv-pulse-3{
  width:min(90vw,750px);height:min(90vw,750px);
  animation:fvPulseExpand 4s ease-out 2.6s infinite;
}
@keyframes fvPulseExpand{
  0%{transform:translate(-50%,-50%) scale(.4);opacity:.6}
  100%{transform:translate(-50%,-50%) scale(1.2);opacity:0}
}

/* FV 背景装飾：浮遊パーティクル */
.fv-particle{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:1;
}
.fv-particle-1{
  width:4px;height:4px;
  background:rgba(139,159,245,.4);
  top:20%;left:15%;
  animation:fvFloat 8s ease-in-out infinite;
  box-shadow:0 0 8px rgba(139,159,245,.3);
}
.fv-particle-2{
  width:3px;height:3px;
  background:rgba(180,160,255,.35);
  top:30%;right:20%;
  animation:fvFloat 10s ease-in-out 1s infinite;
  box-shadow:0 0 6px rgba(180,160,255,.25);
}
.fv-particle-3{
  width:5px;height:5px;
  background:rgba(100,180,255,.3);
  bottom:25%;left:20%;
  animation:fvFloat 7s ease-in-out 2s infinite;
  box-shadow:0 0 10px rgba(100,180,255,.2);
}
.fv-particle-4{
  width:3px;height:3px;
  background:rgba(139,159,245,.3);
  top:60%;right:12%;
  animation:fvFloat 9s ease-in-out .5s infinite;
  box-shadow:0 0 6px rgba(139,159,245,.2);
}
.fv-particle-5{
  width:4px;height:4px;
  background:rgba(200,180,255,.25);
  top:15%;right:35%;
  animation:fvFloat 11s ease-in-out 3s infinite;
  box-shadow:0 0 8px rgba(200,180,255,.2);
}
.fv-particle-6{
  width:2px;height:2px;
  background:rgba(139,159,245,.5);
  bottom:35%;right:30%;
  animation:fvFloat 6s ease-in-out 1.5s infinite;
  box-shadow:0 0 4px rgba(139,159,245,.3);
}
@keyframes fvFloat{
  0%,100%{transform:translateY(0) translateX(0);opacity:.3}
  25%{transform:translateY(-20px) translateX(10px);opacity:.7}
  50%{transform:translateY(-10px) translateX(-8px);opacity:.5}
  75%{transform:translateY(-25px) translateX(5px);opacity:.8}
}

/* FV 背景装飾：大きな00:00テキスト */
.fv-bg-time{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(8rem,22vw,18rem);
  font-weight:300;
  letter-spacing:.15em;
  color:rgba(139,159,245,.04);
  z-index:1;
  pointer-events:none;
  white-space:nowrap;
  animation:fvBgTimeGlow 5s ease-in-out infinite;
}
@keyframes fvBgTimeGlow{
  0%,100%{opacity:.5}
  50%{opacity:1}
}

/* Countdown */
.fv-countdown{
  margin-bottom:20px;
  opacity:0;
  animation:fadeInUp 1s ease .5s forwards;
}
.fv-countdown-label{
  font-family:'Noto Sans JP',sans-serif;
  font-size:.7rem;font-weight:300;
  color:rgba(139,159,245,.6);
  letter-spacing:.15em;
  display:block;margin-bottom:6px;
}
.fv-countdown-digits{
  display:flex;align-items:center;justify-content:center;gap:2px;
}
.fv-cd-num{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.2rem,2.5vw,1.6rem);
  font-weight:300;
  color:rgba(139,159,245,.8);
  letter-spacing:.08em;
  min-width:2ch;text-align:center;
  background:rgba(74,108,247,.06);
  padding:4px 8px;
  border-radius:4px;
  border:1px solid rgba(74,108,247,.1);
}
.fv-cd-sep{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:300;
  color:rgba(139,159,245,.4);
  animation:colonBlink 1s step-end infinite;
}
@keyframes colonBlink{
  0%,100%{opacity:1}50%{opacity:.2}
}

.fv-brand{margin-bottom:32px}
.fv-logo-time{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:300;letter-spacing:.2em;
  color:rgba(220,225,240,.7);
  display:block;
}
.fv-logo-name{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(.75rem,1.5vw,1rem);
  font-weight:400;letter-spacing:.4em;
  color:rgba(220,225,240,.5);
  text-transform:uppercase;
  display:block;margin-top:4px;
}
.fv-headline{display:block;margin-bottom:28px}
.fv-headline-sub{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(.85rem,1.8vw,1.1rem);
  font-weight:300;
  color:rgba(220,225,240,.75);
  letter-spacing:.12em;
  display:block;margin-bottom:16px;
}
.fv-headline-main{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(2.2rem,6vw,3.8rem);
  font-weight:400;
  line-height:1.35;
  letter-spacing:.08em;
  color:#f0f2ff;
  display:block;
}
.fv-desc{
  font-size:clamp(.85rem,1.4vw,.95rem);
  font-weight:300;
  color:rgba(220,225,240,.78);
  line-height:2;
  margin-bottom:48px;
}
.fv-product{
  position:relative;
  margin-bottom:48px;
  display:inline-block;
}
.fv-product-glow{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:340px;height:340px;
  background:radial-gradient(circle,rgba(74,108,247,.2) 0%,transparent 70%);
  border-radius:50%;
  filter:blur(50px);
  animation:productGlow 4s ease-in-out infinite;
}
@keyframes productGlow{
  0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:.9;transform:translate(-50%,-50%) scale(1.12)}
}
.fv-product-img{
  width:clamp(180px,30vw,260px);
  height:auto;
  filter:drop-shadow(0 20px 60px rgba(20,30,80,.7));
  animation:productFloat 6s ease-in-out infinite;
  position:relative;
}
@keyframes productFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* FV Badges */
.fv-badges{
  display:flex;gap:32px;justify-content:center;flex-wrap:wrap;
  margin-bottom:48px;
}
.fv-badge{
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.badge-icon{
  width:36px;height:36px;
  color:rgba(200,210,240,.45);
}
.fv-badge span{
  font-size:.72rem;letter-spacing:.06em;
  color:rgba(220,225,240,.6);
  text-align:center;line-height:1.5;
}

/* Scroll indicator */
.fv-scroll-indicator{
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.fv-scroll-indicator span{
  font-family:'Cormorant Garamond',serif;
  font-size:.7rem;letter-spacing:.2em;
  color:rgba(220,225,240,.4);
}
.scroll-line{
  width:1px;height:40px;
  background:linear-gradient(180deg,rgba(200,210,240,.35),transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ========================================
   Fade-in & Reveal Animations
   ======================================== */
.fade-in{
  opacity:0;transform:translateY(30px);
  animation:fadeInUp 1s ease forwards;
}
.delay-1{animation-delay:.3s}
.delay-2{animation-delay:.6s}
.delay-3{animation-delay:.9s}
.delay-4{animation-delay:1.2s}

@keyframes fadeInUp{
  to{opacity:1;transform:translateY(0)}
}

.reveal{
  opacity:0;transform:translateY(40px);
  transition:opacity .8s ease,transform .8s ease;
}
.reveal.visible{
  opacity:1;transform:translateY(0);
}
.reveal.delay-1{transition-delay:.15s}
.reveal.delay-2{transition-delay:.3s}
.reveal.delay-3{transition-delay:.45s}

/* ========================================
   Section Labels & Titles
   ======================================== */
.section-label{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(.8rem,1.2vw,.9rem);
  font-weight:400;font-style:italic;
  letter-spacing:.2em;
  color:rgba(139,159,245,.7);
  margin-bottom:16px;
}
.section-title{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(1.5rem,3.5vw,2.4rem);
  font-weight:400;
  line-height:1.5;
  letter-spacing:.06em;
  color:#f0f2ff;
  margin-bottom:24px;
}

/* ========================================
   Brand Story
   ======================================== */
.section-story{
  padding:140px 0;
  position:relative;z-index:1;
}
.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.story-headline{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(1.4rem,3vw,2.2rem);
  font-weight:400;line-height:1.7;
  letter-spacing:.06em;
  color:#f0f2ff;
  margin-bottom:32px;
}
.story-body{
  font-size:.92rem;font-weight:300;
  line-height:2.2;
  color:rgba(220,225,240,.75);
  margin-bottom:20px;
}

/* Analog Clock Visual */
.story-visual{display:flex;align-items:center;justify-content:center}
.story-clock{
  position:relative;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:20px;
}
.analog-face{
  width:220px;height:220px;
  border-radius:50%;
  border:1px solid rgba(200,210,240,.12);
  position:relative;
  background:radial-gradient(circle,rgba(74,108,247,.04) 0%,transparent 70%);
}
.analog-tick{
  position:absolute;
  top:8px;left:50%;
  width:1px;height:12px;
  background:rgba(200,210,240,.2);
  transform-origin:0 102px;
  transform:translateX(-50%) rotate(calc(var(--i) * 30deg));
}
.analog-tick:nth-child(3n+1){
  height:16px;
  width:1.5px;
  background:rgba(200,210,240,.35);
}
.analog-hand{
  position:absolute;
  bottom:50%;left:50%;
  transform-origin:bottom center;
  border-radius:2px;
}
.analog-hour{
  width:2.5px;height:55px;
  background:rgba(220,230,255,.55);
  margin-left:-1.25px;
  transition:transform .3s cubic-bezier(.4,2.08,.55,.44);
}
.analog-minute{
  width:1.5px;height:75px;
  background:rgba(220,230,255,.4);
  margin-left:-.75px;
  transition:transform .3s cubic-bezier(.4,2.08,.55,.44);
}
.analog-second{
  width:.8px;height:80px;
  background:rgba(139,159,245,.5);
  margin-left:-.4px;
  transition:transform .15s linear;
}
.analog-center-dot{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:6px;height:6px;border-radius:50%;
  background:rgba(139,159,245,.7);
  box-shadow:0 0 8px rgba(139,159,245,.4);
}
.clock-digits{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:300;
  letter-spacing:.15em;
  color:rgba(220,230,255,.45);
  position:relative;z-index:1;
}
.clock-glow{
  position:absolute;
  top:40%;left:50%;transform:translate(-50%,-50%);
  width:200px;height:200px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(74,108,247,.12) 0%,transparent 70%);
  filter:blur(30px);
  animation:clockGlow 4s ease-in-out infinite;
}
@keyframes clockGlow{
  0%,100%{opacity:.3;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:.6;transform:translate(-50%,-50%) scale(1.15)}
}

@media(max-width:768px){
  .story-grid{grid-template-columns:1fr;gap:48px;text-align:center}
  .story-clock{margin:0 auto}
  .analog-face{width:180px;height:180px}
  .analog-tick{transform-origin:0 82px}
  .analog-hour{height:45px}
  .analog-minute{height:60px}
  .analog-second{height:65px}
  .clock-digits{font-size:1.5rem}
}

/* ========================================
   Problem
   ======================================== */
.section-problem{
  padding:120px 0;
  position:relative;z-index:1;
  background:linear-gradient(180deg,transparent,rgba(15,10,30,.5),transparent);
}
.problem-intro{text-align:center;margin-bottom:64px}
.problem-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:64px;
}
.problem-item{
  text-align:center;
  padding:40px 20px;
  border:1px solid rgba(200,210,240,.08);
  border-radius:16px;
  background:rgba(255,255,255,.025);
  transition:border-color .3s ease,background .3s ease;
}
.problem-item:hover{
  border-color:rgba(74,108,247,.25);
  background:rgba(74,108,247,.04);
}
.problem-icon{
  width:48px;height:48px;
  margin:0 auto 20px;
  color:rgba(200,210,240,.4);
}
.problem-icon svg{width:100%;height:100%}
.problem-text{
  font-size:.88rem;font-weight:300;
  line-height:1.8;
  color:rgba(220,225,240,.75);
}
.problem-conclusion{
  text-align:center;
  font-family:'Noto Serif JP',serif;
  font-size:clamp(1.1rem,2.5vw,1.5rem);
  font-weight:300;
  line-height:2;
  color:rgba(220,225,240,.82);
}
.problem-conclusion strong{
  color:#f0f2ff;
  font-weight:500;
}
@media(max-width:768px){
  .problem-list{grid-template-columns:1fr 1fr;gap:16px}
  .problem-item{padding:28px 16px}
}
@media(max-width:480px){
  .problem-list{grid-template-columns:1fr}
}

/* ========================================
   Solution
   ======================================== */
.section-solution{
  padding:140px 0;
  position:relative;z-index:1;
  overflow:hidden;
}
.solution-bg-glow{
  position:absolute;
  top:20%;left:50%;
  transform:translateX(-50%);
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(74,108,247,.1) 0%,transparent 60%);
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
}
.solution-intro{text-align:center;margin-bottom:48px}
.solution-sub{
  font-size:clamp(.88rem,1.4vw,.98rem);
  font-weight:300;
  color:rgba(220,225,240,.72);
  line-height:2;
}
.solution-product{
  text-align:center;
  margin-bottom:80px;
  position:relative;
}
.solution-product-glow{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(74,108,247,.12) 0%,transparent 60%);
  border-radius:50%;
  filter:blur(60px);
}
.solution-product-img{
  width:clamp(200px,30vw,300px);
  height:auto;
  position:relative;
  filter:drop-shadow(0 30px 80px rgba(20,30,80,.5));
}

/* Feature Cards */
.solution-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.feature-card{
  padding:40px 32px;
  border:1px solid rgba(200,210,240,.08);
  border-radius:16px;
  background:rgba(255,255,255,.02);
  transition:border-color .4s ease,transform .4s ease,background .4s ease;
}
.feature-card:hover{
  border-color:rgba(74,108,247,.25);
  transform:translateY(-4px);
  background:rgba(74,108,247,.03);
}
.feature-number{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;
  color:rgba(139,159,245,.45);
  margin-bottom:16px;
}
.feature-title{
  font-family:'Noto Serif JP',serif;
  font-size:1.1rem;font-weight:400;
  color:#f0f2ff;
  margin-bottom:16px;
  letter-spacing:.04em;
}
.feature-desc{
  font-size:.88rem;font-weight:300;
  line-height:1.9;
  color:rgba(220,225,240,.68);
}
@media(max-width:768px){
  .solution-features{grid-template-columns:1fr;gap:20px}
  .feature-card{padding:32px 24px}
}

/* ========================================
   Chlorella
   ======================================== */
.section-chlorella{
  padding:140px 0;
  position:relative;z-index:1;
}
.chlorella-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.chlorella-visual{text-align:center}
.chlorella-circle{
  width:280px;height:280px;
  margin:0 auto 20px;
  position:relative;
  display:flex;align-items:center;justify-content:center;
}
.chlorella-cell{position:relative;width:200px;height:200px}
.cell-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(100,200,150,.18);
}
.ring-1{
  inset:0;
  animation:cellRotate 20s linear infinite;
}
.ring-2{
  inset:20px;
  border-color:rgba(100,200,150,.25);
  animation:cellRotate 15s linear infinite reverse;
}
.ring-3{
  inset:40px;
  border-color:rgba(100,200,150,.3);
  animation:cellRotate 10s linear infinite;
}
.cell-core{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:60px;height:60px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(100,200,150,.25) 0%,rgba(100,200,150,.08) 60%,transparent 100%);
  animation:coreGlow 3s ease-in-out infinite;
}
@keyframes cellRotate{
  to{transform:rotate(360deg)}
}
@keyframes coreGlow{
  0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1)}
  50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)}
}
.chlorella-visual-caption{
  font-size:.72rem;
  color:rgba(220,225,240,.35);
  letter-spacing:.08em;
}

.chlorella-body{
  font-size:.92rem;font-weight:300;
  line-height:2;
  color:rgba(220,225,240,.72);
  margin-bottom:40px;
}
.chlorella-stat{
  display:flex;align-items:baseline;gap:12px;
}
.stat-number{
  font-family:'Cormorant Garamond',serif;
  font-size:4rem;font-weight:300;
  color:rgba(139,159,245,.6);
  line-height:1;
}
.stat-label{
  font-size:.82rem;font-weight:300;
  color:rgba(220,225,240,.6);
  line-height:1.6;
}
@media(max-width:768px){
  .chlorella-grid{grid-template-columns:1fr;gap:48px}
  .chlorella-circle{width:200px;height:200px}
  .chlorella-cell{width:160px;height:160px}
}

/* ========================================
   Chikugo Strain
   ======================================== */
.section-chikugo{
  padding:140px 0;
  position:relative;z-index:1;
  background:linear-gradient(180deg,transparent,rgba(15,10,30,.4),transparent);
}
.chikugo-intro{text-align:center;margin-bottom:64px}
.chikugo-sub{
  font-size:clamp(.88rem,1.4vw,.98rem);
  font-weight:300;
  color:rgba(220,225,240,.65);
  line-height:2;
}
.chikugo-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-bottom:80px;
}
.chikugo-point{
  padding:36px 28px;
  border:1px solid rgba(200,210,240,.08);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.chikugo-point-header{
  display:flex;align-items:center;gap:16px;
  margin-bottom:20px;
}
.chikugo-point-num{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;font-weight:300;
  color:rgba(139,159,245,.45);
}
.chikugo-point-header h3{
  font-family:'Noto Serif JP',serif;
  font-size:1.05rem;font-weight:400;
  color:#f0f2ff;
}
.chikugo-point p{
  font-size:.88rem;font-weight:300;
  line-height:1.9;
  color:rgba(220,225,240,.68);
}
@media(max-width:768px){
  .chikugo-points{grid-template-columns:1fr;gap:20px}
}

/* Compare Table */
.chikugo-compare{
  max-width:640px;margin:0 auto;
}
.compare-title{
  font-family:'Noto Serif JP',serif;
  font-size:1.1rem;font-weight:400;
  color:#f0f2ff;
  text-align:center;
  margin-bottom:32px;
}
.compare-table{
  border:1px solid rgba(200,210,240,.1);
  border-radius:16px;
  overflow:hidden;
}
.compare-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
}
.compare-row:not(:last-child){
  border-bottom:1px solid rgba(200,210,240,.07);
}
.compare-cell{
  padding:16px 20px;
  font-size:.88rem;font-weight:300;
  color:rgba(220,225,240,.65);
  text-align:center;
  display:flex;align-items:center;justify-content:center;
}
.compare-cell.label{
  text-align:left;justify-content:flex-start;
  color:rgba(220,225,240,.5);
  font-size:.82rem;
}
.compare-cell.highlight{
  background:rgba(74,108,247,.06);
  color:#dde1f0;
}
.compare-cell.highlight strong{
  color:#8b9ff5;
  font-weight:600;
}
.compare-header .compare-cell{
  padding:20px;
  font-family:'Noto Serif JP',serif;
  font-weight:400;font-size:.88rem;
  color:rgba(220,225,240,.6);
}
.compare-header .compare-cell span{
  font-size:.75rem;font-weight:300;
  display:block;margin-top:2px;
}
.compare-header .highlight{
  color:#f0f2ff;
}

/* ========================================
   Scenes / Timeline
   ======================================== */
.section-scenes{
  padding:140px 0;
  position:relative;z-index:1;
}
.scenes-intro{text-align:center;margin-bottom:64px}
.scenes-timeline{
  position:relative;
  max-width:600px;
  margin:0 auto;
  padding-left:120px;
}
.timeline-line{
  position:absolute;
  left:76px;top:0;bottom:0;
  width:1px;
  background:linear-gradient(180deg,transparent,rgba(139,159,245,.25) 20%,rgba(139,159,245,.25) 80%,transparent);
}
.scene-item{
  position:relative;
  padding:24px 0 24px 32px;
}
.scene-item::before{
  content:'';
  position:absolute;left:-44px;top:32px;
  width:8px;height:8px;
  border-radius:50%;
  border:1.5px solid rgba(139,159,245,.5);
  background:rgba(74,108,247,.2);
  transition:background .3s ease,box-shadow .3s ease;
}
.scene-item.visible::before{
  background:rgba(139,159,245,.4);
  box-shadow:0 0 12px rgba(139,159,245,.3);
}
.scene-time{
  position:absolute;
  left:-110px;top:26px;
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;font-weight:300;
  color:rgba(139,159,245,.6);
  letter-spacing:.08em;
  width:56px;text-align:right;
}
.scene-content h3{
  font-family:'Noto Serif JP',serif;
  font-size:1rem;font-weight:400;
  color:#f0f2ff;
  margin-bottom:8px;
}
.scene-content p{
  font-size:.88rem;font-weight:300;
  color:rgba(220,225,240,.62);
}
@media(max-width:480px){
  .scenes-timeline{padding-left:90px}
  .scene-time{left:-80px;width:50px;font-size:.85rem}
  .timeline-line{left:46px}
  .scene-item::before{left:-34px}
}

/* ========================================
   Nutrients
   ======================================== */
.section-nutrients{
  padding:120px 0;
  position:relative;z-index:1;
  background:linear-gradient(180deg,transparent,rgba(15,10,30,.3),transparent);
}
.nutrients-intro{text-align:center;margin-bottom:48px}
.nutrients-sub{
  font-size:.82rem;font-weight:300;
  color:rgba(220,225,240,.48);
}
/* Nutrient Highlight Cards */
.nutrient-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  max-width:960px;
  margin:0 auto 32px;
}
.nutrient-highlight-card{
  padding:36px 28px;
  border:1px solid rgba(200,210,240,.1);
  border-radius:16px;
  background:rgba(255,255,255,.025);
  text-align:center;
  transition:border-color .4s ease,transform .4s ease;
}
.nutrient-highlight-card:hover{
  border-color:rgba(74,108,247,.25);
  transform:translateY(-4px);
}
.nh-icon{
  width:48px;height:48px;
  margin:0 auto 20px;
  color:rgba(139,159,245,.5);
}
.nh-icon svg{width:100%;height:100%}
.nh-title{
  font-family:'Noto Serif JP',serif;
  font-size:1.1rem;font-weight:400;
  color:#f0f2ff;
  margin-bottom:8px;
}
.nh-amount{
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem;font-weight:400;
  color:rgba(139,159,245,.7);
  margin-left:10px;
  letter-spacing:.04em;
}
.nh-equiv{
  font-family:'Noto Serif JP',serif;
  font-size:1.05rem;font-weight:300;
  color:rgba(220,225,240,.85);
  margin-bottom:12px;
  line-height:1.6;
}
.nh-equiv strong{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:400;
  color:#8b9ff5;
  margin:0 2px;
}
.nh-desc{
  font-size:.82rem;font-weight:300;
  color:rgba(220,225,240,.55);
  line-height:1.7;
  margin-bottom:20px;
}
.nh-bar-wrap{
  text-align:left;
}
.nh-bar-label{
  display:flex;justify-content:space-between;
  font-size:.68rem;font-weight:300;
  color:rgba(220,225,240,.35);
  margin-bottom:6px;
}
.nh-bar-track{
  width:100%;height:8px;
  background:rgba(255,255,255,.06);
  border-radius:4px;
  overflow:hidden;
  margin-bottom:6px;
}
.nh-bar-fill{
  height:100%;width:0;
  background:var(--bar-color,rgba(139,159,245,.7));
  border-radius:4px;
  transition:width 1.5s cubic-bezier(.25,.46,.45,.94);
}
.nh-bar-fill.animated{
  width:calc(var(--bar-percent,0) * 1%);
}
.nh-bar-value{
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;font-weight:400;
  color:rgba(139,159,245,.8);
  letter-spacing:.04em;
}
.nutrients-note{
  text-align:center;
  font-size:.75rem;font-weight:300;
  color:rgba(220,225,240,.38);
  margin-bottom:56px;
  line-height:1.6;
}
@media(max-width:768px){
  .nutrient-highlights{grid-template-columns:1fr;gap:20px}
}

.nutrients-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  max-width:800px;
  margin:0 auto;
}
.nutrient-group{
  padding:32px 24px;
  border:1px solid rgba(200,210,240,.08);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.nutrient-group h3{
  font-family:'Cormorant Garamond',serif;
  font-size:.88rem;font-weight:400;
  color:rgba(139,159,245,.6);
  letter-spacing:.1em;
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(200,210,240,.08);
}
.nutrient-row{
  display:flex;justify-content:space-between;
  padding:8px 0;
  font-size:.82rem;font-weight:300;
  color:rgba(220,225,240,.6);
  border-bottom:1px solid rgba(200,210,240,.04);
}
.nutrient-row:last-child{border-bottom:none}
@media(max-width:768px){
  .nutrients-grid{grid-template-columns:1fr;gap:20px}
}

/* ========================================
   How to Take
   ======================================== */
.section-howto{
  padding:120px 0;
  position:relative;z-index:1;
}
.howto-intro{text-align:center;margin-bottom:64px}
.howto-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  max-width:900px;
  margin:0 auto;
}
.howto-step{
  display:flex;align-items:flex-start;gap:20px;
  padding:32px 24px;
  border:1px solid rgba(200,210,240,.08);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.howto-step-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.2rem;font-weight:300;
  color:rgba(139,159,245,.4);
  line-height:1;
  flex-shrink:0;
}
.howto-step-content h3{
  font-family:'Noto Serif JP',serif;
  font-size:.95rem;font-weight:400;
  color:#f0f2ff;
  margin-bottom:8px;
}
.howto-step-content p{
  font-size:.85rem;font-weight:300;
  line-height:1.8;
  color:rgba(220,225,240,.62);
}
@media(max-width:768px){
  .howto-steps{grid-template-columns:1fr;gap:16px}
}

/* ========================================
   FAQ
   ======================================== */
.section-faq{
  padding:120px 0;
  position:relative;z-index:1;
  background:linear-gradient(180deg,transparent,rgba(15,10,30,.3),transparent);
}
.faq-intro{text-align:center;margin-bottom:48px}
.faq-list{
  max-width:700px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid rgba(200,210,240,.08);
}
.faq-question{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;
  padding:24px 0;
  font-size:.95rem;font-weight:400;
  color:#dde1f0;
  text-align:left;
  transition:color .3s ease;
}
.faq-question:hover{color:#f0f2ff}
.faq-toggle{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;font-weight:300;
  color:rgba(139,159,245,.6);
  transition:transform .3s ease;
  flex-shrink:0;
  margin-left:16px;
}
.faq-item.open .faq-toggle{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease,padding .3s ease;
}
.faq-item.open .faq-answer{
  max-height:300px;
  padding-bottom:24px;
}
.faq-answer p{
  font-size:.88rem;font-weight:300;
  line-height:1.9;
  color:rgba(220,225,240,.68);
}

/* ========================================
   CTA
   ======================================== */
.section-cta{
  padding:140px 0 120px;
  position:relative;z-index:1;
  overflow:hidden;
}
.cta-glow{
  position:absolute;
  top:30%;left:50%;
  transform:translateX(-50%);
  width:800px;height:400px;
  background:radial-gradient(ellipse,rgba(74,108,247,.1) 0%,transparent 60%);
  filter:blur(80px);
  pointer-events:none;
}
.cta-content{text-align:center}
.cta-headline{
  font-family:'Noto Serif JP',serif;
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:400;
  color:#f0f2ff;
  margin-bottom:56px;
  letter-spacing:.08em;
}
.cta-product-wrap{
  display:flex;align-items:center;justify-content:center;
  gap:64px;
  flex-wrap:wrap;
}
.cta-product-img{
  width:clamp(160px,22vw,240px);
  height:auto;
  filter:drop-shadow(0 20px 60px rgba(20,30,80,.5));
}
.cta-product-info{text-align:left}
.cta-product-name{
  font-family:'Noto Serif JP',serif;
  font-size:1.3rem;font-weight:400;
  color:#f0f2ff;
  margin-bottom:8px;
}
.cta-product-spec{
  font-size:.85rem;font-weight:300;
  color:rgba(220,225,240,.55);
  margin-bottom:32px;
}
.cta-pricing{margin-bottom:32px}
.cta-price-regular{
  display:flex;align-items:baseline;gap:12px;
  margin-bottom:12px;
}
.price-label{
  font-size:.78rem;font-weight:300;
  color:rgba(220,225,240,.5);
  letter-spacing:.06em;
}
.price-amount{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:400;
  color:rgba(220,225,240,.45);
  text-decoration:line-through;
  letter-spacing:.04em;
}
.price-tax{font-size:.7rem;font-weight:300}
.cta-price-first{
  display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;
}
.price-label-first{
  font-size:.82rem;font-weight:400;
  color:rgba(139,159,245,.85);
  letter-spacing:.06em;
  background:rgba(74,108,247,.12);
  padding:4px 12px;
  border-radius:4px;
}
.price-amount-first{
  font-family:'Cormorant Garamond',serif;
  font-size:2.2rem;font-weight:400;
  color:#f0f2ff;
  letter-spacing:.04em;
}
.price-discount{
  font-size:.78rem;font-weight:500;
  color:#8b9ff5;
  background:rgba(74,108,247,.14);
  padding:3px 10px;
  border-radius:4px;
  letter-spacing:.04em;
}

/* CTA Button */
.cta-button{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 48px;
  background:linear-gradient(135deg,#4a6cf7,#6b5ce7);
  border-radius:100px;
  font-size:.92rem;font-weight:400;
  color:#fff;
  letter-spacing:.08em;
  transition:all .4s ease;
  box-shadow:0 8px 32px rgba(74,108,247,.3);
}
.cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(74,108,247,.4);
  background:linear-gradient(135deg,#5a7cf7,#7b6cf7);
}
.cta-button svg{width:18px;height:18px}
.cta-note{
  font-size:.78rem;font-weight:300;
  color:rgba(220,225,240,.4);
  margin-top:16px;
}

@media(max-width:768px){
  .cta-product-wrap{flex-direction:column;gap:40px}
  .cta-product-info{text-align:center}
  .cta-price-regular{justify-content:center}
  .cta-price-first{justify-content:center}
}

/* ========================================
   Footer
   ======================================== */
.footer{
  padding:64px 0 100px;
  position:relative;z-index:1;
  border-top:1px solid rgba(200,210,240,.06);
  text-align:center;
}
.footer-brand{margin-bottom:24px}
.footer-logo-time{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:300;
  letter-spacing:.15em;
  color:rgba(220,225,240,.35);
  display:block;
}
.footer-logo-name{
  font-family:'Cormorant Garamond',serif;
  font-size:.7rem;font-weight:400;
  letter-spacing:.3em;
  color:rgba(220,225,240,.25);
  text-transform:uppercase;
}
.footer-info{margin-bottom:20px}
.footer-info p{
  font-size:.78rem;font-weight:300;
  color:rgba(220,225,240,.38);
  line-height:1.8;
}
.footer-links{
  display:flex;gap:24px;justify-content:center;
  margin-bottom:24px;
}
.footer-links a{
  font-size:.75rem;font-weight:300;
  color:rgba(220,225,240,.38);
  border-bottom:1px solid rgba(200,210,240,.12);
  transition:color .3s ease;
}
.footer-links a:hover{color:rgba(220,225,240,.7)}
.footer-copy{
  font-size:.68rem;font-weight:300;
  color:rgba(220,225,240,.22);
  letter-spacing:.06em;
}

/* ========================================
   Mobile Fixed CTA
   ======================================== */
.mobile-fixed-cta{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:99;
  padding:12px 16px;
  background:rgba(8,12,24,.94);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(200,210,240,.08);
  transform:translateY(100%);
  transition:transform .4s ease;
}
.mobile-fixed-cta.visible{transform:translateY(0)}
.mobile-cta-btn{
  display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;
  padding:14px;
  background:linear-gradient(135deg,#4a6cf7,#6b5ce7);
  border-radius:12px;
  color:#fff;
  text-align:center;
  transition:opacity .3s ease;
}
.mobile-cta-btn:active{opacity:.85}
.mobile-cta-price{
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;font-weight:400;
  letter-spacing:.04em;
}
.mobile-cta-text{
  font-size:.85rem;font-weight:400;
  letter-spacing:.1em;
}
@media(max-width:768px){
  .mobile-fixed-cta{display:block}
  .footer{padding-bottom:120px}
}

/* ========================================
   Time Progress Label - スマホ被り防止
   ======================================== */
@media(max-width:768px){
  .time-progress-label{
    display:none;
  }
}

/* ========================================
   Package Section - パッケージ裏面紹介
   ======================================== */
.section-package{
  padding:100px 0;
  background:linear-gradient(180deg,#080c18 0%,#0b1228 50%,#080c18 100%);
}
.package-intro{text-align:center;margin-bottom:56px}
.package-sub{
  margin-top:20px;
  font-size:.92rem;font-weight:300;
  color:rgba(200,205,240,.6);
  line-height:2;
}
.package-visual{
  display:flex;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.package-img-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.package-img-wrap img{
  max-width:320px;
  width:100%;
  border-radius:12px;
  box-shadow:0 8px 40px rgba(0,0,0,.5);
  border:1px solid rgba(200,210,240,.08);
}
.package-img-label{
  font-family:'Cormorant Garamond',serif;
  font-size:.85rem;font-weight:300;
  letter-spacing:.15em;
  color:rgba(139,159,245,.6);
}
@media(max-width:768px){
  .section-package{padding:72px 0}
  .package-img-wrap img{max-width:280px}
}
