@charset "UTF-8";
/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires a media query to cap the value at B.
 */
/****************************************

  init

*****************************************/
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/****************************************

  utility

*****************************************/
#raygel .u-hidden-sp {
  display: none;
}
@media print, screen and (min-width: 992px) {
  #raygel .u-hidden-sp {
    display: block;
  }
}
@media print, screen and (min-width: 992px) {
  #raygel .u-hidden-pc {
    display: none;
  }
}
#raygel .u-disabled {
  opacity: 0.2;
  pointer-events: none;
}

/****************************************

  Foundation

*****************************************/
#raygel {
  position: relative;
  width: 100%;
  color: #6E5D6C;
  font-size: 14px;
  font-family: "Koburina Gothic W6 JIS2004", "YuGothic", "游ゴシック", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  text-align: justify;
  line-height: 1.71;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media print, screen and (min-width: 992px) {
  #raygel {
    font-size: 16px;
  }
}
#raygel a {
  text-decoration: none;
}

.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

#raygel .l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  /*overflow-x: hidden;*/
}
#raygel .l-drawer {
  position: relative;
  z-index: 6;
}
#raygel .l-globalHeader {
  position: relative;
  z-index: 3;
}
#raygel .l-mainContainer {
  z-index: 1;
}
#raygel .l-globalFooter {
  z-index: 2;
}

#raygel .l-mainContainer #raygel-intro {
    display: none !important;
}

/*:root {
  overflow: auto;
}
:root.is-open {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  :root.is-open {
    overflow: auto;
  }
}*/

