@charset "UTF-8";
/* CSS Document */


/* =================================
   Section Item
================================= */
:root{
  --color-black:#121212;
  --color-white:#ffffff;
  --color-gray:#f3f3f4;
  --color-dark-gray:#d1d1d1;
  --color-accent:#a2007e;

  --font-en:'Montserrat',sans-serif;
  --font-ja:'Noto Sans JP',sans-serif;
}

body{
  font-family:var(--font-ja);
  font-size:15px;
  line-height:1.7;
  color:var(--color-black);
}

body.is-scrolled {
  padding-top: 74px; 
}

.l-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 24px;
}

.section{
  padding:60px 0;
}

.section--narrow{
  padding-bottom:0;
}

.section__eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .1em;
  margin-bottom: 8px;
  color: #777;
}

.section__title{
  font-size:28px;
  line-height:1.3;
  margin-bottom:24px;
}

.section__lead {
  margin-bottom: 48px;
}

/* PC Layout
----------------------------------- */
@media (min-width: 768px) {

  body{
    font-size:16px;
  }

  body.is-scrolled {
    padding-top: 140px;
  }

  .l-container{
    padding:0 10%;
  }

  .section{
    padding:120px 0;
  }

  .section--narrow{
    padding-bottom:0;
  }

  .section__title{
    font-size:38px;
    margin-bottom:48px;
  }

  .section__lead {
    margin-bottom: 84px;
  }
  
}

/* =================================
   Button
================================= */
.c-button {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.c-button span {
  position: relative;
  z-index: 2;
}

.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewX(-12deg);
  transition: opacity .3s ease;
  background: var(--color-white);
  z-index: 1;
}

.c-button--accent {
  color: var(--color-white);
}

.c-button--accent::before {
  background: var(--color-accent);
}

.c-button--black {
  color: var(--color-white);
}

.c-button--black::before {
  background: var(--color-black);
}

.c-button:hover::before {
  filter:brightness(0.9);
}

.c-button--short {
  width: 240px;
}


/* =================================
   Carousel
================================= */
.product-gallery__carousel{
  overflow:hidden;
}

.c-carousel{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  cursor:grab;
    /* スクロールバー非表示 */
  scrollbar-width:none; /* Firefox */
  -ms-overflow-style:none; /* IE */
}

.c-carousel::-webkit-scrollbar{
  display:none; /* Chrome / Safari */
}

.c-carousel.is-dragging{
  cursor:grabbing;
}

.c-carousel__track{
  display:inline-flex;
  gap:8px;
  padding:0 24px;
}

.c-carousel__item{
  flex:0 0 auto;
  width:180px;
}

.c-carousel__image{
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}

/* PC Layout
----------------------------------- */
@media (min-width:768px){
  .c-carousel__item{
    width:250px;
  }

  .c-carousel__track{
    padding:0;
  }

}


/* =================================
   Product Card
================================= */
.product-list__grid{
  display:grid;
  gap:32px;
}

