@charset "UTF-8";
/* =========================
   FAQ
========================= */
.faq{
  position: relative;
  padding: 80px 0 120px;
}

.faq-inner{
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-head{
  margin: 0 auto 56px;
  text-align: center;
  color: #65764a;
}

.faq-title{
  margin: 0;
  font-family: "Shippori Mincho B1","Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
  font-size: 2.75rem; /* 44px */
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #65764a;
}

.faq-list{
  border-top: 1px solid #8a9870;
}

.faq-item{
  border-bottom: 1px solid #8a9870;
}

.faq-item summary{
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 22px;
  align-items: center;
  padding: 26px 32px;
  cursor: pointer;
  color: #65764a;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-mark{
  font-family: "Shippori Mincho B1","Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
  font-size: 2.25rem; /* 36px */
  line-height: 1;
}

.faq-q{
  color: #65764a;
}

.faq-a{
  color: #a04c5b;
}

.faq-question{
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.faq-item summary::after{
  content: "+";
  justify-self: end;
  font-size: 2rem;
  line-height: 1;
  color: #8a9870;
}

.faq-item[open] summary::after{
  content: "−";
}

/* 開いた時 */
.faq-item[open] .faq-answer-wrap{
  max-height: 500px;
}

.faq-answer-wrap{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 0 32px 28px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.faq-answer{
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #a04c5b;
}

.faq-answer a{
  text-decoration: underline;
}

.faq-button{
  margin: 64px 0 0;
  text-align: center;
}

/* FAQのバラ */
.rose-faq-01{
  position: absolute;
  right: -120px;
  top: -180px;
  width: 480px;
  height: 480px;
  background: url("../img/index/rose_line_02.svg") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1200px){
  .faq-inner{
    padding: 0 40px;
  }

  .rose-faq-01{
    right: -80px;
    top: -20px;
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 900px){
  .faq{
    padding: 56px 0 72px;
  }

  .faq-inner{
    padding: 0 20px;
  }

  .faq-head{
    margin-bottom: 32px;
  }

  .faq-en{
    padding: 0 34px;
    font-size: 0.875rem; /* 14px */
  }

  .faq-en::before,
  .faq-en::after{
    height: 20px;
  }

  .faq-title{
    font-size: 2rem; /* 32px */
  }

  .faq-item summary{
    grid-template-columns: 32px 1fr 24px;
    gap: 14px;
    padding: 18px 8px;
  }

  .faq-mark{
    font-size: 1.75rem; /* 28px */
  }

  .faq-question{
    font-size: 1rem; /* 16px */
    line-height: 1.8;
  }

  .faq-item summary::after{
    font-size: 1.5rem;
  }

  .faq-answer-wrap{
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 0 8px 18px;
  }

  .faq-answer{
    font-size: 1rem; /* 16px */
    line-height: 1.9;
  }

  .faq-button{
    margin-top: 40px;
  }

  .rose-faq-01{
    right: -70px;
    top: 10px;
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 480px){
  .rose-faq-01{
    display: none;
  }
}





/* =========================
   FAQ CATEGORY NAV
========================= */
.faq-category-nav{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
  margin: 0 0 56px;
}

.faq-category-link{
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 0 18px 20px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: "Shippori Mincho B1","Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.faq-category-link::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 56px;
  background: #8a9870;
  transform: translateY(-50%);
}

.faq-category-link:hover{
  color: #65764a;
}

.faq-category-link.is-active{
  color: #65764a;
}

.faq-panel{
  display: none;
}

.faq-panel.is-active{
  display: block;
}

@media (max-width: 900px){
  .faq-category-nav{
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
    margin: 0 0 32px;
  }

  .faq-category-link{
    padding: 8px 0 8px 16px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .faq-category-link::before{
    height: 36px;
  }
}






/* =========================
   PET RULE
========================= */
.petrule{
  padding: 80px 0 120px;
}

.petrule-inner{
  max-width: 1120px;
  margin: 0 auto;
}

.petrule-body{
  max-width: 900px;
  margin: 0 auto;
}

.petrule-intro{
  margin: 0 0 40px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
}

.petrule-list{
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #8a9870;
}

.petrule-list li{
  position: relative;
  margin: 0;
  padding: 24px 0 24px 3.2em;
  border-bottom: 1px solid #8a9870;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
}

.petrule-list li::before{
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 24px;
  font-family: "Shippori Mincho B1","Yu Mincho","Hiragino Mincho ProN","游明朝",serif;
  color: #65764a;
}

.petrule-list{
  counter-reset: item;
}

@media (max-width: 900px){
  .petrule{
    padding: 56px 0 72px;
  }

  .petrule-body{
    max-width: none;
  }

  .petrule-intro{
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.9;
  }

  .petrule-list li{
    padding: 18px 0 18px 2.6em;
    line-height: 1.9;
  }

  .petrule-list li::before{
    top: 18px;
  }
}