@charset "utf-8";
/*********************************
Vallejo -- STYLE-CONTENTS
last update - 2025.11.06
*********************************/
.category {
  padding: 3rem 2vw;
  background: #fcfcfc;
  box-shadow: 0 1px 10px rgb(50 50 50 / 40%);
  position: relative;
}
.category_cont {
  width: var(--w-cont);
  margin: 0 auto;
}
.category_tit {
  font-size: calc(var(--fs) * 3);
  font-weight: bold;
  line-height: 1;
  border-left: calc(var(--fs) * 1.5) solid #202020;
  padding: 1rem 0 0.6rem calc(var(--fs) * 1.5);
  margin: 0 0 calc(var(--fs) * 2) 0;
  position: relative;
}
.category_grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: calc(var(--fs) * 2);
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: calc(var(--fs) * 3);
  }
}
.category_pict {
  picture {
    text-align: center;
    background: var(--c-wht);
    margin: 0 0 0.5em 0;
    display: block;
  }
  @media (max-width: 768px) {
    img {
      width: 100%;
    }
  }
}
.ctg_pict {
  padding: 1px;
  background: var(--c-wht);
  border: 1px solid #777;
}
.menuLcl li {
  a {
    font-size: calc(var(--fs) * 1.4);
    color: var(--c-txt-base);
    position: relative;
    padding: 0.5rem 0 0 0;
    display: flex;
    align-items: baseline;
    &:before {
      content: "▼";
      font-size: 0.8em;
      color: var(--c-green);
      padding: 0 0.5em 0 0;
      position: relative;
      inset: -0.1em 0 0 0;
    }
    &:hover {
      color: var(--c-green);
      text-decoration: underline;
    }
  }
}
@media (max-width: 768px) {
  .menuLcl {
    display: none;
  }
}
.menuLcl.menuGrid {
  --_column: 4;
  border-top: 1px solid #ccc;
  padding: 1rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(var(--_column) , 1fr);
  gap: 0.5em 1em;
  @media (max-width: 768px) {
    --_column: 2;
  }
}
.category_lead {
  font-size: calc(var(--fs) * 1.4);
  p {
    padding: 0 0 1em 0;
    strong {
      padding: 0 0 calc(var(--fs) * 0.5) 0;
      display: block;
    }
    &:has(+ .popup_lnkbtn) {
      padding: 0 0 0.3em 0; 
    }
  }
}
.category_explain {
  padding: 0 0 1.5em 0;
  dt {
    font-size: calc(var(--fs) * 1.6);
    font-weight: bold;
    color: #971e25;
  }
  dd {
    position: relative;
    padding: 0 0 0 1em;
    &:not(:last-of-type) {
      padding: 0 0 0.2rem 1em;
    }
    &:before {
      content: "・";
      position: absolute;
      left: 0;
    }
  }
}
#Popup + .category_explain {
  padding: 1.5em 0 1.5em 0;
}
/* SYSTEM BSL */
.systemBSL {
  padding: calc(var(--rs) * 1.4);
  margin: 2rem 0 4rem 0;
  border: 2px solid #204998;
  border-radius: 10px;
  background: var(--c-wht);
}
.systemBSL dt {
  font-size: calc(var(--fs) * 1.6);
  color: #204998;
  padding: 0 0 0;
}
.systemBSL dd + dd {
  border-top: 1px solid #ededed;
  padding: 1rem 0 0 0;
  margin: 1.5rem 0 0 0;
}
.listBSL {
  padding: 0.5em 0;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 1em;
  li {
    position: relative;
    &:before {
        content: "・";
    }
  }
}
.itemDtail_price {
  padding: 0 0 0 0;
}
.itemDtail_price div {
  padding: 0.7rem 1em 0.5rem;
  display: block grid;
  grid-template-columns: 1fr max-content;
  gap: 1em;
  &:not(:only-child):nth-of-type(odd) {
    background: #f5f5f5;
  }
  &:not(:only-child):nth-of-type(even) {
    background: var(--c-wht);
  }
  &:last-of-type {
    border-bottom: 1px dotted #c5c5c5;
  }
}

