@charset "utf-8";
/*********************************
Vallejo -- STYLE-COMMON
last update - 2025.11.13
*********************************/ 
:root {
  --fs: min(2.114vw, 1rem);
  --rs: clamp(0.5rem, 1.042vw, 1rem);
  --bs-cmn: 0 2px 3px 1px rgb(50 50 50 / 10%);
  --fs-line: calc((1em - 1lh) / 2);
  --c-link: #27abdc;
  --c-link-hover: #00f;
  --c-txt-base: #222;
  --c-green:#00C8BE;
  --c-red: #c40d23;
  --c-wht:#fff;
  --w-site: min(100%, 128rem);
  --w-cont: min(100%, 96rem);
  --w-box: min(100%, 80rem);
  --triangle--top: polygon(50% 0, 100% 100%, 0 100%);
  --triangle--bottom: polygon(0 0, 100% 0, 50% 100%);
  --triangle--right: polygon(0 0, 100% 50%, 0 100%);
  --triangle--left: polygon(0 50%, 100% 0, 100% 100%);
  --triangle--lower-left: polygon(0 0, 100% 100%, 0 100%);
  --triangle--upper-left: polygon(0 0, 100% 0, 0 100%);
  --triangle--lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --triangle--upper-right: polygon(0 0, 100% 0, 100% 100%);
  --scroll-padding: 60px;
  /* header */
  --topbar-h: 6rem;
  --nav-h: 5.5rem;
}
@media (max-width: 768px) {
  :root {
    --fs: 0.8rem;
  }
}
@font-face {
  font-family: 'Local Noto Sans JP';
  src: local('Noto Sans JP');
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  font-family: 'Local Noto Sans JP', 'Noto Sans JP', sans-serif;
  font-size: calc(var(--fs) * 1.6);
  color: var(--c-txt-base);
  background: #000;
  letter-spacing:normal;
  -webkit-text-size-adjust: 100%;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: bottom;
}
/* Link*/
a {
  text-decoration: none;
  color: var(--c-link);
  &:hover {
    text-decoration: none;
    color: var(--c-green);
  }
}
a:hover > img:not([src$=".gif"]), a:hover > picture:not([src$=".gif"]), a:hover > figure:not([src$=".gif"]) {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
/* Text */
.c-red {
  color: var(--c-red);
}
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}
strong {
  font-size: 125%;
}
em {
  font-size: 112.5%;
  font-style: normal;
}
small {
  font-size: 87.5%;
  font-weight: normal;
}
.br-off {
  display: block;
}
.br-on {
  display: none;
}
@media (max-width: 768px) {
  .br-off {
    display: none;
  }
  .br-on {
    display: block;
  }
}
.price-tax > small {
  font-size: 75%;
}
.price-hontai {
  display: none;
}
/* Link-btn */
.link-btn {
  font-weight: bold;
  width: min(94%, 80rem);
  padding: 2.2rem 3.4rem 2rem;
  background: var(--c-link);
  border-radius: 0.5rem;
  color: hsl(0deg 0% 100%);
  text-align: center;
  display: inline-block;
  position: relative;
  &:hover {
    color: hsl(0deg 0% 100%);
    text-decoration: none;
    background: var(--c-link-hover);
  }
  &::after {
    content: "";
    clip-path: var(--triangle--right);
    width: calc(var(--fs) * 1.2);
    height: calc(var(--fs) * 1.8);
    inset-block: 0;
    inset-inline-end: calc(var(--fs) * 1);
    margin-block: auto;
    background: #fff;
    position: absolute;
  }
}
.link-btn.link-not { /*link cancel*/
  pointer-events: none;
  color: hsla(0,0%,67%,1.00);
  background: hsla(0,0%,93%,1.00);
  &::after {
    content: none;
  }
}
/* mini Link-btn */
.scroll-link {
  font-size: calc(var(--fs) * 1.3);
  color: hsla(0,0%,100%,1.00);
  background-color: var(--c-link);
  border-radius: 0.5rem;
  padding: 0.1rem 0.8rem 0.1rem;
  position: relative;
  &::after {
    font-family: 'FontAwesome';
    content: "\f107";
    padding-left: 0.5em;
  }
  &:hover {
    color: hsla(0,0%,100%,1.00);
    background-color: var(--c-link-hover);
    text-decoration: none;
  }
}
.scroll-link i {
  padding-left: 0.5em;
}
/*-------------------------------
 MENU STYLE
---------------------------------*/
header {
  background: #000;
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: top 0.3s ease-in-out; 
  z-index: 10;
}
.site-header.header-hidden {
  top: -11.5rem
}
.topbar {
  color: #fff;
  width: var(--w-cont);
  height: var(--topbar-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
}
.logoVallejo {
  height: calc(var(--fs) * 3.4);
  display:flex;
  align-items: center;
  position: relative;
  @media (min-width: 768px) {
    &:after {
      content: "ファレホ ― 色彩は無限の可能性へ ―";
      color: #fff;
      font-size: calc(var(--fs) * 1.4);
      padding: 0 0 0 1em;
    }
  }
  img {
    width: 150px;
  }
}
.logoBox {
  display: flex;
  align-items: center;
  gap: calc(var(--fs) * 1.5);
}
.logoSNS a {
  font-size: calc(var(--fs) * 2.8);
  color: var(--w-wht);
  &:hover {
    filter:opacity(0.8);
  }
}
.logoVS img {
  width: calc(var(--fs) * 14);
}
/* nav */
.site-nav {
  font-size: calc(var(--fs) * 1.4);
  background: #202020;
  border-top: 1px solid #666666;
  position: relative;
  z-index: 40;
}
.nav-inner {
  font-size: calc(var(--fs) * 1.4);
  max-width: var(--w-cont);
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  align-items: center;
  @media (max-width: 768px) {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/* desktop menu */
.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-item {
  position: relative;
  flex-shrink: 0;
  width: max-content;
  > * {
    color: #fff;
    padding: calc(var(--rs) * 1.5) calc(var(--rs) * 2) calc(var(--rs) * 1.2);
    &:hover {
      color: var(--c-green);
      background: rgb(0 0 0 / 5%);
    }
  }
}
.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  cursor: pointer
}
.menu-text {
  pointer-events: none
}
/* arrow PC */
.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--c-green);
  transform-origin: center center;
  transition: transform .3s, background .2s;
}
.arrow::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.menu-item.is-open .arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}
.menu-item.is-open .arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}
/* desktop subpanel */
/* ==========================
   サブパネル
========================== */
.sub-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 50;
  background: transparent;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
