@charset "UTF-8";
/*----------------------------------------
	keyframes
----------------------------------------*/
@-webkit-keyframes tapGuide {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.35);
            transform: scale(0.35);
  }
  20% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
  }
}
@keyframes tapGuide {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.35);
            transform: scale(0.35);
  }
  20% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
  }
}
/*----------------------------------------
	common
----------------------------------------*/
:root {
  --font-en: "minion-pro";
  --font-ja: "yu-gothic-pr6n", "Yu Gothic", YuGothic, "游ゴシック", sans-serif;
  --font-ja-hiragino: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Helvetica", "Arial", sans-serif;
  --color-main: #1c1c1c;
  --color-sub: #1c1c1c;
  --bg-white: #ffffff;
  --rgb-product-label: 255,255,255;
  --bg-product-head: #ccc;
  --bg-case: #ddd;
  --height-global-nav: 0px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  position: static !important;
  margin: 0;
  padding: 0;
  background-color: var(--bg-white);
}

main.main-area.lp {
  position: relative;
  margin: 0;
  padding: 0;
}

video {
  width: 100%;
  height: auto;
}

#contentsMain {
  color: var(--color-main);
  font-family: var(--font-en), var(--font-ja);
}

/*----------------------------------------
	u-device-sp
----------------------------------------*/
.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

/*----------------------------------------
	u-device-pc
----------------------------------------*/
@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/*----------------------------------------
	u-animation-fade-in
----------------------------------------*/
.u-animation-fade-in {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.u-animation-fade-in.is-active {
  opacity: 1;
}

/*----------------------------------------
	u-animation-fade-up
----------------------------------------*/
.u-animation-fade-up {
  opacity: 0;
  translate: 0 4rem;
  -webkit-transition: 1s;
  transition: 1s;
}
.u-animation-fade-up.is-active {
  opacity: 1;
  translate: 0 0;
}

/*----------------------------------------
	u-animation-tap-guide
----------------------------------------*/
.u-animation-tap-guide {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: clamp(1.36rem, 1.4166666667vw, 2.21rem);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.u-animation-tap-guide:before, .u-animation-tap-guide:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-animation: tapGuide 2.2s ease-out infinite;
          animation: tapGuide 2.2s ease-out infinite;
}
.u-animation-tap-guide:after {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.u-animation-tap-guide.is-faded {
  opacity: 0;
  visibility: hidden;
}
.u-animation-tap-guide.is-hidden {
  display: none;
}

/*----------------------------------------
	c-button
----------------------------------------*/
.c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 32rem;
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  border: 1px solid #e6e6e6;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: auto;
  rotate: 45deg;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-button:hover {
  background: #e6e6e6;
}

/*----------------------------------------
	c-nav-a
----------------------------------------*/
.c-nav-a {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  top: var(--height-global-nav);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  padding: 2.4rem 0 0.8rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-nav-a {
    padding: 0.8rem 0;
  }
}
.c-nav-a ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-nav-a ul li {
  border-right: 1px solid #e6e6e6;
}
.c-nav-a ul li:last-child {
  border-right: none;
}
.c-nav-a ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  padding: 0.8rem 2.4rem 1.6rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .c-nav-a ul li a {
    font-size: 1.1rem;
    line-height: 1.75;
    padding: 0 0.8rem 1.4rem;
  }
}
.c-nav-a ul li a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: auto;
  rotate: 45deg;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-nav-a ul li a:hover {
  opacity: 0.6;
}

/*----------------------------------------
	c-nav-b
----------------------------------------*/
.c-nav-b {
  position: sticky;
  top: var(--height-global-nav);
  background: var(--bg-white);
  z-index: 10;
}
.c-nav-b ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .c-nav-b ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-nav-b ul li a {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1.6rem 5.6rem 1.6rem 1.6rem;
  border: 1px solid #e6e6e6;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .c-nav-b ul li a {
    font-size: 1.2rem;
    padding: 0.8rem 5.6rem 0.8rem 0.8rem;
  }
}
.c-nav-b ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: auto;
  rotate: 45deg;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-nav-b ul li a:hover {
  background: #e6e6e6;
}