.drawerArea {
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 999;
}
.drawerArea__backdrop {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.drawerArea[aria-expanded] {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawerArea[aria-expanded] .drawerArea__backdrop {
  transition-property: opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.drawerArea[aria-expanded] .drawerMenu {
  transform: translateX(-100%);
}
.drawerArea[aria-expanded=true] {
  visibility: visible;
}
.drawerArea[aria-expanded=true] .drawerArea__backdrop {
  opacity: 1;
}
.drawerArea[aria-expanded=true] .drawerMenu {
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(0);
}
.drawerArea[aria-expanded=false] {
  visibility: hidden;
}
.drawerArea[aria-expanded=false] .drawerArea__backdrop {
  opacity: 0;
}
.drawerArea[aria-expanded=false] .drawerMenu {
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.drawerMenu {
  width: 100%;
  height: calc(var(--vh) * 100);
  padding: /*150px*/180px 30px 50px;
  background-color: #BDB5BD;
  overflow: auto;
}
@media print, screen and (min-width: 992px) {
  .drawerMenu {
    width: 50%;
    padding: 150px 80px 0;
  }
}
@media print, screen and (max-width: 991px) {
	.is-scrolled .drawerMenu {
    	padding-top: 264px;
	}
}
@media print, screen and (max-width: 767px) {
	.is-scrolled .drawerMenu {
    	padding-top: 206px;
	}
}
.drawerMenu__close {
  display: block;
  position: absolute;
  top: /*26px*/90px;
  left: 30px;
  width: 60px;
  height: 15px;
  box-sizing: border-box;
  z-index: 4;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 992px) {
  .drawerMenu__close {
    display: none;
  }
}
@media print, screen and (max-width: 991px) {
  .is-scrolled .drawerMenu__close {
    top: 140px;
  }
}
@media print, screen and (max-width: 767px) {
  .is-scrolled .drawerMenu__close {
    top: 82px;
  }
}
.drawerMenu__close .img {
  display: block;
  width: auto;
  height: 15px;
}
.drawerMenu__listItem:nth-child(n+2) {
  margin-top: 48px;
}
.drawerMenu__link {
  display: flex;
}
.drawerMenu__linkText {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  overflow: hidden;
}
.drawerMenu__linkText::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 800px;
  height: 1px;
  background-color: #6E5D6C;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawerMenu__linkText .img {
  width: auto;
  height: /*30px*/26px;
}

.drawerOpen {
  display: block;
  position: fixed;
  top: 26px;
  left: 30px;
  width: 56px;
  height: 15px;
  box-sizing: border-box;
  z-index: 4;
  transform: translateY(-80px);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.is-scrolled .drawerOpen {
  pointer-events: default;
  transform: translateY(0);
}

@media print, screen and (min-width: 992px) {
  .drawerOpen {
    display: none;
  }
}
@media print, screen and (max-width: 991px) {
	.is-scrolled .drawerOpen {
		top: 140px;
	}
}
@media print, screen and (max-width: 767px) {
	.is-scrolled .drawerOpen {
		top: 82px;
	}
}
.drawerOpen .img {
  display: block;
  width: auto;
  height: 15px;
}
.drawerOpen__bar {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background: #6E5D6C;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.drawerOpen__bar:nth-child(1) {
  top: calc(50% - 12px);
  transform-origin: 50% 50%;
}
.drawerOpen__bar:nth-child(2) {
  top: calc(50% - 1px);
}
.drawerOpen__bar:nth-child(3) {
  bottom: calc(50% - 12px);
  transform-origin: 50% 50%;
}
.is-open .drawerOpen__bar {
  width: 100%;
  transition: all 0.25s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.is-open .drawerOpen__bar:nth-child(1) {
  top: calc(50% - 1px);
  transform-origin: 50% 50%;
}
.is-open .drawerOpen__bar:nth-child(2) {
  opacity: 0;
}
.is-open .drawerOpen__bar:nth-child(3) {
  bottom: calc(50% - 1px);
  transform-origin: 50% 50%;
}

.globalHeader {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-scrolled .globalHeader {
  transform: translateY(0);
  background-color: #fff;
}
@media print, screen and (max-width: 1023px) {
	.is-scrolled .globalHeader {
		top: 114px;
	}
}
@media print, screen and (max-width: 767px) {
	.is-scrolled .globalHeader {
		top: 58px;
	}
}

.globalHeader__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
}
@media print, screen and (min-width: 992px) {
  .globalHeader__container {
    display: flex;
    flex-direction: row;
    justify-content: /*flex-start*/center;
    height: 80px;
    padding-left: 85px;
    padding-right: 85px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}
.globalHeader__logo {
  width: 116px;
  pointer-events: default;
}
@media print, screen and (min-width: 992px) {
  .globalHeader__logo {
    width: 124px;
  }
}
.globalHeader__logo img {
  width: 100%;
  height: auto;
}

.globalNav {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .globalNav {
    display: block;
  }
}
.globalNav__list {
  display: flex;
}
.globalNav__listItem {
  margin-left: 50px;
}
.globalNav__linkText .img {
  width: auto;
  height: 16px;
}

.hero {
  background-image: url(/_ui/responsive/common/ui_assets/online/bg/pickup/raygel/renewal/img/pic_hero_sp.jpg);
  background-position: center center;
  background-size: cover;
  height: /*calc(var(--vh) * 100)*/640px;
}
@media print, screen and (max-width: 991px) {
	/*.hero {
        height: 1024px;
    }*/
}
@media print, screen and (min-width: 992px) {
  .hero {
    height: 800px;
    background-position: center top;
    background-image: url(/_ui/responsive/common/ui_assets/online/bg/pickup/raygel/renewal/img/pic_hero02.jpg);
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 40px 30px;
}
@media print, screen and (min-width: 992px) {
  .hero__container {
    justify-content: center;
    width: 1170px;
    height: 100%;
    padding: 0 85px;
  }
}
.hero__logo {
  -ms-grid-row-align: center;
  align-self: center;
  width: 315px;
}
@media print, screen and (min-width: 992px) {
  .hero__logo {
    position: absolute;
    left: calc(50% - 440px);
    align-self: flex-start;
    width: 358px;
  }
}
.hero__logo .img {
  display: block;
  width: 100%;
}

.heroHeader {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .heroHeader {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}
.heroHeader__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
}
@media print, screen and (min-width: 992px) {
  .heroHeader__container {
    display: flex;
    flex-direction: row;
    justify-content: /*flex-start*/center;
    max-width: 1170px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 85px;
    padding-right: 85px;
    box-sizing: border-box;
  }
}
.heroHeader__logo {
  width: 116px;
  pointer-events: default;
}
@media print, screen and (min-width: 992px) {
  .heroHeader__logo {
    width: 124px;
  }
}
.heroHeader__logo .img {
  width: 100%;
  height: auto;
}
.heroHeader__menu {
  display: block;
  position: absolute;
  top: 26px;
  left: 30px;
  width: 56px;
  height: 15px;
  box-sizing: border-box;
  z-index: 4;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 992px) {
  .heroHeader__menu {
    display: none;
  }
}
.heroHeader__menu .img {
  display: block;
  width: auto;
  height: 15px;
}

.intro {
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .intro {
    height: auto;
    padding: 150px 0;
  }
}
.intro__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
@media print, screen and (min-width: 992px) {
  .intro__container {
    justify-content: center;
    width: 1170px;
    height: 100%;
    margin: 0 auto;
    padding: 0 80px;
  }
}
.intro__content {
  padding: 100px 30px 80px;
}
@media print, screen and (min-width: 992px) {
  .intro__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 684px;
    padding: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .intro__lagel {
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.intro__label {
  letter-spacing: 0.3em;
  font-weight: 700;
  font-size: 20px;
}
.intro__title {
  margin-top: 0;
}
@media print, screen and (min-width: 992px) {
  .intro__title {
    width: /*770px*/610px;
    margin-top: 48px;
  }
}
.intro__title img {
  width: 100%;
}
.intro__caption {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.875;
}
@media print, screen and (min-width: 992px) {
  .intro__caption {
    margin-top: 48px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.intro__caption p {
  margin-top: 1em;
}
.intro__figure {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .intro__figure {
    display: flex;
    position: absolute;
    right: 85px;
    width: 500px;
    z-index: -1;
  }
}
.intro__figure .picture {
  width: 100%;
  height: 100%;
}
.intro__figure .img {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .intro__figure .img {
    transform: scale(1.15);
  }
}

.movie__container {
  background-color: #EDE8E2;
  padding: 100px 30px;
}
@media print, screen and (min-width: 992px) {
  .movie__container {
    padding: 150px 0;
  }
}
.movie__player {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.movie__player video {
  width: 100%;
}

.point__listItem {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 992px) {
  .point__listItem {
    /*flex-direction: row;
    height: 640px;*/
    width: 50%;
  }
}
@media print, screen and (min-width: 992px) {
  .point__listItem:nth-of-type(odd) {
    /*flex-direction: row-reverse;*/
  }
}
.point__listItem--01 .point__content {
  background: #E5D5D3;
}
@media print, screen and (min-width: 992px) {
  .point__listItem--01 .point__contentInner {
    margin-left: auto;
  }
}
@media print, screen and (min-width: 992px) {
  .point__listItem--01 .point__eyecat .img {
    -o-object-position: left center;
    object-position: left center;
  }
}
.point__listItem--02 .point__content {
  background: #EDE8E2;
}
@media print, screen and (min-width: 992px) {
  .point__listItem--02 .point__eyecat .img {
    -o-object-position: right center;
    object-position: right center;
  }
}
.point__listItem--03 .point__content {
  background: #E0ABA9;
}
@media print, screen and (min-width: 992px) {
  .point__listItem--03 .point__contentInner {
    margin-left: auto;
  }
}
@media print, screen and (min-width: 992px) {
  .point__listItem--03 .point__eyecat .img {
    -o-object-position: left center;
    object-position: left center;
  }
}
@media print, screen and (min-width: 992px) {
  .point__eyecat {
    flex: 0 0 auto;
    width: 50%;
    height: 100%;
  }
}
.point__eyecat img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.point__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 992px) {
  .point__content {
    flex: 0 0 auto;
    /*width: 50%;*/
    height: 100%;
    justify-content: flex-start;
  }
}
.point__list {
    background: #EDE8E2;
    padding: 30px 0;
}
@media print, screen and (min-width: 992px) {
  .point__list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.point__contentInner {
  padding: /*80px*/30px 30px;
}
@media print, screen and (min-width: 992px) {
  .point__contentInner {
    padding: 64px;
    /*max-width: 580px;*/
  }
}
.point__label {
  width: 192px;
}
.point__label img {
  width: 100%;
  height: auto;
}
h3.point__heading {
  margin-top: 16px;
  color: #6E5D6C;
  font-family: "Midashi Min MA31", serif;
}
h3.point__heading .pt_price {
    font-size: 0.8em;
}
@media print, screen and (min-width: 992px) {
  h3.point__heading {
    margin-top: 32px;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
h3.point__heading img {
  display: block;
  width: auto;
  height: 22px;
}
@media print, screen and (min-width: 992px) {
  h3.point__heading img {
    height: 28px;
  }
}

.point__caption {
  margin-top: 24px;
  line-height: 1.875;
}
@media print, screen and (min-width: 992px) {
  .point__caption {
    margin-top: 40px;
  }
}

@media print, screen and (min-width: 992px) {
  .products__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 85px;
  }
}
.products__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 120px 30px 0px;
}
@media print, screen and (min-width: 992px) {
  .products__intro {
    padding: 150px 0 80px;
  }
}
h2.products__title .img {
  width: auto;
  height: 30px;
}
@media print, screen and (min-width: 992px) {
  h2.products__title .img {
    /*width: 442px;*/
    height: auto;
  }
}

.products__lead {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.875;
}
@media print, screen and (min-width: 992px) {
  .products__lead {
    margin-top: 40px;
    text-align: center;
  }
}
.products__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}
@media print, screen and (min-width: 992px) {
  .products__list {
    padding-bottom: 150px;
  }
}
.products__listItem {
  margin-top: 100px;
}
@media print, screen and (min-width: 992px) {
  .products__listItem {
    margin-top: 100px;
  }
}

.product__container {
  margin-left: 30px;
  margin-right: 30px;
}
.product__title {
	position: relative;
    display: flex;
    align-items: center;
}
.product__title .kentei_icon {
    margin-left:10px;
    width: 40px;
	/*position: absolute;
	top: 50%;
	left: 150px;
	transform: translateY(-50%);
	*/
}
.product__caption {
  margin-top: 20px;
  font-size: 16px;
}
.product__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 150px 0 80px;
}
.product__lead {
  margin-top: 24px;
  line-height: 1.875;
}
@media print, screen and (min-width: 992px) {
  .product__lead {
    margin-top: 40px;
    text-align: center;
  }
}
.product__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  margin-top: 48px;
}
@media print, screen and (min-width: 992px) {
  .product__list {
    /*-ms-grid-columns: (25%)[4];IE用*/
    grid-template-columns: /*repeat(4, 25%)*/repeat(3, 1fr);
    gap: 32px 12px;
    margin-top: 24px;
  }
  .product__list.color_slide {
    grid-template-columns: /*repeat(4, 1fr)*/repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 992px) {
  .product__listItem--wide {
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: /*2/5*/2/4;
    margin: 0;
  }
}
.product__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.webcatalog__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.webcatalog__more .button {
    border: solid 1px #707070;
    background: transparent;
    color: #6e5d6c;
}
.webcatalog__more .button:hover {
    border: solid 1px #6E5D6C;
    color: #fff;
    background-color: #6E5D6C;
}
.product__otherLink {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 992px) {
  .product__otherLink {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 100px;
  }
}
.product__otherLinkItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 160px;
  border: 1px solid #707070;
}
.product__otherLinkItem:nth-child(n+2) {
  margin-top: 100px;
}
@media print, screen and (min-width: 992px) {
  .product__otherLinkItem:nth-child(n+2) {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .product__otherLinkItem {
    height: 160px;
  }
}
@media (hover: hover) {
  .product__otherLinkItem:hover {
    text-decoration: none;
  }
}
.product__otherLinkHeading .img {
  width: auto;
  height: 28px;
}
@media print, screen and (min-width: 992px) {
  .product__otherLinkHeading .img {
    height: 37px;
  }
}
.product__otherLinkCaption {
  margin-top: 10px;
  font-family: "Midashi Min MA31", "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 992px) {
  .product__otherLinkCaption {
    margin-top: 20px;
  }
}

@media (hover: hover) {
  .productCard:hover {
    text-decoration: none;
  }
  .productCard:hover .productCard__thumb {
    position: relative;
  }
  .productCard:hover .productCard__thumb::after, .productCard:hover .productCard__thumb::before {
    opacity: 1;
  }
}
@media print, screen and (min-width: 992px) {
  .productCard__container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.productCard__thumb {
  position: relative;
}
.productCard__thumb:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(110, 93, 108, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.productCard__thumb:after {
  content: "購入する";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 60px;
  font-weight: 700;
  font-size: 20px;
  margin: auto;
  color: #fff;
  font-family: "Midashi Min MA31", "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  border: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.productCard__thumb img {
  width: 100%;
}
.productCard__thumb img.kentei_icon {
	min-width: 40px;
	width: /*14%*/18%;
	position: absolute;
	top: /*10px*/3%;
	right: /*10px*/3%;
	z-index: 0;
}
.productCard__content {
  margin-top: 8px;
}
@media print, screen and (min-width: 992px) {
  .productCard__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
h4.productCard__title {
  height: 3.2em;
  font-weight: 400;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  h4.productCard__title {
    font-size: 16px;
  }
}

h4.productCard__title > .movie {
    position: absolute;
    display: inline-block;
    padding: 0.3em;
}

.productCard__termsCover {
    margin-bottom: 30px;
}
.productCard__terms {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 8px;
  margin-top: /*8px*/12px;
}
@media print, screen and (min-width: 992px) {
  .productCard__terms {
    /*-ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;*/
  }
}
.productCard__term {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  font-size: 10px;
  border: 1px solid #6E5D6C;
  border-radius: 9999px;
}
.productCard__caption {
  margin-top: 12px;
  font-size: 12px;
}
.productCard__caption strong {
    font-size: 1.2em;
}

.productCard__detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*margin-top: 24px;*/
    font-size: 12px;
    position: relative;
    margin-bottom: 2em;
    min-height: 50px;
}
.productCard__detail .graf {
    width: 60%;
    /*height: 100%;*/
}
.productCard__detail .graf > dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    height: 100%;
}
.productCard__detail .graf > dl dt:first-child {
    width: 40%;
    /*margin-bottom: 1.6em;*/
}
.productCard__detail .graf > dl dd:first-child {
    margin-bottom: 2em;
}
.productCard__detail .graf > dl dd {
    width: 60%;
}
.productCard__detail .graf > dl dd table {
    position: relative;
    height: 14px;
    border: solid 1px #6E5D6C;
    border-top: none;
}
.productCard__detail .graf > dl dd table tr td {
    line-height: 0;
    width: 25%;
    border-bottom: solid 1px #6E5D6C;
}
.productCard__detail .graf > dl dd table tr td:nth-child(2) {
    border-right: solid 1px #6E5D6C;
    border-left: dotted 1px #BDB5BD;
}
.productCard__detail .graf > dl dd table tr td:nth-child(3) {
    border-right: dotted 1px #BDB5BD;
}
.productCard__detail .graf > dl dd table tr td .dotto {
    position: absolute;
    top: -1.5em;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
    font-weight: bold;
    color: #BDB5BD;
    font-size: 0.8em;
    white-space: nowrap;
}
.productCard__detail .graf > dl dd table tr td .dotto.per0 {
    left: 0;
}
.productCard__detail .graf > dl dd table tr td .dotto.per25 {
    left: 25%;
}
.productCard__detail .graf > dl dd table tr td .dotto.per50 {
    left: 50%;
}
.productCard__detail .graf > dl dd table tr td .dotto.per75 {
    left: 75%;
}
.productCard__detail .graf > dl dd table tr td .dotto.per100 {
    right: 0;
    transform: translateX(50%);
}

.productCard__detail .light_time {
    width: calc(40% - 12px);
    display: flex;
    justify-content: space-between;
    padding-bottom: calc((1em * 1.42857143) - 14px);
}
.productCard__detail .light_time > dl {
    width: calc(50% - 2px);
    text-align: center;
    border: solid 2px #BDB5BD;
}
.productCard__detail .light_time > dl dt, .productCard__detail .light_time > dl dd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}
.productCard__detail .light_time > dl dt {
    color: #fff;
    background: #BDB5BD;
}
.light__attention {
    width: 100%;
    text-align: right;
    position: absolute;
    bottom: -2em;
    right: 0;
}

.productCard__action {
  margin-top: auto;
  padding-top: 8px;
}
.productCard__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Midashi Min MA31", "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 18px;
  padding: 8px 0;
  border: 1px solid #6E5D6C;
}

.productCard__movie:hover {
    cursor: pointer;
}
.productCard__movie .js-modal-video {
    position: relative;
    z-index: 0;
}
.productCard__movie .js-modal-video:before {
    content: "\f144";
    font-family: FontAwesome;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    font-size: 3em;
    opacity: 0.8;
}
.productCard__movie .js-modal-video:after {
    content: "";
    display: block;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.productCard__movie .js-modal-video img {
    max-width: 100%;
}

.modal-video-inner {
    padding: 0 10px;
}
.modal-video-close-btn {
    right: 0;
}

.colorIndex {
  position: relative;
  padding-top: 20px;
  width: 100vw;
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .colorIndex {
    width: auto;
    margin: 0;
    padding-top: 0;
  }
}
.colorIndex__container {
  overflow: auto;
}
.colorIndex__attention {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0;
  top: calc(50% - 40px);
  width: 80px;
  height: 100px;
  background: #000;
  pointer-events: none;
}
.colorIndex__attention::before {
  content: "";
  position: relative;
  left: -10px;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 992px) {
  .colorIndex__attention {
    display: none;
  }
}
@media print, screen and (min-width: 992px) {
  .colorIndex__inner {
    width: /*700px*/620px;
    padding: 0 30px;
  }
}
.colorIndex__slider .swiper-wrapper {
  padding-bottom: 48px;
}
@media print, screen and (min-width: 992px) {
  .colorIndex__slider .swiper-wrapper {
    padding-top: 16px;
    padding-bottom: 48px;
  }
}
.colorIndex__slider .swiper-slide {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .colorIndex__slider .swiper-slide {
    width: 50%;
  }
}
.colorIndex__slider .swiper-slide img {
  width: 100%;
  height: auto;
}
.colorIndex__slider .swiper-pagination-bullet-active {
  background-color: #6E5D6C;
}
.colorIndex__bottom {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 992px) {
  .colorIndex__bottom {
    padding-left: 30px;
  }
}
.colorIndex__info {
  -ms-grid-row-align: center;
  align-self: center;
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 16px;
  font-size: 12px;
  color: #707070;
  border: 1px solid #707070;
}
@media print, screen and (min-width: 992px) {
  .colorIndex__info {
    align-self: flex-start;
    font-size: 14px;
  }
}

.gallery {
  background-color: #EDE8E2;
}
.gallery__container {
  padding: 100px 0;
}
@media print, screen and (min-width: 992px) {
  .gallery__container {
    padding: 150px 0;
  }
}
h2.gallery__title {
  display: flex;
  justify-content: center;
}
h2.gallery__title .img {
  width: auto;
  height: 30px;
}
@media print, screen and (min-width: 992px) {
  h2.gallery__title .img {
    width: 260px;
    height: auto;
  }
}

.gallery__content {
  padding: 50px 0;
}
@media print, screen and (min-width: 992px) {
  .gallery__content {
    padding: 100px 0;
  }
}
.gallery__action {
  display: flex;
  justify-content: center;
}

.gallerySlider .swiper-slide {
  width: 240px;
}
@media print, screen and (min-width: 992px) {
  .gallerySlider .swiper-slide {
    width: 240px;
  }
}
.gallerySlider .swiper-slide .img {
  width: 100%;
  height: auto;
}

.otherContents__container {
  padding: 100px 30px;
}
@media print, screen and (min-width: 992px) {
  .otherContents__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 150px 85px;
  }
}
@media print, screen and (min-width: 992px) {
  .otherContents__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.otherContents__listItem:nth-child(n+2) {
  margin-top: 100px;
}
@media print, screen and (min-width: 992px) {
  .otherContents__listItem:nth-child(n+2) {
    margin-top: 0;
  }
}
.otherContents__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  aspect-ratio: 1;
  background-color: #ccc;
  overflow: hidden;
  text-decoration: none;
  background-color: #000;
}
@media (hover: hover) {
  .otherContents__card:hover {
    color: #fff;
    text-decoration: none;
  }
}
.otherContents__card:hover .otherContents__cardBg {
  transform: scale(1.1);
  opacity: 0.5;
}
.otherContents__cardBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .otherContents__cardBg {
    transition: transform 1s, opacity 1s;
  }
}
.otherContents__cardBg .img {
  width: 100%;
  height: auto;
}
.otherContents__cardContent {
  position: relative;
}
.otherContents__heading {
  display: flex;
  justify-content: center;
}
.otherContents__heading .img {
  width: auto;
  height: 30px;
}
@media print, screen and (min-width: 992px) {
  .otherContents__heading .img {
    height: 50px;
  }
}
.otherContents__caption {
  text-align: center;
  margin-top: 40px;
  line-height: 2.14;
}
.snsLinks__container {
  padding-bottom: 50px;
  padding-top: 30px;
}
@media print, screen and (min-width: 992px) {
    .snsLinks__container {
        padding-top: 85px;
    }
}
.snsLinks__list {
  display: flex;
  justify-content: center;
}
.snsLinks__listItem {
  margin-left: 20px;
  margin-right: 20px;
}
.snsLinks__card {
    display: block;
    width: 50px;
}
.snsLinks__card svg * {
  transition: fill 0.2s;
}
@media (hover: hover) {
  .snsLinks__card:hover svg * {
    fill: #6E5D6C;
  }
  .snsLinks__card {
      width: 40px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 182px;
  height: 55px;
  padding-left: 24px;
  padding-right: 24px;
  color: #fff;
  font-size: 18px;
  font-family: "Midashi Min MA31", "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  background: #BDB5BD;
  white-space: nowrap;
}
@media (hover: hover) {
  .button:hover {
    text-decoration: none;
    color: #fff;
    background-color: #6E5D6C;
  }
}

/**************************
  Basic Modal Styles
**************************/
/*
.modal {
  position: relative;
  z-index: 8;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}
.modal__container {
  position: relative;
}
.modal__content {
  width: 95vw;
  max-width: 800px;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-y: auto;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__close {
  position: absolute;
  right: 24px;
  top: 12px;
  background: transparent;
  width: 25px;
  height: 25px;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .modal__close {
    right: 24px;
    top: 24px;
    width: 33px;
    height: 33px;
  }
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  margin: auto;
  background: #000;
}
@media print, screen and (min-width: 992px) {
  .modal__close::before, .modal__close::after {
    width: 33px;
  }
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}

.modalPlayer {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.modalPlayer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

/*
.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}*/



/*-----コラボカラーバナー------*/
.collabocolor {
    padding: 0 15px;
    margin-top: 80px;
    text-align: center;
}
.collabocolor a {
    display: block;
    text-align: center;
}
.collabocolor a img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}




