/* ----------------------------------------
* Car Images
* ---------------------------------------- */
.cpl_car-hiace {background-image: url(../img2026/complete/for_menu-hiace.webp);}
.cpl_car-hiace_comu {background-image: url(../img2026/complete/for_menu-hiace_comu.webp);}
.cpl_car-caravan {background-image: url(../img2026/complete/for_menu-caravan.webp);}
.cpl_car-probox {background-image: url(../img2026/complete/for_menu-probox.webp);}

.ic-newcomp {background-image: url(../img2026/header/ic-newcomp.webp);}
.ic-stock {background-image: url(../img2026/header/ic-stock.webp);}
.ic-custom {background-image: url(../img2026/header/ic--custom.webp);}
.ic-faq {background-image: url(../img2026/header/ic-faq.webp);}

/* ----------------------------------------
 * Menu Button
 * ---------------------------------------- */
.menubn {
  position: fixed;
  top: 38px;
  right: 20px;
  width: 70px;
  height: 70px;
  margin: 0;
  z-index: 1000001;
  transition: .4s all;
}

.menubn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;

  /* 背景と影を削除 */
  background: var(--color-rgba(255,255,255,0.8));
  border: 1px solid var(--color-666);
  border-radius: 3px;
  box-shadow: none;
}

.menubn a::before,
.menubn a::after,
.menubn a span {
  content: "";
  position: absolute;
  left: 10px;
  width: 50px;
  height: 1px;

  /* 非アクティブ時 */
  background: var(--color-333);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease,
    background 0.3s ease;
}

/* 上線 */
.menubn a::before {
  top: 22px;
}

/* 中線 */
.menubn a span {
  top: 34px;
}

/* 下線 */
.menubn a::after {
  top: 46px;
}


.menubn.site_active {
  top:5px;
}


/* ----------------------------------------
* active
* ---------------------------------------- */

/* active時は黒 */
.menubn.active a::before,
.menubn.active a::after,
.menubn.active a span {
  background: var(--color-333);
}

.menubn.active a::before {
  top: 34px;
  transform: rotate(45deg);
}

.menubn.active a span {
  opacity: 0;
}

.menubn.active a::after {
  top: 34px;
  transform: rotate(-45deg);
}


/* ----------------------------------------
 * Full Screen Menu
 * ---------------------------------------- */
