@charset "UTF-8";
/* calc スタイル
======================================================================================== */
/* html {
  background: #f5f0e1;
} */

#GPH250924HALLOWEENHOMME {
  --font-credit: heebo, sans-serif;
  --font-fw-light: 300;
  --color-white: #fff;
  --color-black: #000;

  --pc-width: 1920;
  --sp-width: 390;
  --pc-artboard-width: 650;
  --sp-artboard-width: 390;
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/

  --font-noto: "Noto Sans JP", sans-serif;
  --font-birra: birra-2, serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  position: relative;
  z-index: 1;
  font-style: normal;
  width: 100%;
}


/* @media screen and (min-width: 1921px) {
  #GPH250924HALLOWEENHOMME {
    --ratio: 1px;
  }
} */

@media screen and (min-width: 560px) {
  #GPH250924HALLOWEENHOMME {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); 
    --variable: 1px;
  }

  :root {
    --lpSetSize: calc(1px * calc(650 / 650));
    /* --lpSetSize: 0.56px; */
  }
}

/* PC画面幅 768～1400px 可変 */
/* @media (min-width: 560px) and (max-width: 1400px) {
  #GPH250924HALLOWEENHOMME {
    --variable: calc(100vw / var(--pc-width));
  }

  :root {
    --lpSetSize: (100vw / 650) * 0.56;
  }
} */

/* SP画面幅 559px以下 可変 */
@media screen and (max-width: 559px) {
  #GPH250924HALLOWEENHOMME {
    --reference-value: .1rem;
    --dsesktop-rate: calc(100vw / 1920);
    --rate: calc(100cqi / 650);
    opacity: 1;
/* 
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width)); */
  }


  :root {
    --lpSetSize: (100vw / 650);
  }
}


/* ベーススタイル
======================================================================================== */

.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
  display: inline-block;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}

#GPH250924HALLOWEENHOMME {
  /* display: grid; */
  grid-template-columns: 1fr 50%;
  background: var(--color-black);
  font-feature-settings: "palt";
}

.contents_area{
  background-color: var(--color-black);
}
/* @media (min-width: 560px) and (max-width: 1400px) {
  .contents_area{
    max-width: calc(650 * var(--lpSetSize));
  }
} */

@media (min-width: 560px) and (max-width: 1200px) {
  .side_txt_pc__inner{
    display: none;
  }
}

@media (min-width: 560px) and (max-width: 1400px) {
  .contents_area{
    max-width: calc(650 * var(--lpSetSize));
  }
}

@media screen and (min-width: 560px) {
  #GPH250924HALLOWEENHOMME{
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr auto 1fr;
    position: relative;
    overflow-y: clip;
    height: 100%;
    background-color: var(--color-black);
  }

  .contents_area{
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
    overflow-x: clip;
    max-width: 650px;
    grid-column: 2;
    z-index: 1;
  }

  .side_txt_pc.--left{
    position: sticky;
    display: grid;
    grid-column: 1;
    top: 0;
    height: 100vh;
    place-content: center;
    z-index: 1;
  }

  .side_txt_pc.--right{
    position: sticky;
    display: grid;
    grid-column: 3;
    top: 0;
    height: 100vh;
    place-content: center;
    z-index: 1;
  }

  .side_txt_pc__inner{
    position: relative;
    width: calc(199.6064 * var(--lpSetSize));
  }

  .spOnly {
    display: none;
  }

  .pcOnly {
    display: block;
  }

  .fixed-bg{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-image: url(../img/bg_pc2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    width: calc((100vw - 650px) / 2);
    /* background-repeat: no-repeat;
    background-size: cover;
    z-index: -1; */
  }

  .fixed-bg.--right{
    left: auto;
    right: 0;
  }

  #style-archive.style-archive{
    position: relative;
    z-index: 1;
    background: #fff;
  }
  #Foot{
    position: relative;
    background: #fff;
    pointer-events: none;
    z-index: 1001;
  }
  #footer{
    pointer-events: all;
  }
  .modal.hide{
    pointer-events: none;
  }
  .modal.hide.open.show{
    pointer-events: all;
  }
  #Header{
    z-index: 999;
  }
}

