:root{
  --black:#4C4C4D;
  --blue:#1A1A7C;
  --bg:#EFEFEF;
  --white:#ffffff;

  --inner:1100px;

  --bdOuter: 3px;
  --bdInner: 2px;

  --shadow: 0 18px 40px rgba(0,0,0,0.10);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: "Hiragino Kaku Gothic ProN","Yu Gothic",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans JP",sans-serif;
  color:var(--black);
  background:#fff;
  line-height:1.9;
}

/* ---------------------------------------------------------------------------------
  FV
------------------------------------------------------------------------------------ */
.fv{
  width:100%;
}
@media screen and (max-width:757px){
  .fv{
    width:100%;
  }
}

.fv__img{
  display:block;
  width:100%;
  height:auto;
}
@media screen and (max-width:757px){
  .fv__img{
    display: none;
  }
}

.fv__img-sp{
  display:block;
  width:100%;
  height:auto;
}
@media screen and (min-width:758px){
  .fv__img-sp{
    display: none;
  }
}

/* -------------------------------------------------------------------------------------------------
  intro（背景に写真＋右下に薄いロゴっぽい想定）
-------------------------------------------------------------------------------------------------- */
.intro{
  position:relative;
  padding: 70px 0 70px;
  background: url("../img/goods/aoonisui/massage.jpg") center/cover no-repeat;
}
@media screen and (max-width:757px){
  .intro{
    padding: 42px 0 42px;
  }
}

.intro::before{
  content:"";
  position:absolute;
  inset:0;
  /* 上：透明100% → 下：#EFEFEF 100% */
  background: linear-gradient(
    to bottom,
    rgba(239,239,239,0) 0%,
    rgba(239,239,239,0) 55%,
    rgba(239,239,239,1) 100%
  );
}


.intro::after{
    content:"";
  position:absolute;
  right: 40px;
    bottom: 50px;
    width: 380px;
    height: 380px;
  background: url("../img/goods/aoonisui/icon-white.png") center/contain no-repeat;
  pointer-events:none;
  z-index: 3;
}
@media screen and (max-width:757px){
  .intro::after{
    width: 130px;
    height: 130px;
    right: 0;
    left:0;
    margin:auto;
    bottom: 2%;
  }
}

.intro__inner{
  position:relative;
    width: 90%;
    max-width: 1000px;
  margin:0 auto;
  margin-top:50px;
  margin-bottom:50px;
    z-index: 4;
}
@media screen and (max-width:757px){
  .intro__inner{
    width:calc(100% - 30px);
    margin-bottom:120px;
  }
}

.intro__lead{
  margin:0;
  font-weight:600;
  letter-spacing: 0.04em;
  color: var(--blue);
  font-size: 25px;
  line-height: 3;
}
@media screen and (max-width:757px){
  .intro__lead{
    font-size: 16px;
    line-height: 2.5;
  }
}

.intro__lead span{
  font-size: 35px;
  display: block;
  margin-bottom:40px;
}
@media screen and (max-width:757px){
  .intro__lead span{
    font-size: 30px;
    line-height: 1.7;
  }
}


/* -------------------------------------------------------------------------------------------------
  Point 
-------------------------------------------------------------------------------------------------- */
.pointback{
  background: #EFEFEF;
}

.point{
  padding: 28px 0;
}
@media screen and (max-width:757px){
  .point{
    padding: 20px 0;
  }
}

.point__frame{
  position:relative;
  width:90%;
  max-width: 1100px;
  margin:0 auto;
  padding: 100px;
  border: 10px solid #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
  overflow:hidden;
  margin-bottom:50px;
}
@media screen and (max-width:757px){
  .point__frame{
    width:calc(100% - 20px);
    padding: 30px;
    border: 6px solid #fff;  
    margin-bottom:30px;
  }
}

/* 内側の白枠 */
.point__frame::before{
  content:"";
  position:absolute;
  inset: 17px;
  border: 6px solid #fff;
  pointer-events:none;
  z-index: 3;
}
@media screen and (max-width:757px){
  .point__frame::before{
    inset: 10px;
    border: 4px solid #fff;
  }
}

/* 黒っぽいグラデ（青の上に重ねる指定） */
.point__frame::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.00) 20%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.00) 80%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events:none;
}


