@charset "UTF-8";
@font-face {
  font-family: "NotoSans_regular";
  src: url(../font/NotoSansJP-Regular.otf);
}
@font-face {
  font-family: "NotoSans_bold";
  src: url(../font/NotoSansJP-Bold.otf);
}
@font-face {
  font-family: "RobotoSlab-Medium";
  src: url(../font/RobotoSlab-Medium.ttf);
}
@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --color-white: #fff;
  --color-black: #000;
  --color-orange: #db813e;
  --font-roboto: "Roboto-slab", serif;
  --font-noto: "NotoSans_regular";
  --font-en: var(--font-roboto), sans-serif;
  --font-ja: var(--font-noto), sans-serif;
  --font-main: var(--font-roboto), var(--font-noto), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  text-align: center;
  font-feature-settings: "palt";
  background-color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 140rem;
    --fz-text_description_text: 1.5rem;
    --fz-text_description_title: 3rem;
    --fz-text_description_btn: 2.1rem;
    --fz-text_description_accordion: 1.3rem;
    --fz-text_style_title: 4rem;
    --fz-text_style_credit: 1.3rem;
    --fz-text_style_product: 2.6rem;
    --fz-text_btn: 2.1rem;
  }
  #content__archive {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_description_text: calc(24*100vw/750);
    --fz-text_description_title: calc(48*100vw/750);
    --fz-text_description_btn: calc(36*100vw/750);
    --fz-text_description_accordion: calc(21*100vw/750);
    --fz-text_style_title: calc(56*100vw/750);
    --fz-text_style_credit: calc(24*100vw/750);
    --fz-text_style_product: calc(38*100vw/750);
    --fz-text_btn: calc(36*100vw/750);
    padding-bottom: calc(80*100vw/750);;
  }
  #content__archive {
    margin-top: calc(200*100vw/750);;
  }
}

@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
  .l-lpcontents .c-color_white {
    background-color: var(--color-white);
  }
}
@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;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="grid_column-1"] {--columns: 1;}
.l-lpcontents [class*="grid_column-2"] {--columns: 2;}
.l-lpcontents [class*="grid_column-3"] {--columns: 3;}
.l-lpcontents [class*="grid_column-4"] {--columns: 4;}