/*----------------------------------------
	c-product
----------------------------------------*/
.c-product {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-product__wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-product__item {
  height: auto;
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-product .js-product-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-product .js-product-column {
    gap: 2.4rem;
  }
}
.c-product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-width: 0;
}
.c-product__img {
  position: relative;
  aspect-ratio: 1/1;
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-product__img .js-swiper-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-width: 0;
}
.c-product__img .swiper-wrapper,
.c-product__img .swiper-slide {
  height: 100%;
  min-width: 0;
}
.c-product__img .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
}
.c-product__img .swiper-scrollbar .swiper-scrollbar-drag {
  background: rgba(0, 0, 0, 0.3);
}
.c-product__img .swiper-slide {
  overflow: hidden;
}
.c-product__img .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-product__img span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.8rem;
  padding: 0.4rem 0.8rem;
  z-index: 1;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .c-product__img span {
    font-size: 1.2rem;
  }
}
.c-product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-product__content {
    padding: 0 0.8rem;
  }
}
.c-product__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  font-size: 1.5rem;
  font-family: var(--font-ja);
}
@media screen and (max-width: 767px) {
  .c-product__name {
    font-size: 1.2rem;
  }
}
.c-product__name span:nth-child(2) {
  font-size: 1.3rem;
  color: #646464;
}
@media screen and (max-width: 767px) {
  .c-product__name span:nth-child(2) {
    font-size: 1.1rem;
  }
}
.c-product__txt {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: var(--font-ja);
}
.c-product__button, .c-product__ctrl {
  display: none;
}
.c-product__button .swiper-button-prev,
.c-product__button .swiper-button-next {
  top: 32%;
  width: 4rem;
  height: 4rem;
  background: #f2f2f2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-product__button .swiper-button-prev,
  .c-product__button .swiper-button-next {
    top: 46%;
  }
}
.c-product__button .swiper-button-prev:before,
.c-product__button .swiper-button-next:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 1rem;
  height: 1rem;
  border-top: 0.2rem solid var(--color-main);
  border-right: 0.2rem solid var(--color-main);
  margin: auto;
}
.c-product__button .swiper-button-prev svg,
.c-product__button .swiper-button-next svg {
  display: none;
}
.c-product__button .swiper-button-prev {
  left: 1.6rem;
}
.c-product__button .swiper-button-prev:before {
  left: 0.4rem;
  rotate: 225deg;
}
.c-product__button .swiper-button-next {
  right: 1.6rem;
}
.c-product__button .swiper-button-next:before {
  right: 0.4rem;
  rotate: 45deg;
}
.c-product__ctrl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  width: 72%;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-product__ctrl {
    padding: 0 0 0 3.2rem;
  }
}
.c-product__ctrl .swiper-scrollbar {
  position: static;
  width: 100%;
}
.c-product__ctrl .swiper-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-product__ctrl .swiper-scroll {
  font-size: 1.4rem;
}
.c-product__ctrl .swiper-pagination {
  position: static;
  width: auto;
  font-size: 1.4rem;
}
.c-product.is-border .c-product__img {
  border: 1px solid rgb(230, 230, 230);
}
.c-product:not(.is-slide) {
  overflow: visible;
}
.c-product:not(.is-slide) .c-product__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2rem 0.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  justify-items: stretch;
  -webkit-transform: none !important;
          transform: none !important;
}
@media screen and (max-width: 767px) {
  .c-product:not(.is-slide) .c-product__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 0.3rem;
  }
}
.c-product:not(.is-slide) .c-product__item {
  width: auto !important;
  margin: 0 !important;
}
.c-product:not(.is-slide).is-item-few .c-product__wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(75% - 0.6rem);
  gap: 2.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-product:not(.is-slide).is-item-few .c-product__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1.6rem;
  }
}
.c-product:not(.is-slide).is-item-few .c-product__item {
  width: auto !important;
}
.c-product:not(.is-slide).is-item-double .c-product__wrapper {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-product:not(.is-slide).is-item-single .c-product__wrapper {
  grid-template-columns: minmax(0, 1fr);
  width: calc(37.5% - 0.3rem);
}
@media screen and (max-width: 767px) {
  .c-product:not(.is-slide).is-item-single .c-product__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-product:not(.is-slide).is-item-single .c-product__item {
    width: 100% !important;
  }
}
.c-product.is-slide {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-product.is-slide {
    padding: 0 3.2rem 0 0;
  }
}
.c-product.is-slide:not(.swiper-initialized) > .c-product__wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: calc((100% - 7.2rem) / 4);
  gap: 3.2rem 2.4rem;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .c-product.is-slide:not(.swiper-initialized) > .c-product__wrapper {
    grid-auto-columns: calc((100% - 1.6rem) / 2);
    gap: 2.4rem 1.6rem;
  }
}
.c-product.is-slide:not(.swiper-initialized) .c-product__item {
  width: auto !important;
  margin: 0 !important;
}
.c-product.is-slide.swiper-initialized > .c-product__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  overflow: visible;
}
.c-product.is-slide .c-product__button {
  display: block;
}
.c-product.is-slide .c-product__ctrl {
  display: none;
}
.c-product.is-slide.is-ctrl-active .c-product__ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*----------------------------------------
	p-mv
