@charset "utf-8";
/*********************************
SPECIAL CONTENTS -- ENGAGE SR3 Late JUNON
last update - 2026.07.17
*********************************/
/* over write. */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.link-btn-container {
  display: block;
}
@media screen and (min-width: 768px) {
  #headerNavi {
      z-index: 5;
  }
  #headerLogo-container {
      z-index: 10;
  }
}
/*-------------------------------
 main
---------------------------------*/
.main-img {
  background: #fff url("/brand/fss/assets/image/product/mh/fss-sav-4405/sp_sav4405-bg.avif") 50% 0% no-repeat;
  line-height: 0;
  text-align: center;
}
.intro-sec {
  background: #000;
}
.intro-cont {
  font-family: 'Noto Serif JP', serif;
  font-size: calc(var(--fs) * 1.8);
  text-align: left;
  color: #fff;
  width: var(--w-md);
  max-width: 100%;
  margin: 0 auto;
  padding: 6rem calc(var(--rs)* 2) 6rem;
}
.intro-tit {
  padding: 0 0 0.5rem 0;
  margin: 0 0 3rem 0;
  border-bottom: 1px solid #373737;
  h3 {
    font-size: calc(var(--fs) * 3.4);
    @media (min-width: 899px) {
      font-size: calc(var(--fs) * 4);
    }
  }
  p {
    font-size: calc(var(--fs) * 2);
    line-height: 1.6;
  }
}
.intro-lead {
  line-height: 2;
  @media (min-width: 899px) {
    line-height: 2.2;
  }
}
.intro-lead + .intro-lead {
  padding-top: 1em;
}
/*-------------------------------
 USP
---------------------------------*/
.usp-sec {
  background: url(/brand/fss/assets/image/product/mh/bg_ptrn_zarazara01.png) 0 0 repeat, linear-gradient(to bottom, #f7f7f7 0%, #f7f7f7 100%);
  padding: calc(var(--rs) * 8) 2vw;
}
.usp-cont {
  width: var(--w-md);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.usp-catch {
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: calc(var(--fs) * 3);
  color: #c90632;
  margin: 0 0 calc(var(--fs) * 2);
}
@media (max-width: 770px) {
  .usp-catch {
    font-size: calc(var(--fs) * 2.8);
  }
}
.info-text {
  padding: 0 0;
  margin: 0 0 5rem;
}
.cont-title {
  font-size: calc(var(--fs) * 3.4);
  font-style: normal;
  text-align: center;
  line-height: 1.3;
  padding: 0 0 calc(var(--rs) * 4);
  @media (min-width: 899px) {
    line-height: 1.5;
  }
  & h3 {
    font-weight: bold;
  }
  & p {
  font-size: 50%;
  color: #606060;
  }
}
.grid-section {

}
.grid-section + .grid-section {
  margin-top: calc(var(--rs) * 6);
}
.grid-container {
  display: grid;
  gap: calc(var(--rs) * 1);
  .grid-item {
    position: relative;
    .usp-num {
      font-size: calc(var(--rs) * 2);
      color: #fff;
      line-height: 1;
      width: calc(var(--rs)* 3);
      height: calc(var(--rs)* 3);
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      padding-top: 0.2rem;
    }
  }
  &.grid-2-columns { 
    grid-template-columns: 1fr 1fr;
  }
  &.grid-3-columns { 
    grid-template-columns: 1fr 1fr 1fr;
  }
  &.grid-full-width {
    grid-template-columns: 1fr;
    .grid-item {
      grid-column: 1 / -1;
    }
  }
  /* 左に縦長、右に縦ふたつ */
  &.grid-complex-layout {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(min-content, max-content);
    .grid-item:nth-child(1) {
      grid-row: 1 / span 2;
      grid-column: 1;
    }
    .grid-item:nth-child(2) {
      grid-row: 1;
      grid-column: 2;
    }
    .grid-item:nth-child(3) {
      grid-row: 2;
      grid-column: 2;
    }
  }
  /* 左に縦ふたつ、右に縦長 */
  &.grid-complex-layout-alt {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(min-content, max-content);
    .grid-item:nth-child(1) {
      grid-row: 1;
      grid-column: 1;
    }
    .grid-item:nth-child(2) {
      grid-row: 2;
      grid-column: 1;
    }
    .grid-item:nth-child(3) {
      grid-row: 1 / span 2;
      grid-column: 2;
      background: #fff;
    }
  }
  /* 上にふたつ、下に横長*/
  &.grid-2-1 {
    grid-template-columns: 1fr 1fr;
    .grid-item:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
    }
    .grid-item:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }
    .grid-item:nth-child(3) {
      grid-column: 1 / -1;
      grid-row: 2;
    }
  }
  /* 上に横長、下にふたつ*/
  &.grid-1-2 {
    grid-template-columns: 1fr 1fr;
    .grid-item:nth-child(1) {
      grid-column: 1 / -1;
      grid-row: 1;
    }
    .grid-item:nth-child(2) {
      grid-column: 1;
      grid-row: 2;
    }
    .grid-item:nth-child(3) {
      grid-column: 2;
      grid-row: 2;
    }
  }
}
.grid-container + .grid-container {
  margin-top: calc(var(--rs) * 1);
}
.usp-txt {
  font-size: calc(var(--fs) * 1.6);
  margin-top: calc(var(--fs) * 1.6);
  padding: 0 0 calc(var(--rs) * 1);
  position: relative;
  .usp-tit {
    font-size: calc(var(--fs) * 1.8);
    font-weight: bold;
    line-height: 1.3;
  }
  .usp-dscr {
    text-align: justify;
    line-height: 1.6;
    padding: 0 0 0 0;
    position: relative;
    z-index: 5;
    + .usp-dscr {
      padding: 0.5rem 0 0 0;
    }
    + .usp-tit {
      padding-top: calc(var(--rs) * 2);
    }
    strong {
      font-size: calc(var(--fs) * 2.2);
      padding: calc(var(--rs) * 2) 0 calc(var(--rs) * 2);
      display: block;
      @media (min-width: 899px) {
        font-size: calc(var(--fs) * 3);
      }
    }
  } 
}
.usp-stand {
  display: block;
  position: relative;
  text-align: center;
  padding: 2rem 0 0;
  @media (min-width: 899px) {

  }
}
/*
.usp-stand {
  width: 80%;
  margin: 0 auto;
  display: grid;
  img {
    grid-area: 1/1;
  }
  @media (max-width: 770px) {
    width: 100%;
  }
}
*/
:is(.usp-cont) .item-spec-note {
  color: var(--c-blk);
  width: min(100%, var(--w-sm));
  margin: 0 auto;
  padding: 0.5rem 0 0;
}
/*
:is(.usp-cont) .spec-container {
  background: rgba(255,255,255,0.8);
}
*/
.usp-dscr--note {
  font-size: calc(var(--fs) * 1.4);
  padding: 0.5rem 0 0;
}
.usp-flag {
  display: flex;
  gap: calc(var(--fs) * 1);
}
.base-img {
  width: min(94%, 78rem);
  margin: 0 auto;
  text-align: center;
}
.spec-container {
  background: rgb(255 255 255 / 65%);
}
/*-------------------------------
 slider
---------------------------------*/
.slider-container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  position: relative;	
  z-index: 10;
}
@media screen and (max-width: 916px) {
  .slider-container {
    width: 100%;
  }
}
/*-------------------------------
 product
---------------------------------*/
.product {
  background: #f7f7f7;
	padding: 3rem 0;
}
.product-img {
  background: #fff url("/brand/fss/assets/image/product/mh/fss-sav-4405/sp_sav4405-inst15-bg.avif") 50% 0% no-repeat;
  line-height: 0;
  text-align: center;
}
/* spec - note */
.item-spec-note {
  margin-top: 1em;
  color: var(--c-gry-dark);
  font-size: calc(var(--fs) * 1.2);
  line-height: 1.3;
  text-align: left;
}
.item-spec__note-list,
.item-spec-note__list {
  padding: 0.2em 0 0.2em 1em;
  margin-right: 1em;
  display: inline-block;
  text-indent: -1em;
}
/*-------------------------------
 mail
---------------------------------*/
.mail-sec {
  padding: calc(var(--fs) * 4) calc(var(--rs) * 2) calc(var(--fs) * 4);
  background: #fff;
}
.main-cont {
  max-width: var(--w-md);
  margin: 0 auto;
}
.heading-category-shoulder {
  font-size: calc(var(--fs) * 1.4);
  color: #999;
  text-align: center;
  margin: -0.5em auto 1rem;
}
.text-lead-page {
  padding: 0 2%;
  margin: 1rem auto;
  line-height: 1.8;
  text-align: center;
}