@media screen and (max-width: 559px) {
  #GPH250924HALLOWEENHOMME{
    background-color: var(--color-black)!important;
    overflow-x: clip;
  }

  .spOnly {
    display: block;
  }

  .pcOnly {
    display: none;
  }

  /* Chrome, Safari, EdgeなどのWebKit系ブラウザ */
  ::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  html {
    scrollbar-width: none;
    overflow-x: clip;
  }

  /* IE、Edge */
  body {
    -ms-overflow-style: none;
  }

  .contents_area{
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    background-color: var(--color-black);
  }
}

  /* Chrome, Safari, EdgeなどのWebKit系ブラウザ */
_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-content {
  /* max-height: calc(170 * var(--lpSetSize)) !important; */
}

_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-content.open {
  /* max-height: calc(526 * var(--lpSetSize)) !important; */
}

_::-webkit-full-page-media, _:future, :root .custom-acc-container .custom-acc-btn {
  /* top: calc(50 * var(--lpSetSize)); */
  /* padding-top: calc(20 * var(--lpSetSize)); */
}


/* ==============================
  共通
============================== */
.sec_txt{
  font-family: var(--font-noto);
  font-size: calc(18 * var(--lpSetSize));
  font-weight: var(--fw-regular);
  color: #fff;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

/* .noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

.ghost{
  position: absolute;
  z-index: 1;
}

.ghost::after{
  content: "";
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ==============================
  mv__wrapper
============================== */
.mv__wrapper{
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  padding-bottom: calc(80 * var(--lpSetSize));
}

.mv_ttl{
  position: absolute;
  z-index: 10;
  width: calc(420.0845 * var(--lpSetSize));
  top: calc(105 * var(--lpSetSize));
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}


.mv.js-show.slideUp{
  transition-delay: 0.5s;
}


/* ==============================
  section01
============================== */

.section01 {
  padding-bottom: calc(160 * var(--lpSetSize));
}

.section01 .txt__wrapper{
  position: relative;
  width: calc(500 * var(--lpSetSize));
  margin: 0 auto;
  margin-bottom: calc(33 * var(--lpSetSize));
}

.section01 .ghost01{
  width: calc(162.0487 * var(--lpSetSize));
  top: calc(50 * var(--lpSetSize));
  right: calc(-45 * var(--lpSetSize));
  margin-top: calc(-1 * var(--lpSetSize));
}

.section01 .ghost01::after{
  background-image: url(../img/SVG/ghost01_dec.svg);
  bottom: calc(-162 * var(--lpSetSize));
  left: calc(-74 * var(--lpSetSize));
  width: calc(160.412 * var(--lpSetSize));
  height: calc(148.2023 * var(--lpSetSize));
}

.section01 .item02__wrapper{
  position: relative;
}

.section01 .ghost02{
  width: calc(153.9848 * var(--lpSetSize));
  bottom: calc(94 * var(--lpSetSize));
  left: calc(29 * var(--lpSetSize));
  margin-top: calc(-1 * var(--lpSetSize));
}

.section01 .ghost02::after{
  content: "";
  background-image: url(../img/SVG/ghost02_dec.svg);
  bottom: calc(-127 * var(--lpSetSize));
  left: calc(41 * var(--lpSetSize));
  width: calc(114.3711 * var(--lpSetSize));
  height: calc(93.6485 * var(--lpSetSize));
}

.section01 .sec_ttl{
  width: calc(484.5552 * var(--lpSetSize));
  margin-left: calc(2 * var(--lpSetSize));
  margin-bottom: calc(30 * var(--lpSetSize));
}

.section01 .item__wrapper{
  position: relative;
  z-index: 1;
  width: 100%;
}

.section01 .item__wrapper::before{
  content: "";
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(600 * var(--lpSetSize));
  height: calc(600 * var(--lpSetSize));
}

.section01 .item__wrapper.--01::after,
.section01 .item__wrapper.--04::after{
  content: "";
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.section01 .item__wrapper.--01::after{
  background-image: url(../img/SVG/vertical_txt-orange.svg);
  width: calc(48.4316 * var(--lpSetSize));
  height: calc(514.9883 * var(--lpSetSize));
  right: calc(46 * var(--lpSetSize));
  top: calc(35 * var(--lpSetSize));
}

.section01 .item__wrapper.--03::after{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/SVG/dec01.svg);
  bottom: calc(-145 * var(--lpSetSize));
  right: calc(40 * var(--lpSetSize));
  width: calc(145.9383 * var(--lpSetSize));
  height: calc(150.0949 * var(--lpSetSize));
}


.section01 .item__wrapper.--04::after{
  background-image: url(../img/SVG/vertical_txt-green.svg);
  width: calc(50.2715 * var(--lpSetSize));
  height: calc(554.0664 * var(--lpSetSize));
  left: calc(50 * var(--lpSetSize));
  top: calc(55 * var(--lpSetSize));
}


.section01 .item__wrapper.--01::before,
.section01 .item__wrapper.--03::before{
  background-image: url(../img/bg-orange.png);
}

.section01 .item__wrapper.--02::before,
.section01 .item__wrapper.--04::before{
  background-image: url(../img/bg-green.png);
  right: 0;
}

.section01 .item01,
.section01 .item03{
  margin: 0 auto calc(99 * var(--lpSetSize)) 0;
}

.section01 .item02,
.section01 .item04{
  margin: 0 0 calc(99 * var(--lpSetSize)) auto;
}

.section01 .item01{
  position: relative;
  left: calc(25 * var(--lpSetSize));
  top: calc(25 * var(--lpSetSize));
  width: calc(400.5913 * var(--lpSetSize));
}

.section01 .item02{
  position: relative;
  right: calc(32 * var(--lpSetSize));
  top: calc(35 * var(--lpSetSize));
  width: calc(387.6558 * var(--lpSetSize));
}

.section01 .item03{
  position: relative;
  left: calc(10 * var(--lpSetSize));
  top: calc(70 * var(--lpSetSize));
  width: calc(431.9819 * var(--lpSetSize));
  margin: 0 auto calc(170 * var(--lpSetSize)) 0;
}

.section01 .item04{
  position: relative;
  right: calc(5 * var(--lpSetSize));
  top: calc(55 * var(--lpSetSize));
  width: calc(443.5014 * var(--lpSetSize));
}



/* ==============================
  section02
============================== */
/* .section02 {
  padding-bottom: calc(120 * var(--lpSetSize));
} */

.section02 .txt__wrapper{
  position: relative;
  width: calc(550 * var(--lpSetSize));
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: right;
  margin: 0 auto calc(105 * var(--lpSetSize)) auto;
}

.section02 .sec_txt{
  text-align: right;
}

.section02 .sec_ttl {
  width: calc(292.1362 * var(--lpSetSize));
  margin-bottom: calc(30 * var(--lpSetSize));
}

.section02 .ghost03{
  width: calc(133.8368 * var(--lpSetSize));
  top: calc(-20 * var(--lpSetSize));
  left: calc(47 * var(--lpSetSize));
}

.section02 .ghost03::after{
  content: "";
  background-image: url(../img/SVG/ghost03_dec.svg);
  bottom: calc(-150 * var(--lpSetSize));
  left: calc(-95 * var(--lpSetSize));
  width: calc(160.412 * var(--lpSetSize));
  height: calc(148.2023 * var(--lpSetSize));
}

.section02 .item{
  position: relative;
  z-index: 1;
  width: calc(650 * var(--lpSetSize));
}

.section02 .item::before{
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/bg_square.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: calc(900 * var(--lpSetSize));
  top: 0;
  left: 0;
}

.section02 .slider-repeat-reverse,
.section02 .slider-repeat{
  display: flex;
  overflow: hidden;
  width: 100%;
  list-style: none;
  justify-content: left;
  padding: 0;
  font-size: 0;
}


#GPH250924HALLOWEENHOMME .txt-slider {
  overflow: hidden;
  width: 100%;
}