----------------------------------------*/
.p-mv a {
  position: relative;
  display: block;
}
.p-mv a .u-animation-tap-guide {
  left: 4rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-mv a .u-animation-tap-guide {
    left: 3.2rem;
    bottom: 3.2rem;
  }
}

/*----------------------------------------
	p-bnr
----------------------------------------*/
.p-bnr {
  position: fixed;
  right: 4rem;
  bottom: 2.4rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-bnr {
    right: 2.4rem;
  }
}
.p-bnr__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  width: 40rem;
  background: #fff;
  padding: 1.6rem;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-bnr__link {
    width: 28rem;
  }
}
.p-bnr__img {
  width: 12rem;
}
@media screen and (max-width: 767px) {
  .p-bnr__img {
    width: 8rem;
  }
}
.p-bnr__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-bnr__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-bnr__content {
    gap: 0.6rem;
  }
}
.p-bnr__title {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-bnr__title {
    font-size: 1.6rem;
  }
}
.p-bnr__txt {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  color: #878787;
}
@media screen and (max-width: 767px) {
  .p-bnr__txt {
    font-size: 1rem;
  }
}
.p-bnr__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0.4rem;
  border: 1px solid #ccc;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-bnr__button {
    font-size: 1rem;
    padding: 0.2rem;
  }
}
.p-bnr__button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.6rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: auto;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-bnr__button:after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.p-bnr__close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: #ccc;
  border-radius: 50%;
  translate: 50% -50%;
}
.p-bnr__close:before, .p-bnr__close:after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.2rem;
  background: var(--color-main);
}
.p-bnr__close:before {
  rotate: 45deg;
}
.p-bnr__close:after {
  rotate: -45deg;
}

