@charset "UTF-8";
:root {
  --font: hiragino-kaku-gothic-pron, sans-serif;
  --font-en: kepler-std-condensed-subhead, serif;
  --font-credit: futura-pt, sans-serif;
  --font-mincho: NotoSerifJP, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1440;
  --tb-width: 768;
  --sp-width: 750;
}

* > .main-area {
  font-family: var(--font);
  font-weight: var(--fontweight-medium);
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

/* ▼ -----------可変設定---------- ▼ */
.GPH250905ROBUCHON {
  --pc-width: 1440; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 480; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

/* --formulaの補足
  SPの値 × SP→PCの縮小率 × 画面幅に基づく可変値

  例）PC1400px　SP750pxのデザイン
  　　PC共通部分:500px　SP共通部分:750px
  　　PC、SP共通デザインwidth:100pxの場合

  ▼記述 pc表示時に(500/750)を掛ける
  width: calc(100* var(--variable)* var(--ratio));

　▼PC固定幅の計算
　100×0.6666666666666667×1=66.66666666666667px

　▼PC可変の計算
　100×0.6666666666666667×(100vw/1400)=calc(66.66666666666667 * (100vw/1400));

　▼SP可変の計算
　100×1×(100vw/750)=calc(100 * (100vw/750));
*/
/* PC画面幅 1400px以上 固定 */
@media (min-width: 1441px) {
  .GPH250905ROBUCHON {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない）*/
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1440px) {
  .GPH250905ROBUCHON {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .GPH250905ROBUCHON {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .main-area .pc_only {
    display: none;
  }
  .main-area .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .main-area .pc_only {
    display: block;
  }
  .main-area .sp_only {
    display: none;
  }
}
.js-fadeIn-load {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-fadeIn-load--02 {
  opacity: 0;
  transition: opacity 1s 0.8s;
}

.js-fadeIn-load.js-active, .js-fadeIn-load--02.js-active {
  filter: blur(0);
  opacity: 1;
}

.js-blur-zoom-load {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom-load.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.js-fadeUp-load {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(10px);
}

.js-fadeUp-load.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp-load--02 {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(3rem);
}

.js-fadeUp-load--02.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp, .js-fadeUp-credit {
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(30px);
}

.js-fadeUp.js-active, .js-fadeUp-credit.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUpLate {
  opacity: 0;
  transition: all 1s 0.5s ease;
  transform: translateY(3rem);
}

.js-fadeUpLate.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fade_late {
  opacity: 0;
  transition: all 1s 0.6s ease;
  transform: translateY(30px);
}

.js-fade_late.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(-30px);
}

.js-fadeRight {
  filter: blur(5px);
  opacity: 0;
  transition: all 1.1s ease;
  transform: translateX(30px);
}

.js-fadeLeft.js-active, .js-fadeRight.js-active {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0);
}

.js-fadeIn {
  opacity: 0;
  transition: all 1s ease;
}

.js-fadeIn.js-active {
  opacity: 1;
}

.js-arrow img {
  transform: translateY(-100%);
  transition: transform 0.8s ease-in-out;
}

.js-arrow.js-active img {
  transform: translateY(0);
}

.js-svgGroup .svg__text--01 {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease;
}
.js-svgGroup .svg__text--02 {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s 0.6s ease;
}
.js-svgGroup .svg__line {
  display: block;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s 0.3s linear;
}

.js-svgGroup.js-active .svg__text--01 {
  opacity: 1;
  transform: translateY(0);
}
.js-svgGroup.js-active .svg__text--02 {
  opacity: 1;
  transform: translateY(0);
}
.js-svgGroup.js-active .svg__line {
  clip-path: inset(0 0 0 0);
}

.js-blur-zoom {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: all 1.1s ease;
}

.js-blur-zoom.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.js-clip {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s 0s linear;
}

.js-clip.js-active {
  clip-path: inset(0 0 0 0);
}

.move__rotation {
  animation: move__rotation 30s linear infinite;
}

@keyframes move__rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.svg__path {
  display: block;
  clip-path: inset(0 100% 0 0);
}
.svg__path.svg-elem-1 {
  transition: clip-path 0.1s 0s linear;
}
.svg__path.svg-elem-2 {
  transition: clip-path 0.1s 0.1s linear;
}
.svg__path.svg-elem-3 {
  transition: clip-path 0.1s 0.2s linear;
}
.svg__path.svg-elem-4 {
  transition: clip-path 0.1s 0.3s linear;
}
.svg__path.svg-elem-5 {
  transition: clip-path 0.1s 0.4s linear;
}
.svg__path.svg-elem-6 {
  transition: clip-path 0.1s 0.5s linear;
}
.svg__path.svg-elem-7 {
  transition: clip-path 0.1s 0.6s linear;
}
.svg__path.svg-elem-8 {
  transition: clip-path 0.1s 0.7s linear;
}
.svg__path.svg-elem-9 {
  transition: clip-path 0.1s 0.8s linear;
}
.svg__path.svg-elem-10 {
  transition: clip-path 0.1s 0.9s linear;
}
.svg__path.svg-elem-11 {
  transition: clip-path 0.1s 1s linear;
}
.svg__path.svg-elem-12 {
  transition: clip-path 0.1s 1.1s linear;
}
.svg__path.svg-elem-13 {
  transition: clip-path 0.1s 1.2s linear;
}
.svg__path.svg-elem-14 {
  transition: clip-path 0.1s 1.3s linear;
}
.svg__path.svg-elem-15 {
  transition: clip-path 0.1s 1.4s linear;
}
.svg__path.svg-elem-16 {
  transition: clip-path 0.1s 1.5s linear;
}

.js-svg-active .svg__path {
  clip-path: inset(0 0 0 0);
}

html, body, #aspnetForm {
  overflow-x: clip !important;
}

#aspnetForm {
  overflow-y: clip !important;
}

.area_archive {
  position: relative;
  z-index: 3;
}

.GPH250905ROBUCHON {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
.GPH250905ROBUCHON img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.GPH250905ROBUCHON svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.GPH250905ROBUCHON .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
.GPH250905ROBUCHON .product__block--mv .mv-inner {
  width: 100%;
}
.GPH250905ROBUCHON .product__block--mv .intro__image {
  width: 100%;
  position: relative;
  z-index: 0;
}
.GPH250905ROBUCHON .product__block--mv .intro__image a img {
  width: 100%;
}
.GPH250905ROBUCHON .product__block--mv .intro__text {
  width: calc(561 * var(--formula));
  height: calc(280 * var(--formula));
  top: auto;
  bottom: calc(85 * var(--formula));
  left: calc(140 * var(--formula));
  position: absolute;
  pointer-events: none;
}
.GPH250905ROBUCHON .product__block--mv .intro__text picture {
  width: 100%;
  height: 100%;
}
.GPH250905ROBUCHON .product__block--mv .intro__text img {
  width: 100%;
  height: auto;
}
.GPH250905ROBUCHON .product__block--intro {
  margin: 0 auto;
  padding: calc(83 * var(--formula)) 0 calc(85 * var(--formula)) 0;
  text-align: center;
  z-index: 1;
  position: relative;
}
.GPH250905ROBUCHON .product__block--intro .intro__lead {
  color: #933123;
  font-family: var(--font);
  font-size: calc(19 * var(--formula));
  letter-spacing: 0;
  line-height: 2.1052631579;
  text-align: center;
}
.GPH250905ROBUCHON .product__block--movie {
  width: calc(655 * var(--formula));
  margin: 0 auto 0;
  padding: 0 0 calc(127 * var(--formula)) 0;
}
.GPH250905ROBUCHON .product__block--movie .movie video {
  width: 100%;
}
.GPH250905ROBUCHON .product__block--logo-space {
  padding: calc(379 * var(--formula)) 0 calc(277 * var(--formula));
  background-color: #000;
}
.GPH250905ROBUCHON .product__block.product__block--mens {
  background-color: #000;
}
.GPH250905ROBUCHON .product__block.product__block--ladies {
  background-color: #000;
}
.GPH250905ROBUCHON .product__block .product__block-inner .product__block-innerBg {
  display: block;
  position: absolute;
  width: 100%;
  height: calc(1000 * var(--formula));
  top: auto;
  bottom: calc(-600 * var(--formula));
  border-radius: 0;
  background: #fff;
  z-index: -1;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--01 {
  position: relative;
  padding: calc(123 * var(--formula)) 0 calc(140 * var(--formula)) 0;
  background-image: url(../img/bg_01.jpg);
  background-size: cover;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--02 {
  position: relative;
  padding: calc(123 * var(--formula)) 0 calc(184 * var(--formula)) 0;
  background-color: #000;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--03 {
  position: relative;
  padding: calc(0 * var(--formula)) 0 calc(200 * var(--formula)) 0;
  background-color: #000;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--04 {
  position: relative;
  padding: calc(159 * var(--formula)) 0 calc(105 * var(--formula)) 0;
  background-image: url(../img/bg_01.jpg);
  background-size: cover;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--05 {
  background-color: #000;
  position: relative;
  padding: calc(160 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--06 {
  background-color: #000;
  position: relative;
  padding: calc(256 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__title {
  position: relative;
  z-index: 2;
}
.GPH250905ROBUCHON .product__block .product__title.product__title--01-1 {
  width: calc(556 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__title.product__title--02-1 {
  width: calc(512 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__title.product__title--03-1 {
  width: calc(556 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__title.product__title--04-1 {
  width: calc(609 * var(--formula));
  margin: 0 0 0 calc(77 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__title.product__title--05-1 {
  width: calc(256 * var(--formula));
  position: absolute;
  top: calc(4 * var(--formula));
  left: calc(4 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__title.product__title--06-1 {
  width: calc(259 * var(--formula));
  position: absolute;
  top: calc(4 * var(--formula));
  left: calc(4 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__text-sub {
  position: relative;
  z-index: 2;
}
.GPH250905ROBUCHON .product__block .product__text-sub.product__text-sub--01-4 {
  width: calc(149 * var(--formula));
  position: absolute;
  top: calc(39 * var(--formula));
  left: auto;
  right: calc(25 * var(--formula));
  pointer-events: none;
}
.GPH250905ROBUCHON .product__block .product__image-wrap {
  margin: calc(148 * var(--formula)) 0 0 0;
  position: relative;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--01-1 {
  margin: calc(87 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--01-2 {
  margin: calc(158 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--01-3 {
  margin: calc(125 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--02-1 {
  margin: calc(82 * var(--formula)) 0 0 0;
  position: relative;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--02-2 {
  margin: 0;
  padding: calc(86 * var(--formula)) 0 calc(64 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--02-3 {
  margin: 0;
  padding: calc(0 * var(--formula)) 0 calc(290 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--03-1 {
  margin: calc(98 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--04-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--04-2 {
  margin: calc(164 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--05-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--06-1 {
  margin: calc(0 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image {
  width: calc(750 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__image.product__image--01_1 {
  width: calc(750 * var(--formula));
  margin: 0;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--01_2 {
  width: calc(636 * var(--formula));
  margin: 0 0 0 auto;
  z-index: 2;
  position: relative;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--01_3 {
  width: calc(514 * var(--formula));
  margin: calc(-93 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--01_4 {
  width: calc(472 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--02_1 {
  width: calc(750 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__image.product__image--02_2 {
  width: calc(660 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 auto;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--03_1 {
  width: calc(750 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__image.product__image--03_2 {
  width: calc(608 * var(--formula));
  margin: calc(82 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--04_1 {
  width: calc(750 * var(--formula));
  margin: calc(113 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--04_2 {
  width: calc(750 * var(--formula));
  margin: 0;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--04_3 {
  width: calc(464 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--ladiesLogo {
  width: calc(326 * var(--formula));
  display: block;
  margin: 0 auto;
}
.GPH250905ROBUCHON .product__block .product__image.product__image--05_1 {
  margin: 0;
  width: calc(750 * var(--formula));
  position: relative;
  z-index: 1;
}
.GPH250905ROBUCHON .product__block .product__image .product__image-inner {
  position: relative;
}
.GPH250905ROBUCHON .product__block .product__logo.product__logo--02-1 {
  margin: calc(231 * var(--formula)) auto 0;
  width: calc(336 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__logo.product__logo--04-1 {
  margin: calc(20 * var(--formula)) auto 0;
  width: calc(340 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__logo.product__logo--05-1 {
  width: calc(256 * var(--formula));
  position: absolute;
  top: calc(-57 * var(--formula));
  left: calc(-40 * var(--formula));
  z-index: 2;
  pointer-events: none;
}
.GPH250905ROBUCHON .product__block .product__logo.product__logo--06-1 {
  width: calc(259 * var(--formula));
  position: absolute;
  top: calc(-56 * var(--formula));
  left: calc(-40 * var(--formula));
  z-index: 2;
  pointer-events: none;
}
.GPH250905ROBUCHON .product__block .product__logo.product__logo--06-2 {
  margin: calc(145 * var(--formula)) 0 0 calc(125 * var(--formula));
  width: calc(206 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit {
  width: 100%;
  margin: calc(37 * var(--formula)) auto 0;
  font-family: var(--font-credit);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--01-3 {
  margin: calc(16 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--02-2 {
  margin: calc(22 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--03-2 {
  margin: calc(33 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--03-4 {
  width: calc(536 * var(--formula));
  margin: calc(23 * var(--formula)) 0 0 calc(150 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--04-1 {
  margin: calc(23 * var(--formula)) auto 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--04-2 {
  margin: calc(30 * var(--formula)) auto 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--05-1 {
  margin: calc(30 * var(--formula)) auto 0;
}
.GPH250905ROBUCHON .product__block .product__credit.product__credit--06-1 {
  margin: calc(30 * var(--formula)) auto 0;
}
.GPH250905ROBUCHON .product__block .product__credit.credit__left {
  text-align: left;
}
.GPH250905ROBUCHON .product__block .product__credit.credit__left a {
  margin: 0 calc(10 * var(--formula)) 0 0;
}
.GPH250905ROBUCHON .product__block .product__credit.credit__right {
  text-align: right;
}
.GPH250905ROBUCHON .product__block .product__credit.credit__right a {
  margin: 0 0 0 calc(5 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit.credit__center {
  text-align: center;
}
.GPH250905ROBUCHON .product__block .product__credit.credit__center a {
  margin: 0 calc(10 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit a {
  display: inline-block;
  font-size: calc(26 * var(--formula));
  line-height: 1.3846153846;
  position: relative;
  color: #fff;
}
.GPH250905ROBUCHON .product__block .product__credit a._slash {
  margin: 0 calc(12 * var(--formula)) 0 calc(12 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit a._slash::before {
  display: block;
  position: absolute;
  content: "/";
  right: calc(-20 * var(--formula));
  top: calc(0 * var(--formula));
}
.GPH250905ROBUCHON .product__block .product__credit span {
  display: inline-block;
  font-size: calc(26 * var(--formula));
  line-height: 1.3846153846;
}
.GPH250905ROBUCHON .product__block .product__credit .credit__lead {
  margin: 0 0 calc(12 * var(--formula));
  font-family: var(--font);
  font-size: calc(22 * var(--formula));
  line-height: 1.8181818182;
}
.GPH250905ROBUCHON .product__block .category__list {
  width: calc(750 * var(--formula));
  margin: calc(125 * var(--formula)) 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: calc(67 * var(--formula)) calc(10 * var(--formula));
}
.GPH250905ROBUCHON .product__block .category__list.category__list--02 {
  margin: calc(120 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .category__image {
  width: calc(370 * var(--formula));
}
.GPH250905ROBUCHON .product__block .item__credit {
  text-align: center;
  margin: calc(28 * var(--formula)) 0 0 0;
}
.GPH250905ROBUCHON .product__block .item__credit a {
  font-family: var(--font-credit);
  display: inline-block;
  font-size: calc(24 * var(--formula));
  letter-spacing: 0.03em;
  line-height: 1.4166666667;
  position: relative;
  color: #fff;
}
.GPH250905ROBUCHON .product__block--01 {
  position: relative;
  z-index: 1;
}
.GPH250905ROBUCHON .product__block--02 {
  margin: 0;
  position: relative;
  z-index: 2;
}
.GPH250905ROBUCHON .lp__bottom-area {
  padding: calc(158 * var(--formula)) 0 calc(150 * var(--formula)) 0;
  background-color: #000;
}
.GPH250905ROBUCHON .button__all {
  display: block;
  width: calc(236 * var(--formula));
  margin: 0 auto;
}
.GPH250905ROBUCHON .staff__area {
  margin: calc(72 * var(--formula)) 0 0 calc(0 * var(--formula));
  color: #fff;
  text-align: center;
}
.GPH250905ROBUCHON .staff__area .staff__title {
  font-family: var(--font-credit);
  font-size: calc(24 * var(--formula));
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.GPH250905ROBUCHON .staff__area .staff__name {
  margin: calc(16 * var(--formula)) 0 0 0;
  font-family: var(--font-credit);
  font-size: calc(24 * var(--formula));
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.GPH250905ROBUCHON .staff__area .staff__name.staff__name--01 {
  margin: calc(21 * var(--formula)) 0 0 0;
  font-size: calc(32 * var(--formula));
}

@media print {
  .GPH250905ROBUCHON {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .GPH250905ROBUCHON {
    --header-container-height: 120px;
    display: flex;
    width: 100%;
  }
  .GPH250905ROBUCHON::-webkit-scrollbar {
    display: none;
  }
  .GPH250905ROBUCHON .contents__wrap {
    display: grid;
    grid-template-columns: calc(480 * var(--formula_pc)) calc(960 * var(--formula_pc));
    width: calc(1440 * var(--formula_pc));
    margin: 0 auto;
    background-color: #000;
  }
  .GPH250905ROBUCHON .contents__wrap.sticky_scroll .contents__left {
    top: calc(188 * var(--formula));
  }
  .GPH250905ROBUCHON .contents__wrap.sticky_scroll .contents__right {
    top: calc(188 * var(--formula));
  }
  .GPH250905ROBUCHON .contents__left {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
    transition: top 0.5s;
    background-color: #000;
  }
  .GPH250905ROBUCHON .contents__right {
    grid-column: 2;
    position: sticky;
    top: 0;
    width: 100%;
    height: calc(810 * var(--formula_pc));
    z-index: 1;
    transition: top 0.5s;
  }
  .GPH250905ROBUCHON .product__block--mv .mv-inner {
    width: 100%;
    position: relative;
  }
  .GPH250905ROBUCHON .product__block--mv .intro__image {
    width: 100%;
    height: 100%;
  }
  .GPH250905ROBUCHON .product__block--mv .intro__image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .GPH250905ROBUCHON .product__block--mv .intro__image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .GPH250905ROBUCHON .product__block--mv .intro__image picture {
    width: 100%;
    height: 100%;
  }
  .GPH250905ROBUCHON .product__block--mv .intro__image .intro__text img {
    width: 100%;
    height: auto;
  }
  .GPH250905ROBUCHON .product__block--movie {
    width: calc(394 * var(--formula_pc));
    padding: calc(85 * var(--formula)) 0 0 0;
  }
  .GPH250905ROBUCHON .product__block--intro {
    padding: calc(62 * var(--formula_pc)) 0 calc(79 * var(--formula_pc)) 0;
  }
  .GPH250905ROBUCHON .product__block--intro .intro__lead {
    margin: 0 0 0 0;
    color: #fff;
    font-size: calc(12 * var(--formula_pc));
    line-height: 2;
  }
  .GPH250905ROBUCHON .product__block .product__block-inner {
    overflow-x: clip;
  }
  .GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--01 {
    padding: calc(140 * var(--formula)) 0 calc(140 * var(--formula)) 0;
  }
  .GPH250905ROBUCHON .product__block .product__block-inner.product__block-inner--05 {
    padding: calc(150 * var(--formula)) 0 0 0;
  }
  .GPH250905ROBUCHON .product__block .product__image-wrap.product__image-wrap--03-1 {
    margin: calc(90 * var(--formula)) 0 0 0;
  }
  .GPH250905ROBUCHON .product__block .product__image.product__image--03_2 {
    margin: calc(80 * var(--formula)) 0 0 0;
  }
  .GPH250905ROBUCHON .product__block .product__credit.product__credit--04-2 {
    margin: calc(28 * var(--formula)) auto 0;
  }
  .GPH250905ROBUCHON .lp__bottom-area {
    padding: calc(158 * var(--formula)) 0 calc(172 * var(--formula)) 0;
  }
  .area_archive {
    margin: 0rem auto 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    z-index: 100;
    position: relative;
  }
  .contents__right {
    width: calc(750 * var(--formula));
    height: calc(1080 * var(--formula));
  }
  .contents__right .mv-inner {
    width: calc(750 * var(--formula));
    position: relative;
  }
  .contents__right .mv__image {
    width: calc(770 * var(--formula));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1400px) {
  .cateList {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */
@media screen and (min-width: 768px){
  #main-container.center-contents .breadcrumb{
    width: inherit;
    max-width: initial;
  }
  /* #main-container.center-contents .cateList{
    width: initial;
    padding:initial;
  } */
}


/*========================================================
breadcrumb
========================================================*/
/* ----------[ breadcrumb SP ]---------- */
#main-container .cateList {
  /* margin: calc(58*(100vw / 390)) auto 0 !important;
  padding: 0 0 calc(15 * (100vw / 390)) !important; */
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: calc(10 * (100vw / 390));
  letter-spacing: 0.01em;
  line-height: calc(20 * (100vw / 390));
  color: #4d4d4d;
  /* white-space: nowrap; */
  text-align: left;
}

/* ----------[ breadcrumb table ]---------- */
@media only screen and (min-width: 560px) {
  #main-container .cateList {
    /* margin: 0 auto !important;
    padding: calc(26* (100vw / 1400)) calc(40 * (100vw / 1400)) calc(49 * (100vw / 1400)) 0 !important; */
    font-size: calc(13 * (100vw / 1400));
    letter-spacing: 0.01em;
    line-height: normal;
    color: #4d4d4d;
  }

  #main-container .cateList span {
    padding: 0 calc(5 * (100vw / 1400));
  }
}

/* ----------[ breadcrumb PC ]---------- */
@media only screen and (min-width: 1400px) {
  #main-container .cateList {
    /* margin: auto !important;
    padding: 26px 40px 49px 0 !important; */
    font-size: 13px;
    height: 50px;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-style: normal;
    font-weight: normal;
  }

  #main-container .cateList span {
    padding: 0 5px;
  }
}