.c-product-card{
  background: var(--color-gray);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-product-card__media{
  display:block;
}

.c-product-card__img{
  width:90%;
  object-fit:contain;
  margin: 0 auto;
}

.c-product-card__body{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.c-product-card__title{
  font-family:var(--font-en);
  font-size:28px;
  font-weight:700;
  line-height:1.3;
}

.c-product-card__subtitle{
  font-size:14px;
  color:#999;
  margin-bottom: 8px;
}

.c-product-card__price{
  font-family:var(--font-en);
  font-size:25px;
  font-weight:700;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}

.c-product-card__tax{
  font-size:15px;
}

.c-product-card__ex{
  font-size:15px;
  font-weight:400;
  color:#777;
  display: block;
}

.c-product-card__buttons{
  display:flex;
  flex-direction:column;
}

.c-product-card__specs{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin:24px 0;
}
 
.c-product-card__spec{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.c-product-card__label{
  font-size:14px;
}

.c-product-card__value{
  color: var(--color-accent);
}

/* bars */
.c-product-card__bars{
  display:flex;
  gap:6px;
}

.c-product-card__bar{
  flex:1;
  height:8px;
  background:var(--color-dark-gray);
  transform:skewX(-12deg);
}

.c-product-card__bar.is-active{
  background:var(--color-accent);
}

/* PC Layout
----------------------------------- */
@media (min-width: 768px) {
  .product-list__grid{
    grid-template-columns:repeat(3,1fr);
  }
}


/* =================================
   Stats Section
================================= */
.stats {
  position: relative;
  padding: 200px 0 60px;
  color: #fff;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-repeat:no-repeat;
}

.home .stats__bg {
  background: url("../img/top/Reiger_Stats_01.jpg");
  background-size: cover;
  background-position:10% center;
}

.postid-62 .stats__bg {
  background-size: 80% cover;
  background-position:45% center;
}

.postid-12 .stats__bg {
  background-size: cover;
  background-position:10% center;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 24px;
  text-align: center;
}

.stats__number {
  font-family: var(--font-en);
  font-size: 55px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.9;
}

.stats__label {
  font-size: 13px;
  opacity: 0.9;
}

/* PC Layout
----------------------------------- */
@media (min-width: 768px) {
  
  .stats {
    padding: 300px 0 200px;
  }

  .postid-62 .stats__bg {
    background-size: cover;
    background-position:50% 40%;
  }

  .stats__inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
  }

  .stats__item {
    flex: 1;
  }

  .stats__item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.9);
  }

  .stats__number {
    font-size: 65px;
  }

  .stats__label {
    font-size: 15px;
  }

}



/* =================================
   Header
================================= */
.header {
  width: 100%;
  margin: 12px 0;
  background: var(--color-white);
}

.header__inner {
  padding: 0 6%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.is-scrolled .header {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  margin-top: 0;
  transition: top .4s ease;
  z-index: 1000;
}

.is-scrolled .header.show {
  top: 0;
}

.header__logo{
  z-index: 900;
}

.header__logo-img {
  display: block;
  height: 26px;
  object-fit: contain;
}

.header__nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.header__toggle {
  position: relative;
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 900;
}

.header__bar {
  width: 100%;
  height: 1px;
  background: var(--color-black);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.is-drawer-open .header__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-drawer-open .header__bar:nth-child(2) {
  opacity: 0;
}

.is-drawer-open .header__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  transform: translateY(-100%);
  transition: transform .4s ease;
  padding: 140px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 700;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer__list .menu-item a {
  font-size: 14px;
  font-weight: 500;
}

.drawer__sns {
  margin-top: 64px;
  display: flex;
  gap: 32px;
}

.is-drawer-open .drawer {
  transform: translateY(0);
}

.header__sns {
  display: none;
  align-items: center;
  gap: 18px;
}

.sns-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* PC Layout
----------------------------------- */
@media (min-width: 768px) {

  .header {
    margin: 35px 0;
  }

  .header__inner {
    height: 70px;
  }

  .header__logo-img {
    height: 32px;
  }

  /* PCではナビ表示 */
  .header__nav {
    flex: 1;
    display: flex;
    justify-content: right;
  }

  .nav {
    display: flex;
    gap: 32px;
  }

  .menu-item a {
    font-size: 14px;
    font-weight: 500;
    transition: opacity .3s;
  }

  .menu-item a:hover {
    opacity: 0.6;
  }

  .header__sns {
    display: flex;
    gap: 32px;
    margin-left: 48px;
  }

  /* PCではドロワー無効 */
  .header__actions {
    display: none;
  }

  .drawer {
    display: none;
  }

}



/* =================================
   footer
================================= */
.footer {
  background: var(--color-dark-gray);
  padding: 64px 0 0;
}

.footer__nav {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__heading {
  font-family:var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer__menu,
.footer__related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__sns {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__bottom {
  border-top: 1px solid;
  padding: 20px 0;
  text-align: center;
}

.footer__copy {
  font-size: 11px;
}

/* PC Layout
----------------------------------- */
@media (min-width: 768px) {

  .footer {
    padding: 100px 0 0;
  }

  .footer__inner {
    margin-bottom: 96px;
  }

  .footer__nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 120px;       
  }

  .footer__col {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

}