/*----------------------------------------
	p-product
----------------------------------------*/
.p-product__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-product__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-product__head {
  width: 32rem;
  background: #efddce;
}
@media screen and (max-width: 767px) {
  .p-product__head {
    width: auto;
    background: transparent;
  }
}
.p-product__head-inner {
  position: sticky;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  top: 0;
  left: 0;
  padding: 16rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-product__head-inner {
    position: static;
    padding: 4rem 1rem 0;
  }
}
.p-product__head-heading {
  font-size: 3.2rem;
  line-height: 1.6;
  font-family: var(--font-en), var(--font-ja-hiragino);
}
.p-product__head-txt {
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: var(--font-ja);
}
@media screen and (max-width: 767px) {
  .p-product__head-txt {
    font-size: 1.2rem;
    text-align: center;
  }
}
.p-product__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: calc(100% - 32rem);
  padding: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-product__main {
    gap: 2.4rem;
    width: auto;
    padding: 0 0 4rem;
  }
}
.p-product__main-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-product__main-category {
    gap: 4rem;
  }
}
.p-product__main-nav {
  position: relative;
}
.p-product__main-nav .c-nav-a,
.p-product__main-nav .c-nav-b {
  position: static;
}
.p-product__main-nav.is-fixed {
  height: var(--height-js-nav);
}
.p-product__main-nav.is-fixed .c-nav-a,
.p-product__main-nav.is-fixed .c-nav-b {
  position: fixed;
  top: var(--height-global-nav);
  left: var(--left-js-nav);
  width: var(--width-js-nav);
  z-index: 10;
}
.p-product__main-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  padding: 4rem 0 0;
}
.p-product__main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-product__main-title {
    padding: 0 2.4rem;
  }
}
.p-product__main-heading {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product__main-heading {
    font-size: 1.2rem;
  }
}
.p-product__main-txt {
  font-size: 1.4rem;
  font-family: var(--font-ja);
  line-height: 1.8;
  text-align: center;
}
.p-product__main-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-product__main-button {
    padding: 0 2.4rem;
  }
}

/*----------------------------------------
	p-visual
----------------------------------------*/
.p-visual {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-visual {
    padding: 4rem 0;
  }
}
.p-visual__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  max-width: 100rem;
  margin: auto;
}
.p-visual__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-visual__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-visual__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-visual__img {
  overflow: hidden;
}
.p-visual__img a {
  display: block;
}
.p-visual__img a:hover img {
  scale: 1.1;
}
.p-visual__img a img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-visual__button a {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6%;
  height: 6%;
  background: rgba(206, 206, 206, 0.6588235294);
  border-radius: 50%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-visual__button a:before, .p-visual__button a:after {
  content: "";
  position: absolute;
  width: 48%;
  height: 6%;
  background: #fff;
}
.p-visual__button a:after {
  rotate: 90deg;
}
.p-visual__button a:hover {
  background: var(--color-main);
}

/*----------------------------------------
	p-case
----------------------------------------*/
.p-case {
  background: var(--bg-case);
  padding: 8rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding: 4rem 2.4rem;
  }
}
.p-case__container {
  display: grid;
  grid-template-columns: 1fr 32rem;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  gap: 0 4rem;
  max-width: 80rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-case__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-case__heading {
  grid-column: 1/2;
  font-size: 2rem;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-case__heading {
    text-align: center;
  }
}
.p-case__heading span {
  display: block;
  font-size: 3.2rem;
}
.p-case__img {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .p-case__img {
    margin: 0 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case__img img {
    width: 24rem;
    margin: auto;
  }
}
.p-case__content {
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-case__content p {
  font-size: 1.4rem;
  font-family: var(--font-ja);
  line-height: 1.8;
}
.p-case__content p + p {
  margin: 1em 0 0;
}

/*----------------------------------------
	p-return
----------------------------------------*/
.p-return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-return {
    padding: 4rem 2.4rem;
  }
}
.p-return a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32rem;
  height: 4rem;
  font-size: 1.4rem;
  border: 1px solid #e6e6e6;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-return a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: auto;
  rotate: -45deg;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.p-return a:hover {
  background: #e6e6e6;
}

/*----------------------------------------
	p-modal
----------------------------------------*/
.p-modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(82, 85, 84, 0.75);
  z-index: 999;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-modal {
    padding: 8rem 2.4rem 4rem;
  }
}
.p-modal a {
  pointer-events: none;
}
.p-modal .c-product__name {
  color: #fff;
}
.p-modal .c-product__name span {
  color: #fff;
}
.p-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-modal.is-active a {
  pointer-events: auto;
}
.p-modal__container {
  max-width: 87rem;
  width: 100%;
  margin: auto;
}
.p-modal__close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 2.4rem;
  right: 2.4rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.p-modal__close:before, .p-modal__close:after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2px;
  background: #fff;
}
.p-modal__close:before {
  rotate: 45deg;
}
.p-modal__close:after {
  rotate: -45deg;
}/*# sourceMappingURL=noble.css.map */

.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-br {
    display: inline;
  }
}