/* 中身はグラデより前 */
.point__label,
.point__grid,
.support{
  position:relative;
  z-index:1;
}

/* ラベル（左上のPointピル） */
.point__label{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0px;
}
@media screen and (max-width:757px){
  .point__label{
    left: 0;
    top: 0;
    margin-top:20px;
  }
}

.point__icon{
  width: 100px;
  height: 100px;
  padding:15px;
  display:grid;
  place-items:center;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width:757px){
  .point__icon{
    width: 60px;
    height: 60px;
    padding:10px;
  }
}

.point__icon img{
  width: 100%;
  height: auto;
}

.point__iconImg{
  display:block;
  width:100%;
  height:auto;
  animation: iconBounce 1.2s ease-in-out infinite;
}

@keyframes iconBounce{
  0%{
    transform: translateY(0);
  }
  20%{
    transform: translateY(-10px);
  }
  40%{
    transform: translateY(0);
  }
  55%{
    transform: translateY(-6px);
  }
  70%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(0);
  }
}



.point__labelText{
  font-weight:800;
  letter-spacing: 0.02em;
  color: var(--blue);
  font-size: 30px;
  border-radius:0 50px 50px 0;
  background: #fff;
  padding: 0 20px 0 20px;
  margin-left:-10px;
}
@media screen and (max-width:757px){
  .point__labelText{
    font-size: 18px;
  }
}

.point__body{
  position: relative;
  padding-top: 120px; /* ← label分のスペース確保（あとで調整） */
}
@media screen and (max-width:757px){
  .point__body{
    padding-top: 80px;
  }
}