.lnkCtgA a {
  color: var(--c-wht);
  text-align: center;
  line-height: 1;
  width: min(76% , 68rem);
  margin-inline: auto;
  margin-block: 0 0;
  padding: 2.3rem 5em 2rem;
  background: var(--c-link);
  border-radius: 5px;
  display: block;
  &:hover {
    background: var(--c-link-hover);
  }
}
.lnkCtgB a {
  color: var(--c-wht);
  text-align: center;
  line-height: 1;
  width: 15em;
  margin-inline: auto 0;
  margin-block: 0 0;
  padding: 2.3rem 0 2rem;
  background: var(--c-link);
  border-radius: 5px;
  display: block;
  &:hover {
    background: var(--c-link-hover);
  }
  @media (max-width: 768px) {
    width: 80%;
    margin-inline: auto auto;
  }
}
.lnkCtgB a.link-not {
  background: #ccc;
  pointer-events: none;
}
.lnkCtgB + .itemDtail_price {
  padding: calc(var(--fs) * 1.4) 0 0 0;
}
.category_lead > .lnkCtgB {
  margin: 1.5rem 0 0 auto;
}
/*-------------------------------
 ITEM CONTENTS
---------------------------------*/
.Item {
  padding: calc(var(--rs) * 10) 2vw;
  background: #fbf8f5;
}
.itemDtl {
  width: var(--w-cont);
  margin: 0 auto;
}
.itemDtl + .itemDtl {
  margin: 8rem auto 0;
}
.itemDtl_tit {
  font-size: calc(var(--fs) * 2.4);
  font-weight: bold;
  line-height: 1;
  color: var(--c-wht);
  padding: 2rem 15px 1.4rem;
  margin: 0 auto 2rem;
  background: #202020;
  border-left: 15px solid #f7a408;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  position: relative;
}
/* Color chart */
.cChart {
  --_column: 4;
  display: block grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: 1cqi;
  container-type: inline-size;
  @media (max-width: 768px) {
    --_column: 2;
    gap: 2cqi;
  }
}
.card {
  padding: 0 0 calc(var(--fs) * 1);
  border: 1px solid #ebebeb;
  background: var(--c-wht);
  box-shadow: 0 0px 1px 0px rgba(226, 220, 214, 1);
  display: block grid;
  reading-flow: grid-order;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0.5rem;
  &:has(.price) {
    grid-row: span 4;
  }
}
.cChip {
  height: 100px;
  overflow: hidden;
  border: 1px solid #999;
  @media (max-width: 768px) {
    height: 70px;
  }
  img {
    width: 100%;
    height: 100%;
  }
}
.cChip.cChip_spfx {
  text-align: center;
  display: block;
  img {
    width: 120%;
  }
}
.card dl {
  padding: 0.5rem calc(var(--fs) * 1) 0.5rem;
  dt {
    font-weight: bold;
    padding: 0 0 0 0;
    &:has(.cCode) {
      display: flex;
      align-items: center;
      justify-content:space-between;
    }
    .cCode {
      font-size: 80%;
      font-weight: normal;
      padding: 0 1rem 0;
      background: #ccc;
    }
  }
  dd {
    font-size: calc(var(--fs) * 1.4);
  }
}
.price {
  font-size: calc(var(--fs) * 1.4);
  margin: 0 0 0 auto;
}
.btnBuy a {
  font-size: calc(var(--fs) * 1.2);
  line-height: 1;
  text-align: center;
  width: fit-content;
  background: var(--c-link);
  border-radius: 5px;
  margin: 0 0 0 auto;
  padding: 0.8rem 2rem 0.6rem;
  position: relative;
  color: var(--c-wht);
  display: block;
  position: relative;
  right: calc(var(--fs) * 1);
  &:hover {
    background: var(--c-link-hover);
  }
}
.btnBuy a.btnBuy_not {
  display: none;
}
.cChart_note {
  font-size: calc(var(--fs) * 1.4);
  padding: 2rem 0 0 0;
	max-inline-size: max-content;
	margin-inline: auto;
}
.cChart_note li {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
/* その他用品用材 */
.itemDtail {
  padding: calc(var(--rs) * 2);
  background: var(--c-wht);
  h5 {
    font-size: calc(var(--fs) * 2.2);
    line-height: 1.3;
    border-left: 0.5em solid #f8b500;
    padding: 0.5rem 0 0.3rem 0.5em;
    margin: 0 0 calc(var(--rs) * 2) 0;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
.itemDtail + .itemDtail , .cChart + .itemDtail {
  margin: calc(var(--rs) * 4) 0 0 0;
}
.itemDtail_grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: calc(var(--rs) * 2);
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}
.itemDtail_manual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.itemDtail_text + .itemDtail_text {
  padding: 0.5em 0 0;
}
.itemDtail_notice {
  background: #ffe8e9;
  margin: 1em 0;
  padding: calc(var(--fs) * 1.4);
}
.itemDtail_notice dt {
  font-weight: bold;
  color: #e00000;
}
.itemDtail_notice dd {
  font-size: calc(var(--fs) * 1.4);
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.itemDtail_tit {
  font-size: calc(var(--fs) * 1.8);
  margin: 0;
  padding: 0.5em 0.5em 0.3em;
  border-left: 0.5em solid #101010;
  background: var(--c-wht);
  box-shadow: 2px 2px 2px rgb(50 50 50 / 30%);
}
.itemDtail_set {
  font-size: calc(var(--fs) * 1.4);
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 0.5em  calc(var(--fs) * 1.6) 0.5em;
  li {
    position: relative;
    &:before {
      content: "・";
    }
    &:not(:last-of-type) {
      padding: 0 0 0.2em 0;
    }
  }
}
.itmpic {
  border: 1px solid #d9d9d9;
  @media (max-width: 768px) {
    max-width: 25rem;
    border: none;
  }
}
/* その他用品用材 */
.itemDtail {
  padding: calc(var(--rs) * 2);
  background: var(--c-wht);
  box-shadow: 1px 1px 4px rgba(226, 220, 214, 1);
  h5 {
    font-size: calc(var(--fs) * 2.2);
    line-height: 1.3;
    border-left: 0.5em solid #f8b500;
    padding: 0.5rem 0 0.3rem 0.5em;
    margin: 0 0 calc(var(--rs) * 2) 0;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
.itemDtail + .itemDtail {
  margin: calc(var(--rs) * 4) 0 0 0;
}
.itemDtail_grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: calc(var(--rs) * 2);
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  figure {
    text-align: center;
    figcaption {
      text-align: left;
      font-size: calc(var(--fs) * 1.2);
      padding: 0.5em 0 0;
    }
  }
}
.itemDtail_manual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.itemDtail_tit {
  font-size: calc(var(--fs) * 1.8);
  margin: 0;
  padding: 0.5em 0.5em 0.3em;
  border-left: 0.5em solid #101010;
  background: var(--c-wht);
  box-shadow: 2px 2px 2px rgb(50 50 50 / 30%);
}

.itemDtail_set {
  font-size: calc(var(--fs) * 1.4);
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 0.5em  calc(var(--fs) * 1.6) 0.5em;
  li {
    position: relative;
    &:before {
      content: "・";
    }
    &:not(:last-of-type) {
      padding: 0 0 0.2em 0;
    }
  }
}
/* itemDtl_etc */
.itemDtl_etc {
  padding: calc(var(--rs) * 1) 0 calc(var(--rs) * 3);
  h3 {
    font-size: calc(var(--fs) * 2);
    padding-bottom: calc(var(--fs) * 0.5);
  }
}
.itemDtl_point {
  color: #2a4a93;
  padding: calc(var(--fs) * 2) 0 0;
  dt {
    color: var(--c-wht);
    line-height: 1;
    width: max-content;
    padding: 0.4em 2em 0.3em;
    margin: 0 0 0.5em;
    background: #2a4a93;
    border-radius: 100vh;
  }
  div {
    font-weight:bold;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em 1rem
  }
}
/*-------------------------------
 itemDtl_pigment
---------------------------------*/
.card:has(.pgmntCchip) {
  border: 1px solid #535353;
  box-shadow: 0 3px 3px 0 rgba(50, 50, 50, 0.4);
}
.pgmncChart {
  --_column: 3;
  display: block grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: 2cqi;
  container-type: inline-size;
  @media (max-width: 768px) {
    --_column: 2;
  }
}
.pgmntCchip {
  color: var(--c-wht);
  background: #505050;
  padding: calc(var(--rs) * 1);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: flex-start;
  gap: calc(var(--rs) * 1);
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.card dl.pgmntItem {
  padding: 0 0 0;
  margin-top: -0.3em;
}
.dscpItm {
  font-size: calc(var(--fs) * 1.4);
  padding: calc(var(--rs) * 0.5) calc(var(--rs) * 1) calc(var(--rs) * 1);
}
/*-------------------------------
 itemDtl_material
---------------------------------*/
.itemDtl_material {
  --_column: 2;
  container-type: inline-size;
  display: grid;
  grid-template-columns: repeat(var(--_column) , 1fr);
  gap: 2cqi;
  @media (max-width: 768px) {
    --_column: 1;
  }
}
.material_cont {
  background: var(--c-wht);
  border: 1px solid #ebe8e5;
  box-shadow: 0 0px 1px 0px rgba(226, 220, 214, 1);
  display: flex;
  flex-direction: column;
  figure {
    text-align: center;
    background: #202020;
    padding: 1rem;
    flex-shrink: 0;
  }
}
.material_usp {
  padding: calc(var(--rs) * 1) calc(var(--rs) * 1) calc(var(--rs) * 1.5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  h5 {
    font-size: calc(var(--fs) * 1.6);
    margin: 0 0px 1rem 0px;
    padding: 0.5em 1rem;
    border-left: 10px solid #101010;
    background: #f9f9f9;
    box-shadow: 2px 2px 3px rgba(50, 50, 50, 0.2);
  }
  .material_price {
    text-align: right;
    padding: 1rem 0 1.5rem;
  }
  .material_txt {
    font-size: calc(var(--fs) * 1.4);
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
    padding: 1.5rem 1rem 1.5rem;
    margin: 0 0 1.5rem;
  }
}
.material_txt + .material_txt {
  border-top: none;
  padding: 0 1rem 1.5rem;
}
.material_usp:not(:has(.material_txt)) {
  .material_price {
    border-bottom: 1px dotted #ccc;
    margin-bottom: calc(var(--rs) * 1.5);
  }
}
.lnkMtr {
  width: 80%;
  margin-inline: auto;
  margin-block: auto 0;
}
.lnkMtr a {
  text-align: center;
  color: var(--c-wht);
  line-height: 1;
  padding: 2rem 0 1.8rem;
  background: var(--c-link);
  border-radius: 5px;
  display: block;
  &:hover {
    background: var(--c-link-hover);
  }
}
/* thinner */
.itemDtl_replication-grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  padding: 0.5em 0 0;
}

.itemDtl_replication-grid dt {
  font-weight: bold;
  position: relative;
  padding: 0 1em 0 0;
  margin: 0 0 0 0;
  &:before {
    content: "・";
    position: relative;
    inset: 0;
  }
}
.itemDtl_replication-grid dd {
  margin: 0;
}
.itemDtl_replication-grid dt,
.itemDtl_replication-grid dd {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.itemDtl_replication-grid dt:nth-child(4n - 1),
.itemDtl_replication-grid dd:nth-child(4n) {
  background-color: var(--c-wht);
}
/*-------------------------------
 Friend Shop
---------------------------------*/
.nav-shop {
  position: relative;
  background: #202020;
}
.nav-shop > * {
  color: var(--c-wht);
  width: var(--w-cont);
  margin: 0 auto;
}
.nav-shop dt {
  font-size: calc(var(--fs) * 2.8);
  font-weight: bold;
  text-align: center;
  padding: 30px 0 20px;
  @media (max-width: 768px) {
    font-size: calc(var(--fs) * 2.2);
  }
}
.nav-shop dt span {
  font-size: calc(var(--fs) * 1.6);
  font-weight: normal;
  display: block;
}
.nav-link {
  --_column: 6;
  display: grid;
  grid-template-columns: repeat(var(--_column) , 1fr);
  border-top: 1px solid #666666;
  @media (max-width: 768px) {
    --_column: 3;
  }
  dd {
    font-size: calc(var(--fs) * 1.8);
    text-align: center;
  }
}
.link-all {
  color: var(--c-wht);
  padding: calc(var(--rs) * 2) 0 calc(var(--rs) * 1.8);
  display: block;
}
.link-all:hover {
  color: var(--c-wht);
  background: #000;
}
.fs-wrap {
  background: var(--c-wht);
  box-shadow: 10px 0px 5px rgb(0 0 0 / 10%);
  position: relative;
}
.fs-nav {
  font-size: calc(var(--fs) * 2.2);
  font-weight: bold;
  color: #0095d9;
  display: block;
  margin: 0 auto;
  padding: 1rem 2vw 1rem;
}
.fs-nav:hover {
  color: var(--c-wht);
  background: #555;
}
/*-------------------------------
 Friend Shop - List Table
---------------------------------*/
.address-container {
  width: var(--w-cont);
  border: 2px solid #666;
  background: var(--c-wht);
  margin: 0 auto;
  position: relative;
}
.address-container + .address-container {
  margin: calc(var(--rs) * 5) auto 0;
}
.itemDtl .address-container:not(:last-of-type) {
  margin: 0px auto 80px;
}
.country {
  padding: 1.2rem 0 1rem calc(var(--fs) * 1.6);
  background: #202020;
  border-left: calc(var(--fs) * 1.6) solid #f7a408;
}
.country h2	{
  font-size: calc(var(--fs) * 2);
  text-align: left;
  color: var(--c-wht);
  margin: 0;
}
.data.name.new {
  position: relative;
  &:after {
    content: "New";
    font-size: calc(var(--fs) * 1);
    color: #c00;
    display: inline-block;
    position: relative;
    left: 0.5em;
    bottom: 0.5em;
  }
}
.address-item .data.add .zip,
.address-item .data.add .addr {
    display: block;
}
@media (min-width: 769px) {
  .address-header,
  .address-item {
    display: grid;
    grid-template-columns: 30rem 1fr 20rem; 
  }
  .address-header {
    background: #777;
    color: var(--c-wht);
    text-align: center;
    border-bottom: 1px solid #555;
  }
  .address-header > div {
    padding: 0.7rem 0 0.5rem;
  }
  .add {
    border-left: dotted 1px #999;
    border-right: dotted 1px #999;
  }
  .address-item {
    background: var(--c-wht); 
    border-bottom: 1px solid #555;
  }
  .address-item:nth-child(2n) {
    background: #eeeeee;
  }
  .address-item:last-child {
    border-bottom: none; 
  }
  .address-item .data {
    padding: 1.4rem 1em 1rem;
    background: transparent;
  }
  .address-item .data::before {
    content: none;
  }
}
@media (max-width: 768px) {
  .address-header {
    display: none;
  }
  .address-item {
    display: block;
    padding: 1rem 0 1rem;
  }
  .address-item:nth-child(2n) {
    background: #eeeeee;
  }
  .address-item .data {
    display: block;
    padding: 0.2em 1em;
    position: relative;
    padding-left: 90px;
    line-height: 1.5;
    border-left: none;
    border-right: none;
  }
  .address-item .data::before {
    font-weight: bold;
    color: #333;
    position: absolute;
    left: 1em; 
    width: 70px;
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 14px;
  }
  .address-item .name::before {
    content: "店名";
  }
  .address-item .add::before {
    content: "住所";
  }
  .address-item .tel::before {
    content: "電話番号";
  }
  .address-item .name::before , .address-item .add::before , .address-item .tel::before{
    font-size: calc(var(--fs) * 1.6);
  }
}
/*-------------------------------
 The vallejo Mission
---------------------------------*/
.mChart {
  --_column: 3;
  display: grid;
  grid-template-columns: repeat(var(--_column) , 1fr);
  align-items: stretch; 
  container-type: inline-size;
  gap: 2cqi;
  @media (max-width: 768px) {
    --_column: 2;
  }
  @media (max-width: 500px) {
    --_column: 1;
    gap: 4cqi;
  }
}
.mCard {
  border: 1px solid #535353;
  background: #fff;
  box-shadow: 0 3px 3px 0 rgba(50, 50, 50, 0.4);
  display: grid;
  align-items: stretch;
  grid-template-rows: 
    min-content
    min-content
    min-content
    1fr
    min-content
    min-content;
  padding: 0; 
  
  h3 {
    font-size: calc(var(--fs) * 1.8);
    color: var(--c-wht);
    line-height: 1;
    text-align: center;
    padding: 1rem 0 0.9rem;
    background-color: #333;
    grid-row: 1;
    align-self: start; 
    margin-bottom: 0; 
  }
  picture {
    margin: 0 0 0.5em; 
    grid-row: 2;
  }
  picture img {
    display: block; 
    width: 100%;
  }
  h4 {
    font-size: calc(var(--fs) * 1.6);
    line-height: 1.1;
    padding: 0 calc(var(--fs) * 1);
    margin: 0 0 0.5em;
    grid-row: 3;
    small {
      font-size: calc(var(--fs) * 1.4);
      display: block;
      @media (max-width: 500px) {
        display: revert;
      }
    }
  }
  ul {
    font-size: calc(var(--fs) * 1.2);
    padding: 0 calc(var(--fs) * 1) 0;
    margin: 0 0 calc(var(--fs) * 1.5);
    grid-row: 4;
    align-self: stretch; 
    li {
      line-height: 1.5;
      text-indent: -1em;
      padding: 0 0 0 1em;
    }
  }
  .lnkMtr {
    font-size: calc(var(--fs) * 1.4);
    width: 94%;
    grid-row: 5;
    align-self: start;
    margin-bottom: calc(var(--fs) * 1); 
  }
}
/*-------------------------------
 Return to Page Top
---------------------------------*/
.lnkPtop {
  font-size: calc(var(--fs) * 1.2);
  font-style: italic;
  text-align: right;
  margin: 4rem 0 0 auto;
  display: block;
}
.lnkPtop a {
  color: var(--c-wht);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  margin-right: 0.5rem;
  background: #0095d9;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  &:hover {
    background: var(--c-link-hover);
    text-decoration: none;
  }
}
.sale_note {
  font-size: calc(var(--fs) * 1.2);
  color: #e70707;
  text-align: right;
  padding: 1rem 0 0 0;
}