.menubase {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -9999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.menubase.is-active {
  z-index: 1000000;
  opacity: 1;
  visibility: visible;
}

/* メニュー表示中は背景スクロールを止める */
body.menu-open {
  overflow: hidden;
}


/* ----------------------------------------
 * 768px以下
 * ---------------------------------------- */
@media screen and (max-width: 768px) {
  .menubn {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .menubn a {
    backdrop-filter: blur(8px);
  }

  .menubn a::before,
  .menubn a::after,
  .menubn a span {
    left: 4px;
    width: 40px;
  }

  .menubn a::before {
    top: 14px;
  }

  .menubn a span {
    top: 24px;
  }

  .menubn a::after {
    top: 34px;
  }

  .menubn.active a::before,
  .menubn.active a::after {
    top: 24px;
  }

  .menubody {
    padding: 90px 6% 50px;
  }
}


/* ----------------------------------------
 * FullScreenMenu inside
 * ---------------------------------------- */


@media screen and (min-width:1025px) {


.menubody {
  width: 100%;
  min-height: 100dvh;
  padding: 100px 10% 100px;
  box-sizing: border-box;
}

/* CompleteCarMenu
------------------------------------------- */
.mb_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}
.mb_title h2 {
  order:2;
  font-size:14px;
  font-weight: 500;
  line-height: 1em;
  color: var(--color-2nd);
  margin:0;
}
.mb_title p {
  order:1;
  font-family: var(--font-en);
  font-size:24px;
  font-weight: 500;
  line-height: 1em;
  margin:0 0 0.3em 0;
}

/* CompleteCarMenu
------------------------------------------- */
.completelist {
  width: 100%;
  height: auto;
  display: flex;
  gap: 5%;
  margin-bottom: 50px;
}
.complist_cc {
  flex:0 0 calc((100% - 15%) / 4);
}

.cplc_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top:80px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 65px;
  margin-bottom: 15px;
}
.cplc_title h3 {
  order:2;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1em;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.cplc_title h4 {
  order:1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1vw, 16px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.cplc_title h4 span {
  font-size: clamp(18px, 1.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.05em;
}
.cplc_title p.cpltop_spec {
  order:3;
  font-size: clamp(8px, 0.8vw, 12px);
  color: var(--color-666);
  line-height: 1.25em;
  margin:0;
}


.cpl_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.cpl_list li {
  width: 100%;
  height: auto;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px dotted var(--color-999);
  margin-bottom: 10px;
}
.cpl_list li a {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding:0 5px;
  border-radius: 3px;
  transition: .4s all;
}
.cpl_list li a:hover {
  background-color: rgba(132, 169, 99, 0.3);
}
.cpl_list li a .cpll_gra {
  width:35%;
  height: auto;
  display: block;
}
.cpl_list li a .cpll_cc {
  width:65%;
  height: auto;
  display: block;
  padding:10px 0 10px 10px;
}
.cpl_list li a .cpll_cc h3{
  font-size: clamp(12px, 0.8vw, 16px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.15em;
  color:var(--color-black);
  margin-bottom: 0.2em;
}
.cpl_list li a .cpll_cc p{
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 500;
  color:var(--color-1st);
  line-height: 1.25em;
  margin:0;
}
.cpl_list li a:hover .cpll_cc h3 {
  color:var(--color-1st);
}

p.ecuip_bn {
  width: 80%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  line-height: 1em;
  margin:0 auto;
}
p.ecuip_bn a {
  width: 100%;
  height: auto;
  display: block;
  padding:8px 30px 8px 10px;
  text-decoration: none;
  color:var(--color-1st);
  border: 1px solid var(--color-1st);
  border-radius: 5px;
  background-image: url(../img2026/header/ic-ar_b.webp);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: auto 14px;
  transition: .4s all;
}
p.ecuip_bn a:hover {
  color:var(--color-white);
  background-color:var(--color-1st);
  background-image: url(../img2026/header/ic-ar_w.webp);
}
p.ecuip_bn a strong {
  width: 100%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  margin-bottom: 3px;
}
p.ecuip_bn a strong span {
  font-size:8px;
  display: block;
}


}


@media screen and (min-width: 769px) and (max-width: 1024px) {

.menubody {
  width: 100%;
  min-height: 100dvh;
  padding: 100px 5% 100px;
  box-sizing: border-box;
}


/* CompleteCarMenu
------------------------------------------- */
.mb_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}
.mb_title h2 {
  order:2;
  font-size:14px;
  font-weight: 500;
  line-height: 1em;
  color: var(--color-2nd);
  margin:0;
}
.mb_title p {
  order:1;
  font-family: var(--font-en);
  font-size:24px;
  font-weight: 500;
  line-height: 1em;
  margin:0 0 0.3em 0;
}

/* CompleteCarMenu
------------------------------------------- */
.completelist {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  margin-bottom: 50px;
}
.complist_cc {
  flex:0 0 calc((100% - 5%) / 2);
  margin-bottom: 50px;
}

.cplc_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top:80px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 65px;
  margin-bottom: 15px;
}
.cplc_title h3 {
  order:2;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1em;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.cplc_title h4 {
  order:1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1vw, 16px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.cplc_title h4 span {
  font-size: clamp(18px, 1.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.05em;
}
.cplc_title p.cpltop_spec {
  order:3;
  font-size: clamp(8px, 0.8vw, 12px);
  color: var(--color-666);
  line-height: 1.25em;
  margin:0;
}


.cpl_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.cpl_list li {
  width: 100%;
  height: auto;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px dotted var(--color-999);
  margin-bottom: 10px;
}
.cpl_list li a {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding:0 5px;
  border-radius: 3px;
  transition: .4s all;
}
.cpl_list li a:hover {
  background-color: rgba(132, 169, 99, 0.3);
}
.cpl_list li a .cpll_gra {
  width:35%;
  height: auto;
  display: block;
}
.cpl_list li a .cpll_cc {
  width:65%;
  height: auto;
  display: block;
  padding:10px 0 10px 10px;
}
.cpl_list li a .cpll_cc h3{
  font-size: clamp(12px, 1vw, 16px);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.15em;
  color:var(--color-black);
  margin-bottom: 0.2em;
}
.cpl_list li a .cpll_cc p{
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 500;
  color:var(--color-1st);
  line-height: 1.25em;
  margin:0;
}
.cpl_list li a:hover .cpll_cc h3 {
  color:var(--color-1st);
}

p.ecuip_bn {
  width: 80%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  line-height: 1em;
  margin:0 auto;
}
p.ecuip_bn a {
  width: 100%;
  height: auto;
  display: block;
  padding:8px 30px 8px 10px;
  text-decoration: none;
  color:var(--color-1st);
  border: 1px solid var(--color-1st);
  border-radius: 5px;
  background-image: url(../img2026/header/ic-ar_b.webp);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: auto 14px;
  transition: .4s all;
}
p.ecuip_bn a:hover {
  color:var(--color-white);
  background-color:var(--color-1st);
  background-image: url(../img2026/header/ic-ar_w.webp);
}
p.ecuip_bn a strong {
  width: 100%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  margin-bottom: 3px;
}
p.ecuip_bn a strong span {
  font-size:8px;
  display: block;
}

}


@media screen and (max-width: 768px) {


.menubody {
  width: 100%;
  min-height: 100dvh;
  padding: 100px 5% 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Mobilemenu lines
------------------------------------------- */

.mobmenu-service {
  order:1!important;
}
.mobmenu-casestudy {
  order:2!important;
}
.newcomplete {
  order:3!important;
}
.mobmenu-company {
  order:4!important;
}



/* CompleteCarMenu
------------------------------------------- */
.mb_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 15px;
}
.mb_title h2 {
  order:2;
  font-size:12px;
  font-weight: 500;
  line-height: 1em;
  color: var(--color-2nd);
  margin:0;
}
.mb_title p {
  order:1;
  font-family: var(--font-en);
  font-size:18px;
  font-weight: 500;
  line-height: 1em;
  margin:0 0 0.3em 0;
}

/* CompleteCarMenu
------------------------------------------- */
.completelist {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.complist_cc {
  margin-bottom: 50px;
}

.cplc_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding:5px 0 10px 37%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
  margin-bottom: 15px;
}
.cplc_title h3 {
  order:2;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.cplc_title h4 {
  order:1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.cplc_title h4 span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.cplc_title p.cpltop_spec {
  order:3;
  font-size: 12px;
  color: var(--color-666);
  line-height: 1.1em;
  margin:0;
}


.cpl_list {
  width: 90%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin:0 auto 10px;
}
.cpl_list li {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px dotted var(--color-999);
}
.cpl_list li a {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-decoration: none;
  padding:15px 5px;
  transition: .4s all;
  background-image: url(../img2026/header/ic-ar_b.webp);
  background-repeat: no-repeat;
  background-position: 99% center;
  background-size: auto 14px;
}
.cpl_list li a:hover {
  background-color: rgba(132, 169, 99, 0.3);
}
.cpl_list li a .cpll_gra {
  display: none;
}
.cpl_list li a .cpll_cc {
  width:100%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding:0;
}
.cpl_list li a .cpll_cc h3{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.15em;
  color:var(--color-black);
  margin:0 0 0.2em 0;
}
.cpl_list li a .cpll_cc p{
  font-size: 10px;
  font-weight: 500;
  color:var(--color-1st);
  line-height: 1.25em;
  margin:0;
}
.cpl_list li a:hover .cpll_cc h3 {
  color:var(--color-1st);
}

p.ecuip_bn {
  width: 80%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  line-height: 1em;
  margin:0 auto;
}
p.ecuip_bn a {
  width: 100%;
  height: auto;
  display: block;
  padding:8px 30px 8px 10px;
  text-decoration: none;
  color:var(--color-1st);
  border: 1px solid var(--color-1st);
  border-radius: 5px;
  background-image: url(../img2026/header/ic-ar_b.webp);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: auto 14px;
  transition: .4s all;
}
p.ecuip_bn a:hover {
  color:var(--color-white);
  background-color:var(--color-1st);
  background-image: url(../img2026/header/ic-ar_w.webp);
}
p.ecuip_bn a strong {
  width: 100%;
  height: auto;
  display: block;
  font-size:12px;
  font-weight: 400;
  margin-bottom: 3px;
}
p.ecuip_bn a strong span {
  font-size:8px;
  display: block;
}


}




/* NormalMenu
------------------------------------------- */
.mb_nommenu {
width: 100%;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2%;
  margin-bottom: 50px;
}
.mb_nommenu li {
flex: 1 1 calc((100% - 4%) / 3);
max-width: calc((100% - 4%) / 3);
margin-bottom: 1%;
}
.mb_nommenu li a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  color:var(--color-black);
  font-size:14px;
  font-weight: 400;
  line-height: 1.25em;
  border-bottom: 1px dotted var(--color-1st);
  padding:15px 15px 15px 5px;
  background-image: url(../img2026/header/ic-ar_b.webp);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 18px;
  transition: .4s all;
}
.mb_nommenu li a:hover {
  color:var(--color-white);
  background-color: var(--color-1st);
  background-image: url(../img2026/header/ic-ar_w.webp);
}

/* tablet */
@media screen and (max-width:1024px) {
.mb_nommenu {
width: 100%;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1%;
}
.mb_nommenu li {
flex: 1 1 calc((100% - 1%) / 2);
max-width: calc((100% - 1%) / 2);
flex-wrap: wrap;
justify-content: center;
}
}

/* mobile */
@media screen and (max-width:768px) {
.mb_nommenu {
width: 90%;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0px;
margin:0 auto 50px;
}
.mb_nommenu li {
flex: 1 1 100%;
max-width: 100%;
flex-wrap: wrap;
justify-content: center;
}
}


/* ----------------------------------------
 * PC Mega Menu
 * ---------------------------------------- */
.pcmega_nav {
  position: fixed;
  width: calc(100% - 20%);
  height:auto;
  display: block;
  top:40px;
  left:11%;
  z-index: 18000;
  transition: .4s all;
}

.pcmega_nav.site_active {
  position: fixed;
  width: calc(100% - 20%);
  height:auto;
  display: block;
  top:5px;
  left:11%;
  z-index: 18000;
}

.pcmega_list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}

.pcmega_list li {
  margin: 0;
  padding: 0;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.pcmega_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  text-decoration: none;
  color: #000;
  background-image: url(../img2026/box-000.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 0% 1px;
  transition: .4s all;
}
.pcmega_list li a:hover {
  color: #000;
  background-size: 100% 1px;
}

/* active状態 */
.pcmega_list li.mega-active a {
  color: var(--color-white);
  background-image: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.pcmega_submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-height: 240px;
  padding: 40px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* PCのみ使用 */
@media screen and (max-width: 1024px) {
  .pcmega_nav {
    display: none!important;
  }
}


/* モバイル用メニュー */
@media screen and (min-width: 769px) {
.mobilemenu {display: none;}
}

@media screen and (max-width: 768px) {

  .mobilemenu {
    width: 100%;
    height: auto;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100000;
    transform: translateY(100%);
    transition: transform 0.6s ease;
    background: #081708;
background: linear-gradient(180deg, rgba(8, 23, 8, 1) 0%, rgba(13, 56, 13, 1) 71%, rgba(29, 83, 28, 1) 100%);
  }
  /* 1秒後に登場 */
  .mobilemenu.is-show {
    transform: translateY(0);
  }

  /* wrapper最下部に到達後 */
  .mobilemenu.is-relative {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateY(0);
  }
  .mobilemenu ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
  }
  .mobilemenu ul li {
    flex: 1;
    height: auto;
    display: block;
    border-right:1px solid var(--color-999);
  }
  .mobilemenu ul li:last-child {
    border-right: none;
  }
  .mobilemenu ul li a {
    width: 100%;
    height: auto;
    display: block;
    text-decoration: none;
    font-size:10px;
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
    line-height: 1em;
    letter-spacing: -0.05em;
    padding:40px 0 10px 0;
    background-repeat: no-repeat;
    background-position: center 5px;
    background-size: auto 35px;
    margin:0;
  }
  .mobilemenu ul li a strong {
    display: block;
    font-size:10px;
    font-weight:500;
    letter-spacing: -0.03em;
  }

}