#GPH250924HALLOWEENHOMME .txt-slider-track {
  display: flex;
  width: max-content;
  display: inline-flex;
  white-space: nowrap; 
}

#GPH250924HALLOWEENHOMME .txt-slider-track.scroll-left {
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(-50%);
  }
    to {
    transform: translateX(0%);
  }
}

/* .slider-repeat.--orange .textslide__inner{
  display: flex;
  list-style: none;
  justify-content: right;
  width: max-content;
  animation :infinity-scroll-left 20s linear infinite 0.5s both;
} */


#GPH250924HALLOWEENHOMME .txt-slider {
  overflow: hidden;
  width: 100%;
}

#GPH250924HALLOWEENHOMME .txt-slider-track.scroll-right {
  animation: scroll-right 20s linear infinite;
  justify-content: right;
}


@keyframes scroll-right {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-50%);
  }
}

.section02 .slider-repeat.--orange{
  margin: calc(40 * var(--lpSetSize)) 0 calc(30 * var(--lpSetSize));
}

#GPH250924HALLOWEENHOMME .txt-slide{
  width: max-content;
  width: calc(2094.936 * var(--lpSetSize));
  margin-right: calc(15 * var(--lpSetSize));
}

/* .slider_img.section02 .slider_img img{
  width: 100%;
  display: block;
}

.textslide__inner,
.slider_img {
  font-size: 0;
}

.textslide__inner {
  white-space: nowrap;
} */