.sub-panel.open {
  pointer-events: auto;
  opacity: 1;
}
.sub-bg {
  position: absolute;
  inset: 0;
  background: #202020;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}
.sub-panel.open .sub-bg {
  transform: scaleX(1);
}
.sub-inner {
  max-width: var(--w-cont);
  margin: 0 auto;
  padding: 3rem 2vw 1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  position: relative;
  z-index: 2;
}
.sub-panel.open .sub-inner {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================
   サブメニューリスト
========================== */
.sub-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem 0;
}
.sub-list a:hover {
  color: var(--c-green);
}
@media (max-width: 767px) {
  .sub-panel {
    display: none;
  }
}
.sub-list {
  display: grid;
  grid-template-columns: repeat(6 , 1fr);
  gap: 0.5rem 0;
}
.sub-list li {
  padding: 0 0 1.5rem 1.2em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  &:last-child {
    grid-column: 5 / span 2;
  }
  &:before {
  content: "";
  width: 0.8em;
  height: 3px;
  background-color: var(--c-green);
  position: absolute;
  left: 0; 
  }
}
.sub-list a {
  color: var(--c-wht);
  text-decoration: none;
  transition: color 0.2s;
  &:hover {
    color: var(--c-green);
  }
}
/* mobile */
.menu-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-label {
  display: none;
  font-weight: 600;
  color: #fff;
}
.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 50;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  left: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span::before {
  content: "";
  top: -8px;
}
.hamburger span::after {
  content: "";
  top: 8px;
}
.hamburger.active span {
  background: transparent;
}
.hamburger.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.hamburger.active span::after {
  transform: rotate(-45deg);
  top: 0;
}
/* mobile panel */
.mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #202020;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  z-index: 60;
  border-top: 1px solid #666666;
}
.mobile-panel.open {
  max-height: 1000px
}
.mobile-menu {
  font-size: calc(var(--fs) * 1.6);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #666666;
}
.mobile-item {
  font-size: calc(var(--fs) * 1.8);
  border-bottom: 1px solid #666666;
}
.mobile-btn, .mobile-item > a {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--fs) * 2) calc(var(--fs) * 1.5);
  color: var(--c-wht);
  width: 100%
}
.mobile-item > a {
  position: relative;
  &:after {
    content: "\f054";
    margin: 0 1em;
    color: var(--c-green);
    font-family: "Font Awesome 5 Free";
    font-size: 93.75%;
    font-weight: bold;
    line-height: 1;
    position: relative;
  }
}
.mobile-btn {
  padding: calc(var(--fs) * 2) calc(var(--fs) * 1.5) 0;
  pointer-events: none;
}
.mobile-item > a:hover {
  color: var(--c-green);
}
.mobile-sub {
  font-size: calc(var(--fs) * 1.6);
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 calc(var(--fs) * 1.5) calc(var(--fs) * 1.5);
}
.mobile-sub ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mobile-sub ul li:last-child {
    grid-column: 1 / span 2;
  }