/* レイアウト */
.point__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items:start;
}
@media screen and (max-width:1030px){
  .point__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 左テキスト */
.point__title{
  margin: 2px 0 14px;
  color:#fff;
  font-size: 37px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-top:40px;
  margin-bottom:40px;
}
@media screen and (max-width:757px){
  .point__title{
    font-size: 27px;
    margin-top:20px;
    margin-bottom:20px;
  }
}

.point__text{
  margin:0;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  text-align: justify;
  line-height: 2;
    margin-bottom:40px;

}
@media screen and (max-width:757px){
  .point__text{
    font-size: 16px;
  }
}

/* 右側画像 */
.point__media{
  display:flex;
  justify-content:flex-end;
  position:relative; 
  height:auto; 
}
@media screen and (max-width:757px){
  .point__media{
    justify-content:center;
    margin-bottom:40px;
  }
}

.point__media-2{
  display:flex;
  justify-content:flex-end;
  position:relative; 
   height:600px; 
}
@media screen and (max-width:757px){
  .point__media-2{
    justify-content:center;
    height:420px; 
    margin-bottom:40px;
  }
}

.point__credit{
  position:absolute;
  right:15px;
  bottom:0px;
  font-size:13px;
  color:#fff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.582),
    0 0 6px rgba(0, 0, 0, 0.621);
}

.point__img{
  height:600px;
  width:auto;
  object-fit: contain;
  flex-shrink:0;
}
@media screen and (max-width:1030px){
  .point__img{
    width:100%;
    height:400px;
  }
}
@media screen and (max-width:757px){
  .point__img{
    width:100%;
    height:300px;
  }
}

.point__img-2 {
    height: 600px;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
@media screen and (max-width:1030px){
  .point__img-2{
    width:100%;
    height:350px;
  }
}
@media screen and (max-width:757px){
  .point__img-2{
    width:100%;
    height:250px;
  }
}

.point__img-3 {
  position:absolute;  
  top:0;
  left:0;
    height: 290px;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
@media screen and (max-width:757px){
  .point__img-3{
    width:100%;
    height:200px;
  }
}
.point__img-3:nth-child(2){
  z-index:2;
  top:310px;
}
@media screen and (max-width:757px){
 .point__img-3:nth-child(2){
    top:210px;
  }
}

.point__img--bottle{
  width: 100%;
}


/* 写真フレーム（point02/04の写真の枠） */
.point__photoFrame{
  width: 420px;
  border: 2px solid rgba(255,255,255,0.85);
  background:#fff;
  padding: 8px;
}
@media screen and (max-width:757px){
  .point__photoFrame{
    width: 100%;
  }
}

.point__photoFrame--small{
  width: 420px;
}
@media screen and (max-width:757px){
  .point__photoFrame--small{
    width: 100%;
  }
}

/* 白パネル（「試飲の様子の写真」など） */
.point__whitePanel{
  width: 420px;
  height: 360px;
  background:#fff;
  border: 2px solid rgba(255,255,255,0.85);
  display:grid;
  place-items:center;
}
@media screen and (max-width:757px){
  .point__whitePanel{
    width: 100%;
    height: 240px;
  }
}

.point__whitePanel--small{
  width: 420px;
  height: 240px;
  margin-top: 18px;
}
@media screen and (max-width:757px){
  .point__whitePanel--small{
    width: 100%;
    height: 200px;
    margin-top: 12px;
  }
}

.point__whiteNote{
  margin:0;
  color: var(--blue);
  font-weight:700;
  letter-spacing: 0.02em;
}
@media screen and (max-width:757px){
  .point__whiteNote{
    font-size: 14px;
  }
}

.point__stack{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}
@media screen and (max-width:757px){
  .point__stack{
    align-items:stretch;
  }
}

/* -------------------------------------------------------------------------------------------------
  support（point03下の大きい金額バッジ）
-------------------------------------------------------------------------------------------------- */
.support{
  margin-top: 70px;
  background: linear-gradient(90deg, #959595 0%, #efefef 30%, #bbbaba 50%, #efefef 80%, #959595 100%);
  border-radius: 30px;
  padding: 30px;
  text-align:center;
}
@media screen and (max-width:757px){
  .support{
    margin-top: 0px;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 20px 18px;
  }
}

.support__title{
  margin:0;
  color: var(--blue);
  font-weight:800;
  font-size: 35px;
  line-height: 1.5;
}
@media screen and (max-width:1030px){
  .support__title{
    font-size: 25px;
  }
}
@media screen and (max-width:757px){
  .support__title{
    font-size: 16px;
  }
}

.support__sub{
  margin: 0;
  color: var(--blue);
  font-weight:700;
  font-size: 16px;
}
@media screen and (max-width:757px){
  .support__sub{
    font-size: 12px;
  }
}

.support__price{
  margin:0;
  color: var(--blue);
  font-weight:900;
  font-size: 70px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width:1030px){
  .support__price{
    font-size: 50px;
  }
}
@media screen and (max-width:757px){
  .support__price{
    font-size: 30px;
  }
}

/* ----------------------------------------------------------------------------------------------------
  ボタン
----------------------------------------------------------------------------------------------------- */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height: 54px;
  width:380px;
  padding:15px;
  border-radius: 10px;
  text-decoration:none;
  font-size: 18px;
  font-weight:800;
  letter-spacing: 0.04em;
  transition: transform .15s ease, opacity .15s ease;
  box-shadow:
  0 10px 25px rgba(0,0,0,0.30),
  0 2px 6px rgba(0,0,0,0.15);
}
@media screen and (max-width:1030px){
  .btn{
    margin-bottom:20px;
  }
}
@media screen and (max-width:757px){
  .btn{
    width:100%;
    margin-bottom:20px;
  }
}

.btn:hover{
  transform: translateY(-4px);
  opacity: 0.9;
}
@media screen and (max-width:757px){
  .btn:hover{
    transform:none;
  }
}

.btn--ghost{
  margin-top: 18px;
  background: linear-gradient(90deg,#a9a8a8 0%,#efefef 55%,#a9a8a8 100%);
  color: var(--blue);
}
@media screen and (max-width:757px){
  .btn--ghost{
    margin-top: 14px;
    width: 100%;
  }
}

.btn--primary{
  background: #1A1A7C;
  color: #fff;
  font-weight: normal;
}
@media screen and (max-width:757px){
  .btn--primary{
    width: 100%;
  }
}

/* -------------------------------------------------------------------------------------------------
  中間ロゴ
-------------------------------------------------------------------------------------------------- */
.midLogo{
  padding: 46px 0 10px;
  text-align:center;
  background: #EFEFEF;
}
@media screen and (max-width:757px){
  .midLogo{
    padding: 10px 0 10px;
  }
}

.midLogo__inner{
  width:min(var(--inner), calc(100% - 80px));
  margin:0 auto;
  margin-bottom:100px;
}
@media screen and (max-width:757px){
  .midLogo__inner{
    width:calc(100% - 30px);
    margin-bottom:50px;
  }
}

.midLogo__catch{
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 35px;
  font-weight:800;
  letter-spacing: 0.12em;
  margin-bottom:50px;
}
@media screen and (max-width:757px){
  .midLogo__catch{
    margin: 0 0 14px;
    font-size: 20px;
  }
}

.midLogo__mark{
  display:flex;
  justify-content:center;
}
@media screen and (max-width:757px){
  .midLogo__mark{
    justify-content:center;
  }
}

.midLogo__img{
  height: 530px;
  width:auto;
  opacity: 0.95;
}
@media screen and (max-width:757px){
  .midLogo__img{
    height: 300px;
  }
}

/* -------------------------------------------------------------------------------------------------
  CTA
-------------------------------------------------------------------------------------------------- */
.cta{
  padding: 100px 0 140px;
  background: var(--blue);
  position:relative;
  overflow:hidden;
}
@media screen and (max-width:757px){
  .cta{
    padding: 50px 0 80px;
  }
}

.cta::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.00) 20%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.00) 80%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events:none;
}


.cta__inner{
  position:relative;
  z-index:1;
  width:min(var(--inner), calc(100% - 80px));
  margin:0 auto;
  text-align:center;
}
@media screen and (max-width:757px){
  .cta__inner{
    width:calc(100% - 30px);
  }
}

.cta__lead{
  margin:0 0 50px;
  color:#fff;
  font-weight:normal;
  letter-spacing: 0.06em;
  font-size: 28px;
}
@media screen and (max-width:757px){
  .cta__lead{
    font-size: 15px;
    letter-spacing: 0;
    margin:0 0 30px;
  }
}

.ctaCard{
  width: 540px;
  margin: 0 auto;
  background:#fff;
  padding: 30px 34px 50px;
  box-shadow: var(--shadow);
}
@media screen and (max-width:757px){
  .ctaCard{
    width: 100%;
    padding: 22px 18px 18px;
  }
}

.ctaCard__img{
  display:block;
  width: 150px;
  margin: 0 auto;
  height:auto;
}
@media screen and (max-width:757px){
  .ctaCard__img{
    width: 100px;
    margin: 0 auto 12px;
  }
}

.ctaCard__name{
  margin: 0 0 18px;
  color: var(--black);
  font-weight:800;
  letter-spacing: 0.05em;
  font-size: 25px;
}
@media screen and (max-width:757px){
  .ctaCard__name{
    margin: 0 0 14px;
    font-size: 16px;
  }
}

/* -----------------------
  point01〜04：左からヒュンッ（初期）
------------------------ */
.js-reveal{
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.2,1);
}
@media screen and (max-width:757px){
  .js-reveal{
    transform: translateX(-18px);
  }
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width:757px){
  .js-reveal.is-in{
    transform: translateX(0);
  }
}



