@charset "UTF-8";
/* =========================================
top
========================================= */
.pg_bg_01 {
  background-color: #5a0028;
  color: #fff;
}

.pg_bg_02 {
  background: url(../../img/common/bg_pattern_01.jpg) center 0 repeat;
}

/* =========================================
pg_mvSlider
========================================= */
.pg_mvSlider_wrap {
  position: relative;
}

.pg_mvSlider {
  overflow: hidden;
  -webkit-mask-image: url(../../img/top/mv_mask_pc.svg);
          mask-image: url(../../img/top/mv_mask_pc.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.pg_mvSlider::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #49310f;
  transition: all 0.4s ease;
  z-index: 1;
}
.pg_mvSlider.is_loading_end::after {
  opacity: 0;
}

.pg_mvSlider .swiper-slide {
  pointer-events: none;
}

.pg_mvSlider_photo img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.3, 1.3);
  pointer-events: none;
  filter: blur(10px);
  transition: filter 1.2s;
}

.pg_mvSlider_text_wrap {
  display: flex;
  align-items: center;
  position: absolute;
  inset: 0;
  padding: 0 50px;
  font-size: 2.1rem;
  letter-spacing: 0.4em;
  line-height: 2.38;
  color: #fff;
  text-shadow: 0 0 6px rgba(91, 19, 33, 0.8), 0 0 6px rgba(91, 19, 33, 0.8), 0 0 6px rgba(91, 19, 33, 0.8);
}

.pg_mvSlider_text + .pg_mvSlider_text {
  margin-top: 1em;
}