.mobile-sub.open {
  max-height: 400px
}
.mobile-sub a {
  display: inline-block;
  padding: calc(var(--fs) * 1.5) calc(var(--fs) * 1.5) calc(var(--fs) * 1.5) 0;
  color: var(--c-wht);
  display: flex;
  align-items: center;
  position: relative;
  
  &:hover {
    color: var(--c-green);
  }
  &:before {
    content: "";
    width: 0.8em;
    height: 0.2em;
    background-color: var(--c-green);
    position: relative;
    inset: 0.1em 0 0 0;
    margin: 0 0.5em 0 0;
  }
}
.mobile-btn .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
}
.mobile-btn .arrow::before, .mobile-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--c-green);
  transform-origin: center center;
  transition: transform .3s, background .2s;
}
.mobile-btn .arrow::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.mobile-btn .arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mobile-item.is-open .arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--c-txt-base);
}
.mobile-item.is-open .arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--c-txt-base);
}
@media (max-width:767px) {
  .main-menu {
    display: none
  }
  .menu-label {
    font-size: calc(var(--fs) * 1.8);
    display: block
  }
  .hamburger {
    display: flex
  }
}
@media (min-width:768px) {
  .hamburger {
    display: none
  }
}
*.new::after {
  content: "NEW";
  font-size: calc(var(--fs) * 0.8);
  color: #ff3838;
  vertical-align: top;
  margin: 0 0 1em 0.5em;
}
/*-------------------------------
 Main
---------------------------------*/
main {
  margin-top: calc(var(--nav-h) + var(--topbar-h));
}
/*-------------------------------
 Popup Button
---------------------------------*/
.popup_lnkbtn {
  font-weight: bold;
  color: var(--c-link);
  position: relative;
  &:hover {
    color: var(--c-green);
    &:after {
      color: var(--c-green);
    }
  }
}
.popup_lnkbtn:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-size: 93.75%;
  font-weight: bold;
  line-height: 1;
  color: var(--c-link);
  margin: 0 0.5em;
  position: relative;
}
.popup_img::backdrop {
  background-color: rgba(0, 0, 0, 0.75);
}
.popup_img {
  width: min(96%, 88rem); 
  max-height: 90vh;
  margin-inline: auto;
  margin-block: calc(var(--fs) * 5);
  padding: calc(var(--rs) * 0.5);
  box-shadow: 0 3px 3px 0 rgba(50, 50, 50, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popup_img::-webkit-scrollbar {
  display: none; 
}
.popup_img img {
  display: block;
  height: auto;
}
@media (max-width: 768px) {
  .popup_img {
    margin-block: 2rem; 
  }
}
body.popover-open {
  overflow: hidden; 
}
/*-------------------------------
 パンくず
---------------------------------*/
.breadcrumb {
  width: 100%;
  padding: 0.5em calc(var(--rs) * 2);
  background: #fff;
}
.navi-breadcrumb {
  font-size: calc(var(--fs) * 1.4);
  width: var(--w-cont);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  position: relative;
}
.navi-breadcrumb > * ~ *::before {
  content: "\f054";
  margin: 0 1em;
  color: var(--c-link);
  font-family: "Font Awesome 5 Free";
  font-size: 93.75%;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.navi-breadcrumb > *:last-of-type > a {
  color: #333;
  pointer-events: none;
}
/*-------------------------------
 FRIEND SHOP
---------------------------------*/
.frdNavi {
    background: #ddd;
    padding: 4rem 2vw;
}
.info_retailers_box {
  width: var(--w-box);
  margin: 0 auto;
}
.info_retailers h2 {
  font-size: calc(var(--fs) * 2.8);
  font-weight: bold;
  text-align: center;
  margin: 0 0 1rem;
  @media (min-width: 768px) {
    font-size: calc(var(--fs) * 4);
  }
}
/* address */
.address-wrap {
   padding: calc(var(--fs) * 2);
   margin: 0 0 calc(var(--fs) * 2);
   background: #fff;
   line-height: 1.5;
}
.add-tit {
  font-weight: bold;
  font-size: calc(var(--fs) * 1.8);
  text-indent: -0.5em;
}
.add-sup {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.add-req {
  display: flex;
  gap: 0.5em;
  padding-top: 0.5rem;
  line-height: 1.4;
}
.add-req dt:after {
  content: ":";
  position: absolute;
  right: 0;
}
.add-req dt {
  width: 4em;
  position: relative;
}
.contactus dt {
  font-weight: bold;
}
.contactus dd {
  font-size: calc(var(--fs) * 1.4);
  padding-left: 1em;
}
/*-------------------------------
 FOOTER NAVI
---------------------------------*/
.ftrNavi {
  font-size: calc(var(--fs) * 1.4);
  padding: 4rem 2vw 2rem;
  background: #202020;
}
.ftrNaviInner {
  width: var(--w-box);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(min-content, 220px) 1fr 1fr;
}
.ftrNaviInner a {
  color: var(--c-wht);
  position: relative;
  &:hover {
    color: var(--c-green);
  }
}
.subMenu li, .menuG li, .menuG_wrap dd {
  position: relative;
  &:before {
    content: "-";
    color: #fff;
    padding-right: 0.5em;
  }
  &:not(:last-of-type) {
    padding-bottom: 0.5em;
  }
}
.menuG {
  border-left: 1px dotted #ccc;
  padding-left: 2vw;
}
.menuG_wrap + .menuG_wrap {
  padding-top: 2em;
}
.menuG_wrap dt {
  font-size: calc(var(--fs) * 1.2);
  color: #fff;
  line-height: calc((1em - 1lh) / 2);
  margin-bottom: 0.5em;
  padding: 16px 1em 11px;
  background: #424242;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .ftrNaviInner {
    grid-template-columns: 1fr 1fr;
  }
  .subMenu {
    padding: 0 0 2rem 0;
    grid-column: 1 / span 2;
  }
  .menuG_wrap dd {
    text-indent: -1em;
    margin-left: 1em;
  }
  .ftrNaviInner .menuG:nth-of-type(2) {
    border-left: none;
    padding-left: 0;
  }
}
/*-------------------------------
 FOOTER
---------------------------------*/
footer {
  font-size: calc(var(--fs) * 1.4);
  background: #202020;
  padding: 1rem 0 2rem;
  position: relative;
}
.ftrInner {
  width: var(--w-box);
  margin: 0 auto;
  text-align: center;
}
.ftrInner p {
  margin: 2rem auto;
  line-height: 1.8;
  color: #fff;
}
.note {
  line-height: 1.4;
}
.logoVs img {
  width: calc(var(--fs) * 18);
  margin: 0 auto;
}

