@charset "UTF-8";
/* media query
------------------------------------------ */
/* display
------------------------------------------ */
.is-show-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-show-pc {
    display: none;
  }
}

.is-show-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-show-sp {
    display: block;
  }
}

/* function
------------------------------------------ */
.FU251105catalogaw1st {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 750; /*SP共通デザイン幅*/
  --sp-artboard-width: 700; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: calc(100 * var(--variable) * var(--ratio));
  /* product
  ------------------------------------------ */
  /* all
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .FU251105catalogaw1st {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .FU251105catalogaw1st {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .FU251105catalogaw1st {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.FU251105catalogaw1st img {
  width: 100%;
  height: auto;
}
.FU251105catalogaw1st * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.FU251105catalogaw1st .product-photo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.FU251105catalogaw1st .product-photo-link a {
  display: block;
  width: 50%;
  height: 100%;
}
.FU251105catalogaw1st .credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
.FU251105catalogaw1st .credit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: calc(8 * var(--formula));
}
.FU251105catalogaw1st .credit-header-02 {
  margin-top: calc(28 * var(--formula));
}
.FU251105catalogaw1st .credit-txt-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(12 * var(--formula));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.FU251105catalogaw1st .credit-txt-cont a {
  font-family: "maxular", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: #ff6e98;
}
.FU251105catalogaw1st .credit-txt-small {
  font-size: calc(13 * var(--formula));
}
.FU251105catalogaw1st .credit-label {
  display: inline-block;
  position: relative;
  font-family: "maxular", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(18 * var(--formula));
  line-height: 1.375;
  color: #ff6e98;
}
.FU251105catalogaw1st .credit-label::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ff6e98;
  bottom: calc(-1 * var(--formula));
  left: calc(0 * var(--formula));
}
.FU251105catalogaw1st .credit-number {
  font-family: "maxular", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(17 * var(--formula));
  font-weight: 300;
  color: #ff6e98;
  line-height: 1.45588235;
}
.FU251105catalogaw1st .swiper-button-prev {
  background-image: url("../img/prev.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: calc(15 * var(--formula));
  height: calc(30 * var(--formula));
  top: 53%;
  right: auto;
  left: calc(27 * var(--formula));
  cursor: pointer;
}
.FU251105catalogaw1st .swiper-button-prev:after {
  content: "";
}
.FU251105catalogaw1st .swiper-button-next {
  background-image: url("../img/next.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: calc(15 * var(--formula));
  height: calc(30 * var(--formula));
  top: 53%;
  left: auto;
  right: calc(27 * var(--formula));
  cursor: pointer;
}
.FU251105catalogaw1st .swiper-button-next:after {
  content: "";
}
.FU251105catalogaw1st .js-fade-in {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.FU251105catalogaw1st .js-fade-in.is-active {
  opacity: 1;
}
.FU251105catalogaw1st::after {
  position: absolute;
  content: "";
  width: calc(167 * var(--formula_pc));
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(40%, rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.15)), color-stop(60%, rgba(0, 0, 0, 0.05)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .FU251105catalogaw1st::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .FU251105catalogaw1st {
    display: block;
  }
}
.FU251105catalogaw1st .left {
  width: 50%;
}
@media (max-width: 767px) {
  .FU251105catalogaw1st .left {
    width: calc(750 * var(--variable) * var(--ratio));
    margin: 0 auto;
  }
}
.FU251105catalogaw1st .right {
  position: sticky;
  top: 14.6rem;
  width: 50%;
  height: calc(100vh - 14.6rem);
}
@media (max-width: 767px) {
  .FU251105catalogaw1st .right {
    display: none;
  }
}
.FU251105catalogaw1st .right-top {
  margin-top: calc(80 * var(--formula_pc));
  margin-left: calc(84 * var(--formula_pc));
}
.FU251105catalogaw1st .right-logo {
  width: calc(222 * var(--formula_pc));
}
.FU251105catalogaw1st .right-all {
  margin-top: calc(36 * var(--formula_pc));
  display: block;
  width: calc(241 * var(--formula_pc));
}
.FU251105catalogaw1st .right-bottom {
  position: absolute;
  bottom: calc(78 * var(--formula_pc));
  left: calc(84 * var(--formula_pc));
  width: calc(219 * var(--formula_pc));
}
.FU251105catalogaw1st .lp-cont {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media (max-width: 767px) {
  .FU251105catalogaw1st .lp-cont {
    width: calc(750 * var(--variable) * var(--ratio));
    margin: 0 auto 0;
  }
}
.FU251105catalogaw1st .mv {
  position: sticky;
  top: 13.7rem;
  display: block;
}
@media (max-width: 767px) {
  .FU251105catalogaw1st .mv {
    width: calc(750 * var(--variable) * var(--ratio));
    margin: 0 auto 0;
  }
}
.FU251105catalogaw1st .mv a {
  display: block;
  position: relative;
  z-index: 0;
}
.FU251105catalogaw1st .mv-logo {
  position: absolute;
  top: calc(50 * var(--formula));
  right: 0;
  left: 0;
  margin: auto;
  width: calc(284 * var(--formula));
  z-index: 1;
  opacity: 0;
}
.FU251105catalogaw1st .mv-img {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.FU251105catalogaw1st .hero {
  padding: calc(80 * var(--formula)) 0 calc(24 * var(--formula));
  background-color: #ff6e98;
}
.FU251105catalogaw1st .hero-ttl {
  width: calc(435 * var(--formula));
  margin: 0 auto;
}
.FU251105catalogaw1st .hero-img-01 {
  position: relative;
  left: calc(4 * var(--formula));
  width: calc(562 * var(--formula));
  margin: calc(54 * var(--formula)) auto 0;
}
.FU251105catalogaw1st .hero-img-02 {
  padding: 0 calc(25 * var(--formula));
  margin: calc(206 * var(--formula)) auto 0;
}
.FU251105catalogaw1st .product-photo-01 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-01-credit {
  position: absolute;
  width: 100%;
  padding: 0 calc(25 * var(--formula));
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-02 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-02-wrapper {
  padding: calc(100 * var(--formula)) calc(50 * var(--formula)) calc(100 * var(--formula));
  position: relative;
}
.FU251105catalogaw1st .product-photo-02-credit {
  display: block;
  margin-top: calc(28 * var(--formula));
}
.FU251105catalogaw1st .product-photo-02-credit .credit-header:nth-of-type(2) {
  margin-top: calc(30 * var(--formula));
}
.FU251105catalogaw1st .product-photo-02-credit .credit-txt {
  white-space: nowrap;
  margin-top: calc(8 * var(--formula));
}
.FU251105catalogaw1st .product-photo-03 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-03-credit {
  position: absolute;
  width: 100%;
  padding: 0 calc(25 * var(--formula));
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-04-wrapper {
  background-color: #ff6e98;
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-05 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-05-credit {
  position: absolute;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  padding: 0 calc(25 * var(--formula));
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-06-wrapper {
  padding: calc(100 * var(--formula)) 0 calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-06-slider {
  width: calc(630 * var(--formula));
  margin: 0 auto;
  overflow: visible;
}
.FU251105catalogaw1st .product-photo-06-credit {
  width: 100%;
  width: calc(666 * var(--formula));
  margin-top: calc(22 * var(--formula));
  padding: 0 calc(24 * var(--formula)) 0 calc(60 * var(--formula));
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.FU251105catalogaw1st .product-photo-06-credit .credit-txt-cont {
  gap: calc(20 * var(--formula));
  white-space: nowrap;
}
.FU251105catalogaw1st .product-photo-06-credit .credit-number {
  white-space: nowrap;
}
.FU251105catalogaw1st .product-photo-07-wrapper {
  position: relative;
}
.FU251105catalogaw1st .product-photo-07-credit {
  width: 100%;
  position: absolute;
  padding: 0 calc(25 * var(--formula));
  bottom: calc(28 * var(--formula));
}
.FU251105catalogaw1st .product-photo-08-wrapper {
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(96 * var(--formula));
}
.FU251105catalogaw1st .product-photo-08-credit {
  margin-top: calc(20 * var(--formula));
}
.FU251105catalogaw1st .product-photo-09-slider .swiper-slide {
  position: relative;
}
.FU251105catalogaw1st .product-photo-09-credit {
  display: block;
  margin-left: calc(50 * var(--formula));
  margin-top: calc(26 * var(--formula));
}
.FU251105catalogaw1st .product-photo-09-credit .credit-header-02 {
  margin-top: calc(22 * var(--formula));
}
.FU251105catalogaw1st .product-photo-09-credit .credit-txt {
  margin-top: calc(12 * var(--formula));
}
.FU251105catalogaw1st .product-photo-09-credit .credit-txt-cont-02 {
  gap: calc(20 * var(--formula));
}
.FU251105catalogaw1st .product-photo-10-wrapper {
  position: relative;
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-10-credit {
  display: inline-block;
  position: absolute;
  right: calc(22 * var(--formula));
  bottom: calc(96 * var(--formula));
}
.FU251105catalogaw1st .product-photo-11-wrapper {
  position: relative;
}
.FU251105catalogaw1st .product-photo-11-credit {
  position: absolute;
  left: calc(25 * var(--formula));
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-11-credit .credit-txt-cont {
  gap: calc(18 * var(--formula));
}
.FU251105catalogaw1st .product-photo-12 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-12-credit {
  display: block;
  margin-top: calc(28 * var(--formula));
  margin-left: calc(50 * var(--formula));
}
.FU251105catalogaw1st .product-photo-12-credit .credit-txt-cont {
  gap: calc(18 * var(--formula));
}
.FU251105catalogaw1st .product-photo-12-credit .credit-header-02 {
  margin-top: calc(28 * var(--formula));
}
.FU251105catalogaw1st .product-photo-12-credit .credit-txt {
  margin-top: calc(8 * var(--formula));
}
.FU251105catalogaw1st .product-photo-13-wrapper {
  margin-top: calc(100 * var(--formula));
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(76 * var(--formula));
  background-color: #ff6e98;
}
.FU251105catalogaw1st .product-photo-13-credit {
  margin-top: calc(23 * var(--formula));
}
.FU251105catalogaw1st .product-photo-13-credit a {
  color: #000;
}
.FU251105catalogaw1st .product-photo-14 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-14-credit {
  width: 100%;
  padding: 0 calc(25 * var(--formula));
  position: absolute;
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-14-credit .credit-txt {
  white-space: nowrap;
}
.FU251105catalogaw1st .product-photo-14-credit .credit-number {
  white-space: nowrap;
}
.FU251105catalogaw1st .product-photo-15-wrapper {
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-15-credit {
  margin-top: calc(20 * var(--formula));
}
.FU251105catalogaw1st .product-photo-16 {
  position: relative;
}
.FU251105catalogaw1st .product-photo-16-wrapper {
  position: relative;
}
.FU251105catalogaw1st .product-photo-16-credit {
  position: absolute;
  width: 100%;
  padding: 0 calc(25 * var(--formula));
  bottom: calc(25 * var(--formula));
}
.FU251105catalogaw1st .product-photo-17 {
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(120 * var(--formula));
}
.FU251105catalogaw1st .product-photo-17-wrapper {
  position: relative;
}
.FU251105catalogaw1st .product-photo-17-credit {
  position: relative;
  padding: 0 calc(24 * var(--formula)) 0 calc(100 * var(--formula));
  bottom: calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-17-credit .credit-txt-cont {
  gap: calc(19 * var(--formula));
}
.FU251105catalogaw1st .product-photo-18 {
  padding: calc(100 * var(--formula)) calc(100 * var(--formula)) calc(96 * var(--formula));
}
.FU251105catalogaw1st .product-photo-18-wrapper {
  position: relative;
  background-color: #ff6e98;
}
.FU251105catalogaw1st .product-photo-18-credit {
  position: relative;
  bottom: calc(92 * var(--formula));
  margin-top: calc(16 * var(--formula));
  padding: calc(0 * var(--formula)) calc(50 * var(--formula)) 0 calc(100 * var(--formula));
}
.FU251105catalogaw1st .product-photo-18-credit a {
  color: #000;
}
.FU251105catalogaw1st .product-photo-18-credit .credit-number {
  color: #000;
}
.FU251105catalogaw1st .txt-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(1100 * var(--formula));
  background-color: #ff6e98;
}
.FU251105catalogaw1st .txt-area p {
  font-family: "maxular", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(26 * var(--formula));
  line-height: 1.99038462;
  color: #000;
  text-align: center;
}
.FU251105catalogaw1st .all {
  position: relative;
}
.FU251105catalogaw1st .all-link {
  position: absolute;
  top: calc(164 * var(--formula));
  right: 0;
  left: calc(15 * var(--formula));
  margin: auto;
  display: block;
  width: calc(272 * var(--formula));
  z-index: 1;
}
.FU251105catalogaw1st .all-img {
  width: 100%;
}
.FU251105catalogaw1st .lp-footer {
  padding: calc(100 * var(--formula)) 0 calc(100 * var(--formula));
}
.FU251105catalogaw1st .lp-footer-logo {
  width: calc(284 * var(--formula));
  margin: 0 auto;
}