.section02 .item07{
  position: relative;
  z-index: 1;
  width: 100%;
  margin: calc(115 * var(--lpSetSize)) 0 calc(45 * var(--lpSetSize));
}

.section02 .item07::after,
.section02 .item07::before{
  content: "";
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}

.section02 .item07::after{
  background-image: url(../img/SVG/dec02.svg);
  width: calc(150.0949 * var(--lpSetSize));
  height: calc(145.9383 * var(--lpSetSize));
  top: calc(100 * var(--lpSetSize));
  right: calc(22 * var(--lpSetSize));
}

.section02 .item07::before{
  background-image: url(../img/SVG/dec03.svg);
  width: calc(145.9383 * var(--lpSetSize));
  height: calc(150.0949 * var(--lpSetSize));
  bottom: 0;
  left: calc(41 * var(--lpSetSize));
}


/* ==============================
  last__sec
============================== */
.last__sec{
  padding: 0 0 calc(40 * var(--lpSetSize));
  z-index: 10;
}

.last__sec .last_txt{
  width: calc(535 * var(--lpSetSize));
  margin: 0 auto calc(35 * var(--lpSetSize));
}

.last__sec .cai_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(550 * var(--lpSetSize));
  height: calc(100 * var(--lpSetSize));
  border-radius: calc(55 * var(--lpSetSize));
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: .3s;
  margin: 0 auto;
}

.last__sec .cai_btn:hover{
  background-color: var(--color-white);
  color: var(--color-black);
}

.cai_btn a{
  display: block;
  line-height: 1;
  font-family: "birra-2", serif;
  font-weight: 700;
  font-style: normal;
  font-size: calc(45 * var(--lpSetSize));
  text-align: center;
  font-weight: var(--fw-bold);
}

.last_ghost{
  width: calc(600 * var(--lpSetSize));
  margin: calc(35 * var(--lpSetSize)) auto calc(105 * var(--lpSetSize));
}

/* ==============================
  animatiion
============================== */
.background-change-element{
  transition: all 0.4s;
}

/* slideUp ___________________________*/
.js-show.slideUp{
  transform: translateY(calc(70 * var(--lpSetSize)));
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-show.slideUp.view{
  opacity: 1;
  transform: translateY(0);
}

.slider-repeat, .slider-repeat-reverse {
  touch-action: none; /* スライダーのスクロールを無効化 */
}


/* ==============================
  breadcrumb
============================== */
#main-container.center-contents .breadcrumb{
  background-color: var(--color-black);
}

#main-container .cateList{
  position: relative;
  z-index: 10;
  background-color: var(--color-black);
  padding-top: calc(59*(100vw / 390)) ;
  margin: 0 auto;
  color: var(--color-white);
}