@charset "UTF-8";
@font-face {
  font-family: "NotoSerifJP";
  src: url(../font/NotoSerifJP-Medium.otf) format("opentype");
  font-weight: normal;
}
:root {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-en: questa-grande, serif;
  --font-credit: proxima-nova, sans-serif;
  --font-mincho: NotoSerifJP, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 750;
}

* > .main-area {
  font-family: var(--font);
  font-weight: var(--fontweight-medium);
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

/* ▼ -----------可変設定---------- ▼ */
.lp_variable {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 440; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

/* --formulaの補足
  SPの値 × SP→PCの縮小率 × 画面幅に基づく可変値

  例）PC1400px　SP750pxのデザイン
  　　PC共通部分:500px　SP共通部分:750px
  　　PC、SP共通デザインwidth:100pxの場合

  ▼記述 pc表示時に(500/750)を掛ける
  width: calc(100* var(--variable)* var(--ratio));

　▼PC固定幅の計算
　100×0.6666666666666667×1=66.66666666666667px

　▼PC可変の計算
　100×0.6666666666666667×(100vw/1400)=calc(66.66666666666667 * (100vw/1400));

　▼SP可変の計算
　100×1×(100vw/750)=calc(100 * (100vw/750));
*/
/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  .lp_variable {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
    /*--variable: 1px; /* 固定値（可変しない） */
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .lp_variable {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp_variable {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .main-area .pc_only {
    display: none;
  }
  .main-area .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .main-area .pc_only {
    display: block;
  }
  .main-area .sp_only {
    display: none;
  }
}
.js-fadeIn-load {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-fadeIn-load--02 {
  opacity: 0;
  transition: opacity 1s 0.8s;
}

.js-fadeIn-load.js-active, .js-fadeIn-load--02.js-active {
  filter: blur(0);
  opacity: 1;
}

.js-blur-zoom-load {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom-load.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.js-fadeUp-load {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(10px);
}

.js-fadeUp-load.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp, .js-fadeUp-credit {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateY(30px);
}

.js-fadeUp.js-active, .js-fadeUp-credit.js-active {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(-30px);
}

.js-fadeRight {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(30px);
}

.js-fadeLeft.js-active, .js-fadeRight.js-active {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0);
}

.js-fadeIn {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-fadeIn.js-active {
  filter: blur(0);
  opacity: 1;
}

.js-arrow img {
  transform: translateY(-100%);
  transition: transform 0.8s ease-in-out;
}

.js-arrow.js-active img {
  transform: translateY(0);
}

.js-blur-zoom {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

#FR250612washable {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
#FR250612washable .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
#FR250612washable .product__block--mv .mv-inner {
  width: 100%;
}
#FR250612washable .product__block--mv .intro__image {
  width: 100%;
  position: relative;
  z-index: 0;
}
#FR250612washable .product__block--mv .intro__image a img {
  width: 100%;
  height: 100%;
  border-radius: calc(100 * var(--formula));
}
#FR250612washable .product__block--mv .intro__text {
  width: calc(561 * var(--formula));
  height: calc(280 * var(--formula));
  top: auto;
  bottom: calc(85 * var(--formula));
  left: calc(140 * var(--formula));
  position: absolute;
  pointer-events: none;
}
#FR250612washable .product__block--mv .intro__text picture {
  width: 100%;
  height: 100%;
}
#FR250612washable .product__block--mv .intro__text img {
  width: 100%;
  height: auto;
}
#FR250612washable .product__block--intro {
  margin: 0 auto;
  padding: calc(110 * var(--formula)) 0 0 0;
  text-align: center;
  z-index: 1;
  position: relative;
}
#FR250612washable .product__block--intro .intro__lead {
  color: #606060;
  font-family: var(--font);
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}
#FR250612washable .product__block {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#FR250612washable .product__block .product__block-inner a img {
  width: 100%;
  height: auto;
}
#FR250612washable .product__block .product__image-wrap {
  margin: calc(148 * var(--formula)) 0 0 0;
  position: relative;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--01 {
  margin: calc(147 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--02 {
  margin: calc(208 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--03 {
  margin: calc(209 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--04 {
  margin: calc(208 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--05 {
  margin: calc(208 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image-wrap.product__image-wrap--06 {
  margin: calc(148 * var(--formula)) 0 0 0;
}
#FR250612washable .product__block .product__image {
  width: calc(750 * var(--formula));
  margin: calc(150 * var(--formula)) auto 0;
  position: relative;
}
#FR250612washable .product__block .product__image.product__image--01_1 {
  width: calc(670 * var(--formula));
  margin: 0;
}
#FR250612washable .product__block .product__image.product__image--01_2 {
  width: calc(570 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 calc(150 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--01_2 a img {
  border-radius: calc(85 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--02 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#FR250612washable .product__block .product__image.product__image--02 img {
  border-radius: calc(112 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--03_1 {
  width: calc(660 * var(--formula));
  margin: 0 0 0 auto;
}
#FR250612washable .product__block .product__image.product__image--03_1 a img {
  border-radius: calc(100 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--03_2 {
  width: calc(540 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 calc(40 * var(--formula));
  z-index: 2;
}
#FR250612washable .product__block .product__image.product__image--03_2 a img {
  border-radius: calc(80 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--04 {
  width: calc(750 * var(--formula));
  margin: 0 calc(0 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--04 .product__image-inner a {
  width: calc(600 * var(--formula));
  margin: 0 calc(10 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--04 .product__image-inner a img {
  border-radius: calc(85 * var(--formula));
  width: 100%;
  height: auto;
}
#FR250612washable .product__block .product__image.product__image--05_1 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#FR250612washable .product__block .product__image.product__image--05_1 a img {
  border-radius: calc(112 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--05_2 {
  width: calc(540 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 calc(170 * var(--formula));
}
#FR250612washable .product__block .product__image.product__image--05_2 a img {
  border-radius: calc(85 * var(--formula));
}
#FR250612washable .product__block .product__image .product__image-inner {
  position: relative;
}
#FR250612washable .product__block .product__image .slick-dots {
  display: inline-flex;
  gap: calc(20 * var(--formula));
  position: absolute;
  justify-content: flex-start;
  padding: 0 0 0;
  position: absolute;
  bottom: calc(40 * var(--formula));
  left: calc(40 * var(--formula));
}
#FR250612washable .product__block .product__image .slick-dots li {
  width: calc(12 * var(--formula));
  height: calc(12 * var(--formula));
  padding: 0;
  margin: 0;
  border: 1px solid #9cbae5;
  border-radius: 50%;
}
#FR250612washable .product__block .product__image .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
#FR250612washable .product__block .product__image .slick-dots li button::before {
  display: none;
}
#FR250612washable .product__block .product__image .slick-dots li.slick-active button {
  background-color: #9cbae5;
}
#FR250612washable .product__block .product__image a img {
  border-radius: calc(100 * var(--formula));
  overflow: hidden;
}
#FR250612washable .product__block .product__credit {
  width: 100%;
  margin: calc(31 * var(--formula)) auto 0;
  font-family: var(--font-credit);
  font-size: calc(22 * var(--formula));
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.85;
  text-align: left;
  color: #96b0d7;
  position: relative;
  white-space: nowrap;
}
#FR250612washable .product__block .product__credit--04 {
  padding: 0;
}
#FR250612washable .product__block .product__credit.product__credit--left {
  text-align: left;
}
#FR250612washable .product__block .product__credit.product__credit--left a {
  margin: 0 calc(5 * var(--formula)) 0 0;
}
#FR250612washable .product__block .product__credit.product__credit--right {
  text-align: right;
}
#FR250612washable .product__block .product__credit.product__credit--right a {
  margin: 0 0 0 calc(5 * var(--formula));
}
#FR250612washable .product__block .product__credit.product__credit--center {
  text-align: center;
}
#FR250612washable .product__block .product__credit.product__credit--center a {
  margin: 0 calc(2.5 * var(--formula));
}
#FR250612washable .product__block .product__credit a {
  display: inline-block;
  margin: 0 calc(5 * var(--formula)) 0 0;
  color: #96b0d7;
  font-weight: 300;
}
#FR250612washable .product__block--intro {
  position: relative;
  z-index: 0;
}
#FR250612washable .product__block--intro .product__block-inner {
  width: 100%;
}
#FR250612washable .product__block--01 {
  position: relative;
  z-index: 1;
}
#FR250612washable .product__block--02 {
  text-align: center;
  margin: calc(150 * var(--formula)) auto 0;
  position: relative;
  z-index: 2;
}
#FR250612washable .product__block--02 .product__image-wrap {
  margin: calc(127 * var(--formula)) 0 0 0;
}
#FR250612washable .lp__bottom-area {
  padding: 0 0 calc(150 * var(--formula)) 0;
}
#FR250612washable .button__all {
  display: block;
  width: calc(675 * var(--formula));
  height: calc(94 * var(--formula));
  margin: calc(188 * var(--formula)) auto 0;
  border-radius: calc(22 * var(--formula));
  color: #9cbae5;
  font-family: var(--font-en);
  font-size: calc(48 * var(--formula));
  letter-spacing: 0em;
  line-height: calc(94 * var(--formula));
  text-align: center;
  white-space: nowrap;
  position: relative;
  border: 1px solid #9cbae5;
}
#FR250612washable .staff__area {
  margin: calc(162 * var(--formula)) 0 0 calc(0 * var(--formula));
  color: #9cbae5;
  text-align: center;
}
#FR250612washable .staff__area .staff__title {
  font-family: var(--font-credit);
  font-size: calc(22 * var(--formula));
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
}
#FR250612washable .staff__area .staff__name {
  margin: calc(10 * var(--formula)) 0 0 0;
  font-family: var(--font-credit);
  font-size: calc(22 * var(--formula));
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: 0.005em;
}
#FR250612washable .logo__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(207 * var(--formula));
  margin: calc(42 * var(--formula)) auto 0;
}
#FR250612washable .logo__bottom .logo__magazine {
  width: calc(90 * var(--formula));
}
#FR250612washable .logo__bottom .logo__text {
  font-size: calc(23 * var(--formula));
  line-height: 1;
  letter-spacing: 0.02em;
  padding: calc(3 * var(--formula)) 0 0 0;
}