.pg_mvSlider_text .decoration {
  display: inline-block;
  position: relative;
  padding: 0 22px;
  font-size: 2.7rem;
  letter-spacing: 0.2em;
}
.pg_mvSlider_text .decoration::before, .pg_mvSlider_text .decoration::after {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  width: 2px;
  height: 28px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(91, 19, 33, 0.8), 0 0 6px rgba(91, 19, 33, 0.8), 0 0 6px rgba(91, 19, 33, 0.8);
}
.pg_mvSlider_text .decoration::before {
  left: 7px;
  transform: rotate(-30deg);
}
.pg_mvSlider_text .decoration::after {
  right: 7px;
  transform: rotate(30deg);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_mvSlider_wrap {
    position: relative;
    width: 100%;
    height: 531px;
    overflow: hidden;
  }
  .pg_mvSlider {
    position: absolute;
    top: 0;
    left: calc(50% - 384px);
    width: 768px;
    height: 531px;
    -webkit-mask-image: url(../../img/top/mv_mask_sp.svg);
            mask-image: url(../../img/top/mv_mask_sp.svg);
  }
  .pg_mvSlider_text_wrap {
    display: block;
    top: auto;
    bottom: 20px;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .pg_mvSlider_text + .pg_mvSlider_text {
    margin-top: 1em;
  }
  .pg_mvSlider_text .decoration {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
  }
  .pg_mvSlider_text .decoration::before, .pg_mvSlider_text .decoration::after {
    top: 15px;
    width: 2px;
    height: 21px;
  }
  .pg_mvSlider_text .decoration::before {
    left: 7px;
  }
  .pg_mvSlider_text .decoration::after {
    right: 7px;
  }
}
/* zoom out アニメーション */
.swiper-slide-active .pg_mvSlider_photo img {
  animation: ZoomIn 7s linear forwards;
  filter: blur(0);
}

.swiper-slide-visible .pg_mvSlider_photo img {
  animation: ZoomIn 7s linear forwards;
}

.swiper-slide-prev .pg_mvSlider_photo img {
  animation: ZoomIn 7s linear forwards;
}

.swiper-slide-duplicate-active .pg_mvSlider_photo img {
  animation: ZoomIn 7s linear forwards;
}

@keyframes ZoomIn {
  0% {
    transform: scale(1.3, 1.3);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* =========================================
pg_topics
========================================= */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .pg_topics {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 0 40px 170px;
  }
  .pg_topics_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 100vh;
    background-color: #ffc200;
    color: var(--color_accent);
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-family: var(--font_accent);
  }
  .pg_topics_text {
    margin-bottom: 74px;
    font-size: 2.3rem;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .pg_topics_card_lists {
    display: flex;
    margin: 0 -25px;
  }
  .pg_topics_card_lists li {
    width: 170px;
    margin: 0 25px;
  }
  .pg_topics_card_link {
    display: block;
    transition: opacity 0.15s;
  }
  .pg_topics_card_img {
    display: block;
    margin-bottom: 16px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    aspect-ratio: 1/1;
  }
  .pg_topics_card_img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.15s;
  }
  .pg_topics_card_detail {
    position: relative;
    line-height: 1.5;
    letter-spacing: 0;
    transition: opacity 0.15s;
  }
  .pg_topics_card_new {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 20px;
    background-color: #ffc200;
    color: var(--color_accent);
    font-family: var(--font_accent);
    letter-spacing: 0.05em;
  }
  .pg_topics_card_time {
    display: block;
  }
  .pg_topics_card_detail {
    word-break: break-word;
  }
  .pg_topics_link {
    display: flex;
    justify-content: flex-end;
    margin: 36px 15px 0 0;
  }
}
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .pg_topics_card:hover {
    opacity: 1;
  }
  .pg_topics_card:hover .pg_topics_card_img img {
    opacity: 0.7;
  }
  .pg_topics_card:hover .pg_topics_card_detail {
    opacity: 0.8;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_topics {
    max-width: 320px;
    margin: 0 auto;
    padding: 47px 15px 20px;
  }
  .pg_topics_header {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "text" "title";
    margin-bottom: 38px;
  }
  .pg_topics_text {
    grid-area: text;
    margin-bottom: 44px;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .pg_topics_title {
    grid-area: title;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 100vh;
    background-color: #ffc200;
    color: var(--color_accent);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-family: var(--font_accent);
  }
  .pg_topics_card_lists li + li {
    margin-top: 13px;
  }
  .pg_topics_card_link {
    display: flex;
    align-items: flex-start;
  }
  .pg_topics_card_img {
    display: block;
    margin: 0 20px 16px 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    width: 41.4%;
    aspect-ratio: 1/1;
  }
  .pg_topics_card_img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.15s;
  }
  .pg_topics_card_detail {
    flex: 1;
    letter-spacing: 0;
    font-size: 1.3rem;
    transition: opacity 0.15s;
  }
  .pg_topics_card_new {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 18px;
    margin-bottom: 9px;
    background-color: #ffc200;
    color: var(--color_accent);
    font-family: var(--font_accent);
    letter-spacing: 0.05em;
  }
  .pg_topics_card_time {
    display: block;
  }
  .pg_topics_card_detail {
    word-break: break-word;
  }
  .pg_topics_link {
    display: flex;
    justify-content: flex-end;
    margin: 3px 15px 0 0;
  }
}
@media screen and (max-width: 768px){
  .pg_topics_text {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .pg_topics_title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
/* =========================================
pg_separate
========================================= */
.pg_separate {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.pg_separate_inner {
  position: absolute;
  top: 0;
  left: calc(50% - 1400px);
  width: 2800px;
  height: 479px;
  -webkit-mask-image: url(../../img/top/parallax_mask_pc.svg);
          mask-image: url(../../img/top/parallax_mask_pc.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  overflow: hidden;
}
.pg_separate_inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/top/parallax_mask_border_pc.svg) no-repeat 0 0/contain;
}

.pg_separate_img_wrap .simpleParallax {
  height: 479px;
}

.pg_separate_img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s;
}

.pg_separate_img.is_loading_end {
  opacity: 1;
}

.pg_separate_inner.__white::after {
  background-image: url(../../img/top/parallax_mask_border_white_pc.svg);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_separate {
    height: 350px;
  }
  .pg_separate_inner {
    left: calc(50% - 384px);
    width: 768px;
    height: 349px;
    -webkit-mask-image: url(../../img/top/parallax_mask_sp.svg);
            mask-image: url(../../img/top/parallax_mask_sp.svg);
  }
  .pg_separate_inner::after {
    background: url(../../img/top/parallax_mask_border_sp.svg) no-repeat 0 0/contain;
  }
  .pg_separate_img {
    display: block;
    width: 768px;
    height: 350px;
  }
  .pg_separate_inner.__white::after {
    background-image: url(../../img/top/parallax_mask_border_white_sp.svg);
  }
}
/* =========================================
pg_concept
========================================= */
.pg_concept {
  overflow: hidden;
}

.pg_concept_inner {
  max-width: 1000px;
  min-height: 1320px;
  margin: 0 auto;
  padding: 132px 0;
  position: relative;
  text-align: center;
}
.pg_concept_inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 39px;
  left: -178px;
  width: 1347px;
  height: 1188px;
  background: url(../../img/top/concept_bg_pc.png) no-repeat 0 0/contain;
}

.pg_concept_title {
  position: relative;
  margin-bottom: 69px;
  padding-bottom: 108px;
}
.pg_concept_title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 20px;
  margin: 0 auto;
  background: url(../../img/common/title_bg.svg) no-repeat 0 0/contain;
}
.pg_concept_title .ja {
  display: block;
  padding-left: 0.1em;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.pg_concept_title .en {
  display: block;
  padding-left: 0.1em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: var(--font_accent);
  color: var(--color_accent);
}

.pg_concept_text {
  padding-left: 0.1em;
  line-height: 4;
  letter-spacing: 0.1em;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_concept_inner {
    width: 320px;
    min-height: 1110px;
    padding: 145px 0;
  }
  .pg_concept_inner::before {
    top: 27px;
    left: -86px;
    width: 597px;
    height: 1064px;
    background: url(../../img/top/concept_bg_sp.png) no-repeat 0 0/contain;
  }
  .pg_concept_title {
    position: relative;
    margin-bottom: 39px;
    padding-bottom: 60px;
  }
  .pg_concept_title::after {
    width: 10px;
    height: 16px;
  }
  .pg_concept_title .ja {
    font-size: 1.8rem;
  }
  .pg_concept_title .en {
    font-size: 1.3rem;
  }
  .pg_concept_text {
    padding-left: 0.05em;
    line-height: 3;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
/* =========================================
pg_products
========================================= */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .pg_products {
    width: max(784px, 65.3vw);
    padding: max(111px, 9.25vw) 0 max(100px, 8.333vw);
    margin: 0 auto;
    text-align: center;
  }
  .pg_products_title {
    margin-bottom: max(50px, 4.167vw);
  }
  .pg_products_title span {
    display: block;
    padding-left: 0.1em;
    letter-spacing: 0.1em;
  }
  .pg_products_title .ja {
    font-size: max(2rem, 1.667vw);
  }
  .pg_products_title .en {
    font-size: max(1.5rem, 1.25vw);
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_discription {
    margin-bottom: max(90px, 7.5vw);
    padding-left: 0.1em;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .pg_products_item {
    display: flex;
    position: relative;
  }
  .pg_products_item + .pg_products_item {
    margin-top: max(61px, 5.083vw);
  }
  .pg_products_img {
    width: max(400px, 33.33vw);
    margin-right: max(10px, 0.833vw);
  }
  .pg_products_img img {
    width: 100%;
    height: auto;
  }
  .pg_products_text {
    flex: 1;
    position: relative;
    text-align: center;
    padding-top: max(49px, 4.083vw);
    padding-left: max(25px, 2.083vw);
  }
  .pg_products_text span {
    display: block;
    line-height: 2.1;
    letter-spacing: 0.1em;
  }
  .pg_products_text .no {
    position: absolute;
    top: 0;
    left: min(-16px, -1.333vw);
    font-size: max(20rem, 16.667vw);
    line-height: 1.12;
    letter-spacing: 0;
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_text .en {
    font-size: max(1.5rem, 1.25vw);
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_text .ja {
    font-size: max(2rem, 1.25vw);
  }
  .pg_products_link {
    position: absolute;
    top: max(150px, 12.5vw);
    left: max(123px, 10.25vw);
  }
  .pg_products_item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .pg_products_item:nth-child(odd) .pg_products_text {
    padding-left: 0;
    padding-right: max(62px, 5.167vw);
  }
  .pg_products_item:nth-child(odd) .pg_products_text .no {
    left: auto;
    right: min(-8px, -0.667vw);
  }
  .pg_products_item:nth-child(odd) .pg_products_link {
    left: auto;
    right: max(150px, 12.5vw);
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_products {
    max-width: 320px;
    padding: 95px 15px 50px;
    margin: 0 auto;
    text-align: center;
  }
  .pg_products_title {
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .pg_products_title span {
    display: block;
    padding-left: 0.1em;
    letter-spacing: 0.1em;
  }
  .pg_products_title .ja {
    font-size: 1.8rem;
  }
  .pg_products_title .en {
    font-size: 1.3rem;
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_discription {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.4rem;
    text-align: left;
  }
  .pg_products_item + .pg_products_item {
    margin-top: 30px;
  }
  .pg_products_text {
    margin-bottom: 20px;
  }
  .pg_products_text span {
    display: block;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .pg_products_text .no {
    margin-bottom: 6px;
    font-size: 12rem;
    line-height: 1;
    letter-spacing: 0;
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_text .en {
    font-size: 1.3rem;
    color: #ffc200;
    font-family: var(--font_accent);
  }
  .pg_products_text .ja {
    font-size: 1.8rem;
  }
  .pg_products_img {
    margin-bottom: 12px;
  }
  .pg_products_link {
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
  }
  .pg_products_link .md_arrow_text {
    font-size: 1.2rem;
  }
}
/* =========================================
pg_lineup
========================================= */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .pg_lineup_inner {
    width: max(1000px, 83.333vw);
    padding: max(94px, 7.833vw) 0 max(100px, 8.333vw);
    margin: 0 auto;
  }
  .pg_lineup_title {
    position: relative;
    margin-bottom: max(53px, 4.167vw);
    padding-bottom: max(50px, 4.167vw);
    text-align: center;
  }
  .pg_lineup_title span {
    display: block;
    padding-left: 0.1em;
    letter-spacing: 0.1em;
  }
  .pg_lineup_title .ja {
    font-size: max(2rem, 1.667vw);
  }
  .pg_lineup_title .en {
    font-size: max(1.5rem, 1.25vw);
    color: var(--color_accent);
    font-family: var(--font_accent);
  }
  .pg_lineup_title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: max(13px, 1.083vw);
    height: max(20px, 1.667vw);
    margin: 0 auto;
    background: url(../../img/common/title_bg.svg) no-repeat 0 0/contain;
  }
  .pg_lineup_body {
    position: relative;
  }
  .pg_lineup_box {
    position: absolute;
    top: max(50px, 4.167vw);
    left: 0;
  }
  .pg_lineup_text_wrap {
    position: relative;
    width: max(500px, 41.667vw);
    margin-bottom: max(39px, 3.25vw);
    padding: max(42px, 3.5vw) max(58px, 4.833vw) max(37px, 3.083vw);
    color: #fff;
    z-index: 2;
  }
  .pg_lineup_text_wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(133, 13, 99, 0.6);
    border-radius: max(5px, 0.417vw);
    mix-blend-mode: multiply;
    z-index: -1;
  }
  .pg_lineup_text {
    font-size: max(1.5rem, 1.25vw);
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .pg_lineup_link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: max(158px, 3.5vw);
  }
  .pg_lineup_link .md_arrow_text {
    color: var(--color_accent);
  }
  .pg_lineup_img {
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .pg_lineup_img img {
    width: max(670px, 55.833vw);
    border-radius: max(5px, 0.417vw);
    overflow: hidden;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_lineup_inner {
    max-width: 320px;
    margin: 0 auto;
    padding: 98px 15px 39px;
  }
  .pg_lineup_title {
    position: relative;
    margin-bottom: 49px;
    padding-bottom: 60px;
    text-align: center;
  }
  .pg_lineup_title span {
    display: block;
    padding-left: 0.1em;
    letter-spacing: 0.1em;
  }
  .pg_lineup_title .ja {
    font-size: 1.8rem;
  }
  .pg_lineup_title .en {
    font-size: 1.3rem;
    color: var(--color_accent);
    font-family: var(--font_accent);
  }
  .pg_lineup_title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 16px;
    margin: 0 auto;
    background: url(../../img/common/title_bg.svg) no-repeat 0 0/contain;
  }
  .pg_lineup_box {
    margin-bottom: 30px;
  }
  .pg_lineup_text_wrap {
    margin-bottom: 11px;
    font-size: 1.4rem;
  }
  .pg_lineup_link {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 15px;
  }
  .pg_lineup_link .md_arrow_text {
    color: var(--color_accent);
    font-size: 1.2rem;
  }
  .pg_lineup_img {
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .pg_lineup_img img {
    width: max(670px, 55.833vw);
    border-radius: max(5px, 0.417vw);
    overflow: hidden;
  }
}
/* =========================================
pg_slider_wrap
========================================= */
.pg_slider_wrap {
  position: relative;
  padding-bottom: max(100px, 8.333vw);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pg_slider {
  width: 100%;
  overflow: hidden;
}

.pg_slider_contents {
  display: flex;
  flex-wrap: nowrap;
}

.pg_slider_photo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: max(450px, 37.5vw);
  padding-right: max(50px, 4.167vw);
  will-change: transform;
}
.pg_slider_photo.__width_s {
  width: max(330px, 27.5vw);
}
.pg_slider_photo img {
  border-radius: max(5px, 0.417vw);
  overflow: hidden;
}

.pg_slider_logo {
  position: absolute;
  bottom: max(69px, 5.75vw);
  right: max(50px, 4.167vw);
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.pg_slider_logo img {
  width: max(458px, 38.167vw);
  height: auto;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pg_slider_wrap {
    padding-bottom: 71px;
  }
  .pg_slider_photo {
    width: 180px;
    padding-right: 20px;
  }
  .pg_slider_photo.__width_s {
    width: 132px;
  }
  .pg_slider_photo img {
    width: 100%;
    border-radius: 5px;
  }
  .pg_slider_logo {
    bottom: 50px;
    right: 12px;
  }
  .pg_slider_logo img {
    width: 220px;
  }
}