@charset "UTF-8";
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                Setting
//////////////////////////////////////////////////////////////////////////////////////////////
*/
body {
  background: #e2e2e2;
}
.l-lpcontents {
  --color-text: #555555;
  --color-button: #efefef;
  --color-frame: #979797;
  --color-border: #555555;
  --color-dot-active: #656565;
  --color-dot-default: #c1c0c0;
  --color-white: #fff;
  --color-black: #000;
  --font-bernino: "jaf-bernino-sans";
  --font-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
  --font-en: var(--font-bernino), sans-serif;
  --font-ja: var(--font-yu-gothic), sans-serif;
  --font-main: var(--font-bernino), var(--font-yu-gothic), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .pc_only {
    display: none !important;
  }
}
.l-lpcontents img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                            横並び(グリッド指定)
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="grid_column-1"] {--columns: 1;}
.l-lpcontents [class*="grid_column-2"] {--columns: 2;}
/************** グリッドをPC/SP共通で使用する場合 **************/
.l-lpcontents [class*="c-grid_column"] {
  display: grid;
  grid-template-columns: repeat(var(--columns , 1), 1fr);
  gap: var(--row, 0) var(--column, 0);
}
/************** グリッドをPCのみ使用する場合 **************/
@media screen and (min-width: 768px) {
  .l-lpcontents [class*="c-pc_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
/************** グリッドをSPのみ使用する場合 **************/
@media screen and (max-width: 767px) {
  .l-lpcontents [class*="c-sp_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                全て見るボタン
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="c-btn"] {
  width: 44rem;
  height: 6.2rem;
  margin-inline: auto;
  background-color: var(--color-button);
}
.l-lpcontents [class*="c-btn"] > a {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
.l-lpcontents [class*="c-btn"] > a > span {
  position: relative;
  top: 0.1rem;
  left: -0.7rem;
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  font-family: var(--font-ja);
  font-weight: var(--fw-medium);
}
.l-lpcontents [class*="c-btn"] > a > span::after {
  position: absolute;
  content: "";
  border-right: 0.1rem solid var(--color-border);
  border-bottom: 0.1rem solid var(--color-border);
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  right: -1.5rem;
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-lpcontents [class*="c-btn"] {
    width: calc(540*100vw/750);;
    height: calc(80*100vw/750);;
  }
  .l-lpcontents [class*="c-btn"] > a > span {
    top: calc(2*100vw/750);;
    left: calc(-11*100vw/750);;
    font-size: calc(22*100vw/750);;
  }
  .l-lpcontents [class*="c-btn"] > a > span::after {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    width: calc(10*100vw/750);;
    height: calc(10*100vw/750);;
    right: calc(-24*100vw/750);;
    top: 43%;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                            スライダードット指定
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .slick-dots {
  position: absolute;
  bottom: -2rem;
  left: var(--left, initial);
  right: var(--right, initial);
}
.l-lpcontents .slick-dots li {
  display: inline-block;
  margin-inline: 0.4rem;
}
.l-lpcontents .slick-dots li button {
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: var(--color-dot-default);
}
.l-lpcontents .slick-dots li.slick-active button {
  background-color: var(--color-dot-active);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .slick-dots {
    bottom: calc(-39*100vw/750);
  }
  .l-lpcontents .slick-dots li {
    margin: 0 calc(11*100vw/750);
  }
  .l-lpcontents .slick-dots li button {
    width: calc(12*100vw/750);;
    height: calc(12*100vw/750);;
  }
}

/************** ドットの位置がPC/SP共通の場合 **************/
.l-lpcontents .c-dot-right .slick-dots {
  --right: -0.5rem;
}
.l-lpcontents .c-dot-center .slick-dots {
  --left: 50%;
  transform: translateX(-50%);
}
.l-lpcontents .c-dot-left .slick-dots {
  --left: -0.5rem;
}
/************ ドットの位置がPCのみ指定したい場合 ************/
@media screen and (min-width: 768px) {
  .l-lpcontents .c-pc_dot-right .slick-dots {
    --right: -0.5rem;
  }
  .l-lpcontents .c-pc_dot-center .slick-dots {
    --left: 50%;
    transform: translateX(-50%);
  }
  .l-lpcontents .c-pc_dot-left .slick-dots {
    --left: -0.5rem;
  }
}
/************ ドットの位置がSPのみ指定したい場合 ************/
@media screen and (max-width: 767px) {
  .l-lpcontents .c-sp_dot-right .slick-dots {
    --right: calc(-12*100vw/750);
  }
  .l-lpcontents .c-sp_dot-center .slick-dots {
    --left: 50%;
    transform: translateX(-50%);
  }
  .l-lpcontents .c-sp_dot-left .slick-dots {
    --left: calc(-12*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                          フェードアニメーション
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-fade {
  transition-property: opacity, transform;
  transition-duration: 1.5s;
  opacity: 0;
  transform: translateY(1.5rem);
}
.l-lpcontents .js-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .l-lpcontents .js-fade_pc {
    transition-property: opacity, transform;
    transition-duration: 1.5s;
    opacity: 0;
    transform: translateY(1.5rem);
  }
  .l-lpcontents .js-fade_pc.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .js-fade_sp {
    transition-property: opacity, transform;
    transition-duration: 1.5s;
    opacity: 0;
    transform: translateY(1.5rem);
  }
  .l-lpcontents .js-fade_sp.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                          ボーダーアニメーション
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-border {
  position: relative;
  display: block;
  width: 100%;
}
.l-lpcontents .js-border::before {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--color-border);
  height: 0.1rem;
  left: 0;
  bottom: 0;
}
.l-lpcontents .js-border.is-active::before {
  animation: borderAnimation 1.8s ease forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .js-border::before {
    height: 1px;
  }
}
@keyframes borderAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}