@media only screen and (min-width: 768px) {
  .footer {
    width: 100%;
  }
  .archive {
    border-top: 1px solid #58595b;
  }
  #FR250612washable {
    --header-container-height: 120px;
    display: flex;
    width: 100%;
    padding-bottom: calc(230 * var(--formula));
  }
  #FR250612washable::-webkit-scrollbar {
    display: none;
  }
  #FR250612washable .contents__left {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    height: calc(100vh - (var(--header-container-height, 0px)));
    top: var(--header-container-height, 0);
  }
  #FR250612washable .contents__right {
    width: 50%;
    position: relative;
    overflow: hidden;
  }
  #FR250612washable .product__block--mv {
    width: auto;
    height: calc(100vh - (var(--header-container-height, 0px)));
    overflow: hidden;
  }
  #FR250612washable .product__block--mv .mv-inner {
    width: 100%;
    height: 100%;
  }
  #FR250612washable .product__block--mv .intro__image {
    width: 100%;
    height: 100%;
  }
  #FR250612washable .product__block--mv .intro__image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #FR250612washable .product__block--mv .intro__image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(80 * var(--formula_pc));
  }
  #FR250612washable .product__block--mv .intro__image picture {
    width: 100%;
    height: 100%;
  }
  #FR250612washable .product__block--mv .intro__image .intro__text {
    width: calc(351 * var(--formula_pc));
    height: auto;
    bottom: calc(55 * var(--formula_pc));
    left: auto;
    right: calc(44 * var(--formula_pc));
  }
  #FR250612washable .product__block--mv .intro__image .intro__text img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    z-index: 100;
    position: relative;
  }
  .footer .page-top {
    margin: 0;
    position: absolute;
    top: calc(-120 * (100vw/750));
    right: calc(30 * (100vw/750));
  }
  .contents__right {
    width: calc(750 * var(--formula));
    overflow-x: clip;
  }
}/*# sourceMappingURL=style.css.map */