.l-lpcontents [class*="c-grid_column"] {
  display: grid;
  grid-template-columns: repeat(var(--columns , 1), 1fr);
  gap: var(--row, 0) var(--column, 0);
}
@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);
  }
  .l-lpcontents [class*="pc_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="pc_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="pc_grid_column-3"] {--columns: 3;}
  .l-lpcontents [class*="pc_grid_column-4"] {--columns: 4;}
}
@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*="sp_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="sp_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="sp_grid_column-3"] {--columns: 3;}
  .l-lpcontents [class*="sp_grid_column-4"] {--columns: 4;}
}
.l-lpcontents [class*="p-style_wrap0"] {
  position: relative;
  width: fit-content;
  height: fit-content;
  z-index: 2;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-bg_white {
  width: 110rem;
  margin-inline: auto;
  padding-block: 7rem;
  background-color: var(--color-white);
}
.l-lpcontents .c-text_description_text {
  font-size: var(--fz-text_description_text);
  line-height: 2.25;
  font-family: var(--font-ja);
  font-weight: var(--fw-regular);
  color: var(--color-black);
  letter-spacing: 0.04em;
}
.l-lpcontents .c-description_image {
  position: relative;
}
.l-lpcontents .c-text_description_title > span {
  font-family: "RobotoSlab-Medium";
  font-weight: 500;
}
.l-lpcontents .c-text_description_title {
  position: absolute;
  content: "";
  display: block;
  top: 6.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fz-text_description_title);
  line-height: 1.75;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  z-index: 10;
  /* pointer-events: none; */
}
.l-lpcontents .c-text_description_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  position: relative;
  width: 30rem;
  height: 6rem;
  margin-inline: auto;
  margin-bottom: 3.2rem;
  background-color: var(--color-orange);
  font-size: var(--fz-text_description_btn);
  line-height: 1.6071428571;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  cursor: pointer;
}
.l-lpcontents .c-text_description_accordion {
  font-size: var(--fz-text_description_accordion);
  line-height: 2.25;
  font-family: var(--font-ja);
  font-weight: var(--fw-regular);
  color: var(--color-black);
  margin-bottom: 2.4rem;
  letter-spacing: 0.04em;
}
.l-lpcontents .c-text_style_title {
  font-size: var(--fz-text_style_title);
  line-height: 0.73125;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-regular);
  color: var(--color-orange);
}
.l-lpcontents .c-text_style_credit {
  margin-top: 2.4rem;
  font-size: var(--fz-text_style_credit);
  line-height: 2;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-regular);
  color: var(--color-black);
}
.l-lpcontents .c-text_style_credit_item {
  display: inline-block;
  margin-inline: 0.3rem;
}
.l-lpcontents .c-text_style_product {
  font-size: var(--fz-text_style_product);
  line-height: 1;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-regular);
  color: var(--color-orange);
}
.l-lpcontents .c-text_btn {
  width: 42rem;
  height: 7.4rem;
  margin-inline: auto;
  background-color: var(--color-orange);
  font-size: var(--fz-text_btn);
  line-height: 1.6071428571;
  font-family: var(--font-en);
  -webkit-font-smoothing: auto;
  font-weight: var(--fw-medium);
  color: var(--color-white);
}
.l-lpcontents .c-text_btn > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-bg_white {
    width: calc(722* 100vw / 750);
    margin-top: calc(80* 100vw / 750); 
    padding-block: calc(80* 100vw / 750) calc(160* 100vw / 750);
  }
  .l-lpcontents .c-text_description_title {
    top: calc(98*100vw/750);
    white-space: nowrap;
  }
  .l-lpcontents .c-text_description_btn {
    column-gap: calc(30*100vw/750);
    width: calc(670*100vw/750);
    height: calc(120*100vw/750);
    line-height: 1.3125;
    margin-bottom: calc(55*100vw/750);;
  }
  .l-lpcontents .c-text_description_accordion {
    margin-bottom: calc(42*100vw/750);;
  }
  .l-lpcontents .c-text_style_title {
    line-height: 1.2727272727;
  }
  .l-lpcontents .c-text_style_credit {
    margin-top: calc(28*100vw/750);
  }
  .l-lpcontents .c-text_style_credit_item {
    margin-inline: calc(5*100vw/750);
  }
  .l-lpcontents .c-text_style_product {
    line-height: 0.8881578947;
  }
  .l-lpcontents .c-text_btn {
    width: calc(680*100vw/750);
    height: calc(146*100vw/750);
    line-height: 0.9375;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/

.l-lpcontents .c-firstview_image {width: 110rem;}
.l-lpcontents .c-description_image {width: 50rem;}
.l-lpcontents .c-style_image010101 {width: 48rem;}
.l-lpcontents .c-style_image010102 {width: 40rem;}
.l-lpcontents .c-style_image010201 {width: 37rem;}
.l-lpcontents .c-style_image010202 {width: 40rem;}
.l-lpcontents .c-style_product_item0101 {width: 17rem;}
.l-lpcontents .c-style_product_item0102 {width: 17rem;}
.l-lpcontents .c-style_product_item0103 {width: 17rem;}
.l-lpcontents .c-style_image020101 {width: 43rem;}
.l-lpcontents .c-style_image020102 {width: 39rem;}
.l-lpcontents .c-style_product_item0201 {width: 17rem;}
.l-lpcontents .c-style_product_item0202 {width: 17rem;}
.l-lpcontents .c-style_image030101 {width: 47rem;}
.l-lpcontents .c-style_product_item0301 {width: 17rem;}
.l-lpcontents .c-style_product_item0302 {width: 17rem;}
.l-lpcontents .c-style_image040101 {width: 40rem;}
.l-lpcontents .c-style_image040102 {width: 40rem;}
.l-lpcontents .c-style_product_item0401 {width: 17rem;}
.l-lpcontents .c-style_product_item0402 {width: 17rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-firstview_image {width: calc(750*100vw/750);}
  .l-lpcontents .c-description_image {width: calc(660*100vw/750);}
  .l-lpcontents .c-style_image010101 {width: calc(722*100vw/750);}
  .l-lpcontents .c-style_image010102 {width: calc(640*100vw/750);}
  .l-lpcontents .c-style_image010201 {width: calc(580*100vw/750);}
  .l-lpcontents .c-style_image010202 {width: calc(662*100vw/750);}
  .l-lpcontents .c-style_product_item0101 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_product_item0102 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_product_item0103 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_image020101 {width: calc(722*100vw/750);}
  .l-lpcontents .c-style_image020102 {width: calc(620*100vw/750);}
  .l-lpcontents .c-style_product_item0201 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_product_item0202 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_image030101 {width: calc(722*100vw/750);}
  .l-lpcontents .c-style_product_item0301 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_product_item0302 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_image040101 {width: calc(630*100vw/750);}
  .l-lpcontents .c-style_image040102 {width: calc(630*100vw/750);}
  .l-lpcontents .c-style_product_item0401 {width: calc(250*100vw/750);}
  .l-lpcontents .c-style_product_item0402 {width: calc(250*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-firstview {
  width: 110rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-firstview {
    width: var(--width-primary);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - description
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-description_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-description_inner {
    row-gap: calc(104*100vw/750);
  }
  .l-lpcontents .p-description_accordion {
    margin-top: calc(3*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style_product_list {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
}
.l-lpcontents .p-style_product_list::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style01
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style01 {
  margin-top: 12.2rem;
  margin-top: 11.4rem;
  margin-top: 9rem;
}
.l-lpcontents .p-style01 .p-style_wrapper0101 {
  width: 100rem;
  margin: 5rem auto 0;
  grid-template-columns: 60rem;
  grid-template-rows: 24rem;
}
.l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_image {
  width: 40rem;
}
.l-lpcontents .p-style01 .p-style_wrapper0102 {
  margin-top: 7.5rem;
  margin-left: 36.5rem;
  grid-template-columns: 28.5rem;
  grid-template-rows: 22rem
}
.l-lpcontents .p-style01 .p-style_wrapper0102 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-style01 .p-style_wrapper0102 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .p-style01 .p-style_wrapper0102 .c-text_style_credit {
  position: absolute;
  left: -14.5rem;
  bottom: -0.5rem;
  text-align: left;
}
.l-lpcontents .p-style01 .p-style_wrapper0102 .c-text_style_credit_item {
  display: block;
}
.l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_list {
  grid-template-columns: repeat(4, 17rem);
  --column: 1rem;
  margin-top: 9rem;
  padding: 2.9rem;
}
.l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_list::before {
  background-image: url(../img/frame01.png);
  width: 80.6rem;
  height: 24.8rem;
}
.l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_item > div {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style01 {
    margin-top: calc(143*100vw/750);;
    margin-top: calc(113*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0101 {
    width: var(--width-primary);
    margin-top: calc(47*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_wrap01 {
    margin-top: calc(47*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_wrap02 {
    margin-top: calc(96* 100vw / 750);
    margin-left: calc(40* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper0101 .p-style_image {
    width: calc(640*100vw/750);
    margin-inline: auto;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0102 {
    margin-top: calc(140*100vw/750);;
    margin-inline: auto;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0102 .p-style_wrap01 {
    width: var(--width-primary);
    margin-top: calc(0*100vw/750);;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0102 .p-style_wrap02 {
    margin-top: calc(80* 100vw / 750);
    margin-inline: auto;
  }
  .l-lpcontents .p-style01 .p-style_wrapper0102 .c-text_style_credit {
    left: calc(480* 100vw / 750);
    bottom: calc(22* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_list {
    grid-template-columns: repeat(2, calc(250* 100vw / 750));
    --column: calc(40* 100vw / 750);
    margin-top: calc(65* 100vw / 750);
    padding: calc(65* 100vw / 750) calc(55* 100vw / 750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_list::before {
    background-image: url(../img/sp/frame01.png);
    width: calc(660*100vw/750);
    height: calc(558*100vw/750);
  }
  .l-lpcontents .p-style01 .p-style_wrapper0103 .p-style_product_item > div {
    margin-left: calc(0*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style02
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style02 {
  margin-top: 13.2rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0201 {
  width: 87rem;
  margin: 5rem auto 0;
  grid-template-columns: 48rem;
  grid-template-rows: 21rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_image {
  width: 43rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0201 .c-text_style_credit {
  margin-top: 4.8rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_list {
  grid-template-columns: repeat(3, 17rem);
  --column: 1rem;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  margin-top: 9rem;
  padding: 2.9rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_list::before {
  background-image: url(../img/frame02.png);
  width: 62.6rem;
  height: 30.2rem;
}
.l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_item > div {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style02 {
    margin-top: calc(132*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0201 {
    width: var(--width-primary);
    margin-top: calc(47*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_wrap01 {
    margin-top: calc(0*100vw/750);;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_wrap02 {
    margin-top: calc(86* 100vw / 750);
    margin-left: calc(51* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper0201 .p-style_image {
    width: calc(722*100vw/750);
    margin-inline: auto;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0201 .c-text_style_credit {
    margin-top: calc(67* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_list {
    grid-template-rows: 1fr calc(250* 100vw / 750);
    grid-template-columns: repeat(2, calc(250* 100vw / 750));
    --column: calc(40* 100vw / 750);
    --row: calc(70* 100vw / 750);
    margin-top: calc(110* 100vw / 750);
    padding: calc(40* 100vw / 750) calc(80* 100vw / 750) calc(80* 100vw / 750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_item:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_item:last-of-type {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_list::before {
    background-image: url(../img/sp/frame02.png);
    width: calc(660*100vw/750);
    height: calc(492*100vw/750);
  }
  .l-lpcontents .p-style02 .p-style_wrapper0202 .p-style_product_item > div {
    margin-left: calc(0*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style03
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style03 {
  margin-top: 12.9rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 {
  width: 95.6rem;
  height: 73rem;
  margin: 5rem auto 0;
  grid-template-columns: 52.1rem;
  grid-template-rows: 10.8rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_wrap01 {
  grid-column: 1;
  grid-row: 1;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_wrap02 {
  grid-column: 2;
  grid-row: 2;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_image {
  width: 47rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .c-text_style_credit {
  margin-top: 4.8rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_list {
  --column: 1.3rem;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  padding: 3.1rem 3.8rem 2.7rem 4.1rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_list::before {
  background-image: url(../img/frame03.png);
  width: 43.6rem;
  height: 42.8rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item {
  --row: 1rem;
}
.l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item > div {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style03 {
    margin-top: calc(176*100vw/750);;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 {
    width: var(--width-primary);
    height: initial;
    margin-top: calc(35*100vw/750);;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_wrap01 {
    margin-top: calc(0*100vw/750);;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_wrap02 {
    margin-top: calc(137* 100vw / 750);
    margin-left: calc(92* 100vw / 750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_image {
    width: calc(722*100vw/750);
    margin-inline: auto;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .c-text_style_credit {
    margin-top: calc(67*100vw/750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_list {
    grid-template-rows: auto calc(250* 100vw / 750);
    grid-template-columns: repeat(2, calc(250* 100vw / 750));
    --column: calc(40* 100vw / 750);
    --row: calc(27* 100vw / 750);
    padding: calc(0* 100vw / 750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item:first-of-type {
    grid-column: 1/3;
    grid-row: 1;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item:last-of-type {
    grid-column: 1/3;
    grid-row: 2;
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_list::before {
    background-image: url(../img/sp/frame03.png);
    width: calc(660*100vw/750);
    height: calc(412*100vw/750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item {
    --row: calc(0*100vw/750);
  }
  .l-lpcontents .p-style03 .p-style_wrapper0301 .p-style_product_item > div {
    margin-left: calc(0*100vw/750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style04
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style04 {
  margin-top: 10.9rem;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 {
  margin: 5rem auto 0;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_image {
  --row: 1rem;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_wrap01,
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_wrap02 {
  margin-inline: auto;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_wrap02 {
  margin-top: 8rem;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_list {
  grid-template-columns: repeat(3, 17rem);
  --column: 1rem;
  padding: 2.9rem
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_list::before {
  background-image: url(../img/frame04.png);
  width: 62.6rem;
  height: 24.8rem;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item {
  --row: 1rem;
}
.l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item > div {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style04 {
    margin-top: calc(216*100vw/750);;
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 {
    margin-top: calc(34* 100vw / 750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_image {
    --row: calc(28*100vw/750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_wrap02 {
    margin-top: calc(116* 100vw / 750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_list {
    grid-template-rows: 1fr calc(250* 100vw / 750);
    grid-template-columns: repeat(2, calc(250* 100vw / 750));
    --column: calc(40* 100vw / 750);
    padding: calc(20* 100vw / 750);
    --row: calc(27* 100vw / 750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item:first-of-type {
    grid-column: 1/3;
    grid-row: 1;
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2;
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item:last-of-type {
    grid-column: 2/3;
    grid-row: 2;
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_list::before {
    background-image: url(../img/sp/frame04.png);
    width: calc(660*100vw/750);
    height: calc(412*100vw/750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item {
    --row: calc(0*100vw/750);
  }
  .l-lpcontents .p-style04 .p-style_wrapper0401 .p-style_product_item > div {
    margin-left: calc(0*100vw/750);
  }

}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - btn
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-btn {
  margin-block: 13.2rem 5rem;
  --row: 1rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-btn {
    margin-block: calc(212*100vw/750) calc(20*100vw/750);;
    --row: calc(20* 100vw / 750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
slick
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .slick-dots {
  position: absolute;
  bottom: -2.6rem;
  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 {
  width: 1rem;
  height: 1rem;
}
.l-lpcontents .slick-dots li button {
  width: 1rem;
  height: 1rem;
  font-size: 0;
  border-radius: 50%;
  border: 0.1rem solid var(--color-orange);
  cursor: pointer;
  padding: 0;
  background-color: var(--color-white);
  opacity: 1;
}
.l-lpcontents .slick-dots li.slick-active button {
  background-color: var(--color-orange);
}
.l-lpcontents .slick-dots li button:before {
  font-size: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .slick-dots {
    bottom: calc(-39*100vw/750);
  }
  .l-lpcontents .slick-dots li {
    width: calc(20*100vw/750);;
    height: calc(20*100vw/750);;
    margin: 0 calc(10*100vw/750);
  }
  .l-lpcontents .slick-dots li button {
    width: calc(20*100vw/750);;
    height: calc(20*100vw/750);;
    border: calc(2*100vw/750) solid var(--color-orange);
  }
  .l-lpcontents .slick-slide {
    margin-left: 0;
  }
}

/************** ドットの位置がPC/SP共通の場合 **************/
.l-lpcontents .c-dot-center .slick-dots {
  --left: 50%;
  transform: translateX(-50%);
}
.slick-dots li.slick-active button:before {
  opacity: 1;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
/* アコーディオンアニメーション */
.l-lpcontents .js-viewmore > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
}
.l-lpcontents .js-viewmore > span::before,
.l-lpcontents .js-viewmore > span::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 10;
  width: 1.8rem;
  height: 0.2rem;
  background-color: var(--color-white);
  transition: transform .5s ease;
  display: block;
}
.l-lpcontents .js-viewmore > span::before {
  transform: rotate(90deg);
}
.l-lpcontents .js-viewmore.is-open > span::before {
  transform: rotate(0);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .js-viewmore > span {
    width: calc(36*100vw/750);
  }
  .l-lpcontents .js-viewmore > span::before,
  .l-lpcontents .js-viewmore > span::after {
    width: calc(36*100vw/750);
    height: calc(3*100vw/750);
  }
}
.l-lpcontents .js-viewmore_hide {
  display: none;
}
/* フェードアニメーション */
.l-lpcontents .js-fade {
  opacity: 0;
  transition: opacity 0.4s 0.4s;
}
.l-lpcontents .js-fade.is-active {
  opacity: 1;
}

/* タイピング風アニメーション */
.l-lpcontents .js-typing > span {
  opacity: 0;
}
.l-lpcontents .js-typing.is-active > span {
  opacity: 1;
}


.l-lpcontents .p-style02 .p-style_image picture,
.l-lpcontents .p-style03 .p-style_image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.l-lpcontents .p-style02 .p-style_image picture::before,
.l-lpcontents .p-style03 .p-style_image picture::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  top: 0;
  left: 0.1rem;
  z-index: -5;
}

.l-lpcontents .js-typing_split span {
  opacity: 0;
  font-weight: var(--fw-medium);
}
.l-lpcontents .js-typing_split.is-active span {
  opacity: 1;
}