@charset "UTF-8";
/* =====================
	商品ページ
 ======================= */
/** -------------------- 商品グループ（カテゴリ）ページ -------------------- **/
/* ヘッダー部 */
.p-category_header {
  margin-bottom: 20px;
}
.p-category_headerHeading {
  margin-bottom: 20px;
  text-align: center;
}
.p-category_headerHeadingEng {
  font-family: var(--font_eng);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
.p-category_headerHeadingEng:empty {
  display: none;
}
.p-category_headerHeadingJp {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.p-category_headerTxt {
  font-size: 1.5rem;
  line-height: 1.8;
}

/* 商品グループ説明エリア共通 */
.p-category_sec {
  font-size: 1.5rem;
}
.p-category_sec:empty {
  display: none;
}
.p-category_sec h2 {
  padding: 15px 10px 13px;
  border-bottom: 2px solid var(--c_blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 17px;
}

/* おすすめの関連カテゴリ */
.p-category_sec .related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
@media (min-width: 664px) {
  .p-category_sec .related {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 876px) {
  .p-category_sec .related {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-category_sec .related .link {
  border: 1px solid var(--c_border);
  border-radius: 15px;
  padding: 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  overflow: hidden;
}
.p-category_sec .related .image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-category_sec .related .name {
  font-weight: 700;
  line-height: 1.4;
  padding: 0 10px;
}

/* 〇〇の選び方 */
.p-category_sec .howto {
  display: grid;
  grid-template-columns: 100%;
  gap: 10px;
}
@media (min-width: 720px) {
  .p-category_sec .howto {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-category_sec .howto > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
}
.p-category_sec .howto .text {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* FAQ */
.p-category_sec .faq {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-category_sec .faq-q {
  padding: 20px 40px 20px 15px;
  background: #F7F8FB;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  font-weight: 700;
  cursor: pointer;
}
.p-category_sec .faq-q::before {
  content: "Q";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.p-category_sec .faq-q > *::before, .p-category_sec .faq-q > *::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #4D6299;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transition: var(--anim);
}
.p-category_sec .faq-q > *:after {
  transform: rotate(90deg);
}
.p-category_sec .faq-q.is-open > *:after {
  transform: rotate(0deg);
}
.p-category_sec .faq-a {
  padding: 20px 15px 20px 40px;
  display: none;
  position: relative;
}
.p-category_sec .faq-a::before {
  content: "A";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 24px;
  position: absolute;
  left: 15px;
  top: 20px;
}

/** -------------------- 商品詳細ページ -------------------- **/
/* 商品コード・入数・単価 */
.p-product_detail {
  margin: 32px 0 30px;
}
.p-product_detail dl {
  display: flex;
  column-gap: 0.5em;
  align-items: baseline;
  padding: 10px;
  border-bottom: 1px solid var(--c_border);
}
.p-product_detail dl dt {
  flex-shrink: 0;
  font-weight: 700;
}
.p-product_detail dl dt::after {
  content: " : ";
}
/* 入り数違い */
.p-product_variants {
  background: #F7F8FB;
  padding: 30px 20px;
  margin-top: 20px;
}
.p-product_variants:empty {
  display: none;
}
.p-product_variants ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.p-product_variants ul::before {
  content: attr(data-title);
  font-size: 1.5rem;
  font-weight: 700;
  grid-column: span 2;
}
@media (min-width: 526px) {
  .p-product_variants ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-product_variants ul:before {
    grid-column: span 3;
  }
}
.p-product_variants ul a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  color: var(--c_blue);
  background: var(--c_wht);
  border: 1px solid var(--c_blue);
  border-radius: 100px;
  padding: 18px 16px 16px;
}
.p-product_variants ul a.is-current {
  background: var(--c_blue);
  color: var(--c_wht);
  pointer-events: none;
}

/* 商品説明エリア共通 */
.p-product_sec:empty {
  display: none;
}
.p-product_sec h2 {
  padding: 15px 10px 13px;
  border-bottom: 2px solid var(--c_blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05em;
}

/* 商品詳細・使用用途 */
.p-product_sec dl.detail {
  display: grid;
  grid-template-columns: 100px 1fr;
}
.p-product_sec dl.detail dt {
  background: #F7F8FB;
  font-weight: 700;
  border-bottom: 1px solid var(--c_border);
  padding: 15px 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-product_sec dl.detail dd {
  border-bottom: 1px solid var(--c_border);
  padding: 15px 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 画像説明エリア */
.p-product_sec .images figure {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}
.p-product_sec .images figure:first-child {
  margin-top: 0;
}
.p-product_sec .images figure:last-child {
  margin-bottom: 0;
}

/* 類似品 */
.p-product_sec .similar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 335px));
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.p-product_sec .similar > li a {
  border: 1px solid var(--c_border);
  border-radius: 30px;
  display: flex;
  column-gap: 5.5%;
  justify-content: center;
  padding: 19px 29px;
}
.p-product_sec .similar > li a > figure {
  flex: 0 0 38.5%;
}
.p-product_sec .similar > li a > div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-product_sec .similar > li a .name {
  font-weight: 700;
  margin-bottom: auto;
}
.p-product_sec .similar > li a dl {
  margin-top: 8px;
  display: flex;
}
.p-product_sec .similar > li a dl dt {
  font-weight: 700;
}
.p-product_sec .similar > li a dl dt::after {
  content: ":";
  margin: 0 0.5em;
}

/* 比較表 */
.p-product_sec .compare-scroll {
  overflow-y: hidden;
  overflow-x: auto;
  margin: 20px -20px 0;
  padding: 0 20px;
}
.p-product_sec .compare-scroll::-webkit-scrollbar {
  height: 4px;
}
.p-product_sec .compare-scroll::-webkit-scrollbar-track {
  background-color: var(--c_wht);
}
.p-product_sec .compare-scroll::-webkit-scrollbar-thumb {
  background-color: var(--c_bg);
  border-radius: 100px;
}
.p-product_sec .compare {
  width: max-content;
  display: grid;
  grid-auto-flow: column;
}
.p-product_sec .compare-column {
  max-width: 200px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 99;
  border-left: 1px solid var(--c_border);
}
.p-product_sec .compare-column > a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 99;
}
.p-product_sec .compare-column > a > * {
  border-bottom: 1px solid var(--c_border);
  padding: 12px 10px 9px;
}
.p-product_sec .compare-column > a > *:nth-child(even) {
  background: #F7F8FB;
}
.p-product_sec .compare-column > a > *:first-child {
  border-bottom: 0;
}
.p-product_sec .compare-column:first-child {
  max-width: none;
  text-align: center;
  border-left: 0;
  font-weight: 700;
}
.p-product_sec .compare-column:first-child > a > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FAQ */
.p-product_sec .faq {
  max-width: 1000px;
  margin: 20px auto 0;
  line-height: 1.8;
}
.p-product_sec .faq-q {
  padding: 20px 40px 20px 15px;
  background: #F7F8FB;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  font-weight: 700;
  cursor: pointer;
}
.p-product_sec .faq-q::before {
  content: "Q";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.p-product_sec .faq-q > *::before, .p-product_sec .faq-q > *::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #4D6299;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transition: var(--anim);
}
.p-product_sec .faq-q > *:after {
  transform: rotate(90deg);
}
.p-product_sec .faq-q.is-open > *:after {
  transform: rotate(0deg);
}
.p-product_sec .faq-a {
  padding: 20px 15px 20px 40px;
  display: none;
  position: relative;
}
.p-product_sec .faq-a::before {
  content: "A";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 24px;
  position: absolute;
  left: 15px;
  top: 20px;
}

/* スマホのみ
  ------------------------ */
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  /** -------------------- 商品グループ（カテゴリ）ページ -------------------- **/
  /* ヘッダー部 */
  .p-category_header {
    margin-bottom: 40px;
  }
  .p-category_headerHeading {
    margin-bottom: 40px;
  }
  .p-category_headerHeadingEng {
    font-size: 5.4rem;
    margin-bottom: 12px;
  }
  .p-category_headerHeadingJp {
    font-size: 1.8rem;
  }
  /* 商品グループ説明エリア共通 */
  .p-category_sec h2 {
    font-size: 2.4rem;
    padding: 20px 20px 18px;
    margin-bottom: 20px;
  }
  /* おすすめの関連カテゴリ */
  .p-category_sec .related {
    grid-template-columns: repeat(5, 1fr);
  }
  /* 〇〇の選び方 */
  .p-category_sec .howto {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 25px;
  }
  .p-category_sec .howto > li {
    padding: 20px;
    column-gap: 20px;
    border-radius: 15px;
  }
  .p-category_sec .howto .text {
    font-size: 1.3rem;
  }
  /* FAQ */
  .p-category_sec .faq:first-of-type {
    margin-top: 40px;
  }
  .p-category_sec .faq-q {
    padding: 20px 60px 20px 30px;
    column-gap: 20px;
  }
  .p-category_sec .faq-q::before {
    font-size: 2.4rem;
  }
  .p-category_sec .faq-q > *::before, .p-category_sec .faq-q > *::after {
    right: 30px;
  }
  .p-category_sec .faq-a {
    padding: 20px 30px 20px 68px;
  }
  .p-category_sec .faq-a::before {
    font-size: 2.4rem;
    left: 30px;
  }
  /** -------------------- 商品詳細ページ -------------------- **/
  /* 商品コード・入数・単価 */
  .p-product_detail {
    margin: 32px 0 40px;
  }
  .p-product_detail dl {
    padding: 14px 10px 13px;
  }
  /* 入り数違い */
  .p-product_variants {
    padding: 30px;
  }
  .p-product_variants ul {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-product_variants ul::before {
    grid-column: span 2;
  }
  /* 商品価格・ポイント */
  /* 商品説明エリア共通 */
  /* 商品詳細・使用用途 */
  /* 画像説明エリア */
  /* 類似品 */
  /* 比較表 */
  /* FAQ */
}
@media (min-width: 1200px) and (min-width: 1510px) {
  .p-product_variants ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-product_variants ul::before {
    grid-column: span 3;
  }
}
@media (min-width: 1200px) {
  .p-product_price-point {
    margin: 40px 0 20px;
    display: flex;
    column-gap: 14px;
    align-items: flex-end;
  }
  .p-product_sec h2 {
    font-size: 2.4rem;
    line-height: 1;
    padding: 20px 20px 18px;
  }
  .p-product_sec dl.detail {
    grid-template-columns: 160px 1fr;
    letter-spacing: 0.05em;
  }
  .p-product_sec dl.detail dt {
    padding: 20px 20px 19px;
  }
  .p-product_sec dl.detail dd {
    padding: 20px 20px 19px;
  }
  .p-product_sec .images figure {
    margin: 30px auto;
  }
  .p-product_sec .similar {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 2%;
    justify-content: flex-start;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .p-product_sec .similar {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 15px 25px;
  }
}
@media (min-width: 1200px) {
  .p-product_sec .compare-scroll {
    margin: 30px -20px -10px 0;
    padding: 0 20px 10px 0;
  }
  .p-product_sec .compare-column {
    max-width: 218px;
  }
  .p-product_sec .compare-column > a > * {
    padding: 10px 20px 9px;
  }
  .p-product_sec .compare-column:first-child {
    width: 160px;
    text-align: left;
  }
  .p-product_sec .faq:first-of-type {
    margin-top: 40px;
  }
  .p-product_sec .faq-q {
    padding: 20px 60px 20px 30px;
    column-gap: 20px;
  }
  .p-product_sec .faq-q::before {
    font-size: 2.4rem;
  }
  .p-product_sec .faq-q > *::before, .p-product_sec .faq-q > *::after {
    right: 30px;
  }
  .p-product_sec .faq-a {
    padding: 20px 30px 20px 68px;
  }
  .p-product_sec .faq-a::before {
    font-size: 2.4rem;
    left: 30px;
  }
}