/* -----------------------
  モーダル
------------------------ */

.videoModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:9999;
}

.videoModal.is-active{
  opacity:1;
  visibility:visible;
}

.videoModal__content{
  position:relative;
  width:90%;
  max-width:1200px;
}

.videoModal video{
  width:100%;
  height:auto;
  display:block;
}

.videoModal__close{
  position:absolute;
  top:-40px;
  right:0;
  font-size:30px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

.js-videoBtn{
  cursor: pointer;
}

.videoCredit{
  position:absolute;
  right:10px;
  bottom:10px;
  font-size:14px;
  color:#fff;
  padding:3px 6px;
  line-height:1;
    text-shadow:
    0 0 4px rgba(0,0,0,0.9),
    0 0 8px rgba(0,0,0,0.7),
    0 0 12px rgba(0,0,0,0.6);
}


/* -----------------------
CM動画
------------------------ */
.cm{
  padding-top:50px;
  padding-bottom:100px;
  background:#EFEFEF;
}
@media screen and (max-width:757px){
  .cm{
    padding:60px 0;
  }
}

.cm__inner{
  width:90%;
  max-width:1100px;
  margin:0 auto;
}

.cm__videoWrap{
  position:relative;
  width:100%;
  padding-top:56.25%; /* 16:9 */
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.cm__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}