@charset "UTF-8";
/* =====================================================
   color-block
--------------------------------------------------*/
#KV {
  position: relative;
}

#KV .color-block {
  height: 391px;
  width: 80vw;
  border-radius: 0 20px 20px 0;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV .color-block {
    height: clamp(200px, 43vw, 631px);
    width: clamp(200px, 60vw, 732px);
    top: 85px;
  }
}
@media (min-width: 1510px) {
  #KV .color-block {
    height: clamp(631px, 50vw, 831px);
    width: clamp(631px, 50vw, 1500px);
  }
  #KV header {
    flex: 1 1 auto;
  }
  .KV-container .KV-img.pc {
    flex: 0 0 1000px;
    width: 1000px;
  }
}
.h2_heading {
  margin: 0 0 32px;
}
.h2_heading p {
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 16px;
  display: flex;
  align-items: center;
}
.h2_heading p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 16px 0 0;
}
.h2_heading h2 {
  font-size: 29px;
  font-weight: 700;
}

.h2_heading.yellow p {
  color: #FFD900;
}
.h2_heading.yellow p::before {
  background: #FFD900;
}

.h2_heading.white h2 {
  color: #FFFFFF;
}

.h2_heading.black p {
  color: #181818;
}
.h2_heading.black p::before {
  background: #FFFFFF;
}

.h2_heading.blue h2 {
  color: #004EA2;
}

.h2_heading.right_black p {
  justify-content: flex-end;
  color: #181818;
}
.h2_heading.right_black p::before {
  background: #FFD900;
}

.h2_heading.right_blue h2 {
  color: #004EA2;
  text-align: right;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .h2_heading p {
    font-size: clamp(18px, 2vw, 20px);
    padding: 0 0 24px;
  }
  .h2_heading h2 {
    font-size: clamp(30px, 3vw, 40px);
  }
}
/* --------------------------------------------------
   color-block END
=====================================================*/
/* =====================================================
   共通 
--------------------------------------------------*/
aside.contact_info {
  background: #FFF;
  border-radius: 10px;
  padding: 20px 16px;
  margin: 32px 0;
}
aside.contact_info ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
aside.contact_info ul.multiple li div {
  font-size: 9px;
  color: #FFFFFF;
  background: linear-gradient(45deg, rgb(243, 64, 14) 70%, rgb(253, 106, 65) 70%);
  padding: 2px 4px;
  margin: 0 8px 0 0;
  border-radius: 6px;
  flex: 0 0 auto;
  letter-spacing: 0.02em;
}
aside.contact_info ul.multiple li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url(../image/blue_check.svg) no-repeat;
  margin: 0 8px 0 0;
}
aside.contact_info div.reception_hours_type1 {
  display: flex;
  gap: 24px;
}
aside.contact_info div.reception_hours_type1 p {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info div.reception_hours_type1 dl {
  gap: 24px;
  display: block;
}
aside.contact_info div.reception_hours_type1 dl .pair {
  display: flex;
  align-items: center;
  gap: 8px;
}
aside.contact_info div.reception_hours_type1 dl .pair dt {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info div.reception_hours_type1 dl .pair dd {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info dl.reception_hours_type2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
aside.contact_info dl.reception_hours_type2 dt {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info dl.reception_hours_type2 dd {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info a.tel {
  font-size: 13vw;
  font-weight: 700;
  white-space: nowrap;
  color: #F3400E;
  line-height: 1.5;
}

aside.contact_info.syaken {
  position: relative;
}
aside.contact_info.syaken::after {
  content: "";
  position: absolute;
  top: -138px;
  right: 10px;
  width: 126px;
  height: 142px;
  background: url(../image/syaken_image.png) no-repeat;
  background-size: 100% auto;
}

aside.contact_info.maintenance {
  margin: 32px 8px 0;
}
aside.contact_info.maintenance a.tel {
  font-size: 11vw;
}

aside.contact_info.gray {
  background: #EBEBEB;
}
aside.contact_info.gray a.tel {
  font-size: 11vw;
}

aside.contact_info.car-trade a.tel {
  font-size: 11vw;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  aside.contact_info {
    justify-content: space-between !important;
    padding: 32px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  aside.contact_info ul li {
    font-size: 26px;
  }
  aside.contact_info ul.multiple li div {
    font-size: 14px;
    padding: 0 8px;
  }
  aside.contact_info ul.multiple li::before {
    width: 32px;
    height: 32px;
    background-size: 100%;
  }
  aside.contact_info div.reception_hours_type1 dl {
    display: flex;
  }
  aside.contact_info a.tel {
    font-size: 60px;
  }
  aside.contact_info.syaken {
    min-width: 980px;
  }
  aside.contact_info.syaken::after {
    width: 203px;
    height: 230px;
    top: -222px;
    right: 50px;
  }
  aside.contact_info.maintenance {
    max-width: 764px;
    margin: 32px auto 0 !important;
  }
  aside.contact_info.maintenance a.tel {
    font-size: 60px;
  }
  aside.contact_info.car-trade {
    max-width: 680px;
    margin: 32px auto 0 !important;
  }
  aside.contact_info.car-trade a.tel {
    font-size: 60px;
  }
  aside.contact_info.gray {
    margin: 0;
  }
  aside.contact_info.gray a.tel {
    font-size: 60px;
  }
  aside.contact_info.gray.delivery {
    max-width: 634px;
  }
  aside.contact_info.gray.coating {
    max-width: 793px;
    margin: 0 auto;
  }
  aside.contact_info.car-trade a.tel {
    font-size: 60px;
  }
}
/* 764px以上980px以下: 強制的に縦並び */
@media (min-width: 764px) and (max-width: 980px) {
  aside.contact_info {
    flex-direction: column; /* ← カラム落ち */
    width: 100%;
    min-width: auto !important;
  }
}
/* --------------------------------------------------
   共通 END
=====================================================*/
/* =====================================================
   KV 
--------------------------------------------------*/
#KV header {
  color: #004EA2;
}
#KV header h2 {
  font-size: 0;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
#KV header h2 span {
  font-size: 28px;
  background: #FFFFFF;
  padding: 2px 16px;
  display: inline-block;
  font-weight: 700;
  margin: 0 0 1px;
}
#KV header h2 .span1 {
  border-radius: 5px 5px 0 0;
}
#KV header h2 .span2 {
  border-radius: 0 5px 0 0;
}
#KV header h2 .span3 {
  border-radius: 0 0 0 5px;
}
#KV header h2 .span4 {
  padding: 2px 16px 2px 0;
  border-radius: 0 5px 5px 0;
}
#KV header p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV header h2 span {
    font-size: clamp(28px, 3vw, 38px);
  }
  #KV header p {
    font-size: 18px;
  }
}
/* 1000px以下 かつ 764px以上 */
@media (min-width: 764px) and (max-width: 1000px) {
  #KV header h2 .span1 {
    border-radius: 5px 5px 0 0;
  }
  #KV header h2 .span2 {
    border-radius: 0 5px 0 0;
  }
  #KV header h2 .span3 {
    border-radius: 0 0 0 5px;
  }
  #KV header h2 .span4 {
    padding: 2px 16px 2px 0;
    border-radius: 0 5px 5px 0;
  }
}
/* ▼ 1001px以上だったら */
@media (min-width: 1001px) {
  #KV header h2 .span1 {
    border-radius: 5px 0 0 0;
    padding: 2px 0 2px 16px;
  }
  #KV header h2 .span2 {
    padding: 2px 16px 2px 0;
    border-radius: 0 5px 5px 0;
  }
  #KV header h2 .span3 {
    border-radius: 0 0 5px 0;
  }
  #KV header h2 .span4 {
    padding: 2px 16px;
    border-radius: 0 0 5px 5px;
  }
}
.KV-container {
  padding: 91px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.KV-container .KV-img img {
  width: 94vw;
  height: auto;
  border-radius: 20px;
}
.KV-container .KV-img.pc {
  display: none;
}

#KV {
  padding: 0 0 clamp(200px, 20%, 300px);
}
#KV .syagyousya {
  position: absolute;
  width: clamp(142px, 20%, 240px);
  height: auto;
  bottom: 0;
  left: 55px;
  border-radius: 10px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV {
    min-height: clamp(400px, 30%, 732px);
  }
  .KV-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* ← 中央寄せ親からはみ出して画面全幅に */
    width: 100%;
    margin-left: 0;
    /* 左余白は全体ではなく header にだけ持たせる */
    padding: 0;
    min-height: clamp(555px, 40vw, 732px);
    overflow: visible;
  }
  .KV-container header {
    flex: 0 0 clamp(200px, 54vw, 640px);
    max-width: clamp(200px, 54vw, 640px);
    padding-left: 100px; /* ← 左側の余白はここに移動 */
  }
  .KV-container .KV-img {
    flex: 1;
    min-width: 0;
  }
  .KV-container .KV-img img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 0 0 20px;
  }
  .KV-container .KV-img.sp {
    display: none;
  }
  .KV-container .KV-img.pc {
    display: block;
  }
  #KV {
    padding: 0 0 clamp(112px, 10%, 182px);
  }
  #KV .syagyousya {
    left: 25%;
    border-radius: 20px;
  }
}
/* --------------------------------------------------
   KV END
=====================================================*/
/* =====================================================
  service
--------------------------------------------------*/
#service {
  padding: 104px 32px 104px;
  background: url(../image/service_bg.png) no-repeat clamp(-375px, 90%, -100px) bottom;
  background-size: 800px auto;
  position: relative;
}
#service .color-block {
  width: clamp(238px, 50%, 732px);
  height: clamp(657px, 50%, 491px);
  top: -92px;
  right: 0;
  border-radius: 20px 0 0 20px;
}
#service h2 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 32px;
  font-weight: 700;
}
#service nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, clamp(144px, 38vw, 160px));
  gap: 8px;
  justify-content: center;
}
#service nav ul li {
  min-height: clamp(172px, 42vw, 180px);
  background: #FFF;
  z-index: 0;
  border-radius: 10px;
  /* 各サービス背景を ::before に指定 */
}
#service nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  /* 💡 疑似要素で背景画像を管理 */
  /* 拡大アニメーション */
}
#service nav ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: scale(1); /* ← 初期状態 */
  z-index: -1; /* 背景として配置 */
}
#service nav ul li a:hover::before {
  transform: scale(1.1); /* ← 10%拡大 */
}
#service nav ul li a::after {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  margin-top: 23px;
  background: url(../image/service_arrow.svg) no-repeat #FFFFFF center center;
  background-size: 14px auto;
  border-radius: 15px;
}
#service nav ul li.nav_syaken a::before {
  background-image: url(../image/sp_service_syaken.png);
}
#service nav ul li.nav_coating a::before {
  background-image: url(../image/sp_service_coating.png);
}
#service nav ul li.nav_maintenance a::before {
  background-image: url(../image/sp_service_maintenance.png);
}
#service nav ul li.nav_car-trade a::before {
  background-image: url(../image/sp_service_car-trade.png);
}
#service nav ul li.nav_delivery a::before {
  background-image: url(../image/sp_service_delivery.png);
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #service {
    background: url(../image/service_bg.png) no-repeat center bottom;
    background-size: 1075px auto;
    padding: 64px 32px 136px;
  }
  #service .color-block {
    top: -12px;
  }
  #service h2 {
    font-size: 32px;
  }
  #service nav {
    display: flex;
    justify-content: center;
  }
  #service nav ul {
    max-width: 1080px;
    grid-template-columns: repeat(auto-fill, 200px);
  }
  #service nav ul li {
    height: 272px;
    /* ▼ PC時も同じ hover アニメーション */
    /* ▼ PC用画像に差し替え */
  }
  #service nav ul li a::before {
    background-size: cover;
  }
  #service nav ul li a:hover::before {
    transform: scale(1.1);
  }
  #service nav ul li.nav_syaken a::before {
    background-image: url(../image/pc_service_syaken.png);
  }
  #service nav ul li.nav_coating a::before {
    background-image: url(../image/pc_service_coating.png);
  }
  #service nav ul li.nav_maintenance a::before {
    background-image: url(../image/pc_service_maintenance.png);
  }
  #service nav ul li.nav_car-trade a::before {
    background-image: url(../image/pc_service_car-trade.png);
  }
  #service nav ul li.nav_delivery a::before {
    background-image: url(../image/pc_service_delivery.png);
  }
}
/* 1080px以下 → 4列 */
@media (max-width: 1080px) and (min-width: 764px) {
  #service nav ul {
    grid-template-columns: repeat(4, 200px);
  }
}
/* 880px以下 → 3列 */
@media (max-width: 880px) and (min-width: 764px) {
  #service nav ul {
    grid-template-columns: repeat(3, 200px);
  }
}
#service {
  position: relative;
  padding: 56px 32px 104px;
  /* 各要素の開始位置を変える */
  /* 下方向へフェードイン・フェードアウトするアニメーション */
}
#service .scroll_group {
  position: absolute;
  right: 0;
  top: -88px;
  width: 24px;
  overflow: hidden;
}
#service .scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 320px;
}
#service .scroll-text {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  color: #fff;
  position: relative;
}
#service .scroll span {
  display: block;
  width: 1px; /* 細い棒状にする */
  /* 棒の長さ */
  background: #fff; /* 線の色 */
  margin: 8px 0;
  opacity: 0;
  animation: scrollDown 1.5s infinite;
}
#service .scroll span:nth-child(1) {
  animation-delay: 0s;
  transform: translateY(100px); /* 1つ目を100px下げる */
  height: 200px;
}
#service .scroll span:nth-child(2) {
  animation-delay: 0.2s;
  transform: translateY(10px); /* 2つ目を10px下げる */
  height: 10px;
}
#service .scroll span:nth-child(3) {
  animation-delay: 0.4s;
  transform: translateY(3px); /* 3つ目を3px下げる */
  height: 3px;
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #service .scroll_group {
    top: 0;
  }
}
/* --------------------------------------------------
  service END
=====================================================*/
/* =====================================================
   syaken
--------------------------------------------------*/
#syaken {
  background: #004EA2;
  padding: 48px 16px;
}
#syaken .syaken_inner {
  max-width: 1080px;
}
#syaken .text_grouo {
  padding: 0 16px;
}
#syaken .text_grouo .text_group {
  color: #FFFFFF;
}
#syaken .text_grouo .text_group ul li {
  display: flex;
  align-items: center;
  margin: 4px 0;
}
#syaken .text_grouo .text_group ul li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url(../image/white_check.svg) no-repeat;
  margin: 0 8px 0 0;
}
#syaken .text_grouo .text_group.underline p {
  line-height: 2.3;
  font-weight: 500;
}
#syaken .text_grouo .text_group.underline .obi {
  position: relative;
  z-index: 1;
}
#syaken .text_grouo .text_group.underline .obi::after {
  position: absolute;
  content: "";
  background: #3183DB;
  height: 12px;
  width: 100%;
  left: 0;
  bottom: -5px;
  z-index: -1;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #syaken {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #syaken .text_grouo {
    align-self: center;
  }
  #syaken .text_grouo .text_group ul {
    display: flex;
    gap: 32px;
  }
  #syaken .text_grouo .text_group.underline p {
    font-size: 18px;
  }
  #syaken .text_grouo .text_group.underline .obi {
    font-size: 18px;
  }
  #syaken .text_grouo .text_group.underline .obi::after {
    height: 16px;
  }
}
/* --------------------------------------------------
   syaken END
=====================================================*/
/* =====================================================
   coating
--------------------------------------------------*/
#coating {
  padding: 72px 32px;
  position: relative;
}
#coating section {
  margin: 0 0 48px;
}
#coating section article {
  box-shadow: 0px 1px 8px 0px #EBEBEB;
  background: #FFFFFF;
  padding: 16px;
  border-radius: 10px;
  margin: 0 0 24px;
}
#coating section article .img_group {
  position: relative;
  margin: 0 0 16px;
}
#coating section article .img_group img {
  border-radius: 10px;
}
#coating section article .img_group img.step_label {
  margin: 0;
  border-radius: 0;
  width: 153px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#coating section article .price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 8px 0 0;
}
#coating section article .price .amount {
  font-size: 30px;
  color: #F3400E;
  font-weight: 700;
  line-height: 1.5;
}
#coating section article .price .price-right {
  display: flex;
  flex-direction: column;
}
#coating section article .price .price-right .tax {
  font-size: 8px;
  line-height: 1;
}
#coating section article .price .price-right .currency {
  color: #F3400E;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

#coating .color-block1 {
  top: 72px;
  left: 0;
  width: 105px;
  height: 491px;
  border-radius: 0 20px 20px 0;
}

#coating .color-block2 {
  right: 0;
  bottom: 335px;
  width: 212px;
  height: 491px;
  border-radius: 20px 0 0 20px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #coating {
    padding: 104px 100px;
    display: flex;
    justify-content: center;
  }
  #coating .coating_inner {
    max-width: 1080px;
  }
  #coating section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
  #coating section article {
    flex: 1;
  }
  #coating section article p {
    min-height: 168px;
  }
  #coating section article .img_group img {
    margin: 0 0 16px;
  }
  #coating section article .img_group img.step_label {
    position: static;
    width: 217px;
  }
  #coating .color-block1 {
    top: 119px;
    left: 0;
    width: clamp(105px, 42vw, 485px);
    height: clamp(491px, 42vw, 604px);
    border-radius: 0 20px 20px 0;
  }
  #coating .color-block2 {
    right: 0;
    bottom: 335px;
    width: clamp(212px, 42vw, 304px);
    height: 284px;
    border-radius: 20px 0 0 20px;
  }
}
/* --------------------------------------------------
   coating END
=====================================================*/
/* =====================================================
   maintenance
--------------------------------------------------*/
#maintenance {
  background: #FFD900;
  border-radius: 20px;
  padding: 32px 16px;
  margin: 0 8px 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#maintenance .maintenance_inner {
  max-width: 1080px;
}
#maintenance::after {
  content: "";
  position: absolute;
  top: -24px;
  right: 10px;
  width: 116px;
  height: 107px;
  background: url(../image/maintenance_image.png) no-repeat;
  background-size: 100% auto;
}
#maintenance .type_group .type_box {
  background: #FFFFFF;
  margin: 0 0 24px;
  border-radius: 10px;
  padding: 0 24px 16px 0;
}
#maintenance .type_group .type_box p {
  padding: 0 0 0 24px;
  font-weight: 500;
}
#maintenance .type_group .type_box h3 {
  background: linear-gradient(45deg, rgb(0, 78, 162) 70%, rgb(18, 100, 189) 70%);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #maintenance {
    margin: 0 16px 104px;
    padding: 32px clamp(16px, 6vw, 80px);
  }
  #maintenance::after {
    top: 32px;
    right: clamp(50px, 6vw, 100px);
    width: clamp(116px, 18vw, 182px);
    height: clamp(107px, 18vw, 168px);
  }
  #maintenance .type_group {
    display: flex;
    gap: 24px;
  }
  #maintenance .type_group .type_box {
    margin: 0;
    flex: 1;
    width: 50%;
  }
}
/* 880px以下 */
@media (max-width: 880px) and (min-width: 764px) {
  aside.contact_info.gray a.tel {
    font-size: 54px;
  }
}
/* --------------------------------------------------
   maintenance END
=====================================================*/
/* =====================================================
   car-trade
--------------------------------------------------*/
#car-trade {
  background: #004EA2;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#car-trade .car-trade_inner {
  max-width: 1080px;
  width: 100%;
}
#car-trade .car-trade_inner .article_group article {
  background: #FFFFFF;
  border-radius: 8px;
  margin: 112px 0 32px;
  position: relative;
  padding: 74px 24px 24px;
}
#car-trade .car-trade_inner .article_group article .h3_heading {
  position: absolute;
  left: 0;
  top: -67px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
#car-trade .car-trade_inner .article_group article .h3_heading p {
  font-size: 13px;
  font-weight: 700;
  padding: 0 0 8px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
#car-trade .car-trade_inner .article_group article .h3_heading p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 16px 0 0;
  background: #FFD900;
}
#car-trade .car-trade_inner .article_group article .h3_heading h3 {
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(45deg, rgb(255, 217, 1) 70%, rgb(253, 232, 115) 70%);
  padding: 16px;
  border-radius: 50px;
  box-shadow: 0px 4px 0px 0px #DABA00;
  text-align: center;
}
#car-trade .car-trade_inner .article_group article figure img {
  height: 162px;
  width: auto;
  margin: 0 auto 16px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #car-trade {
    padding: 48px 100px;
  }
  #car-trade .car-trade_inner {
    align-self: center;
  }
  #car-trade .car-trade_inner .article_group {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 32px;
  }
  #car-trade .car-trade_inner .article_group article {
    flex: 1;
    margin: 80px 0 32px;
    padding: 88px 24px 24px;
  }
  #car-trade .car-trade_inner .article_group article .h3_heading p {
    font-size: 16px;
  }
  #car-trade .car-trade_inner .article_group article .h3_heading h3 {
    font-size: clamp(18px, 2vw, 24px);
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 60px;
    top: -84px;
  }
}
/* --------------------------------------------------
   car-trade END
=====================================================*/
/* =====================================================
  delivery
--------------------------------------------------*/
#delivery {
  padding: 72px 32px;
}
/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #delivery {
    margin: 104px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 94px;
  }
  #delivery .h2_heading {
    margin: 0;
    white-space: nowrap;
  }
}
/* --------------------------------------------------
  delivery END
=====================================================*/
/* =====================================================
  初期設定
--------------------------------------------------*/
p, h1, h2, h3, h4, li, span, a, td, th, address, dt, dd {
  letter-spacing: 0.1em;
  font-size: 13px;
}

h1, h2, h3, h4 {
  line-height: 1.5;
}

p, li, span, a, td, th, address, dt, dd {
  line-height: 1.9;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  p, h1, h2, h3, h4, li, span, a, td, th, address, dt, dd {
    font-size: 15px;
  }
}
h1, h2, h3, h4 {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}

p, li, span, a, td, th, address, dt, dd {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

a {
  transition: opacity 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
  opacity: 0.7;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .br_sp {
    display: none;
  }
}
/* --------------------------------------------------
  初期設定  END
=====================================================*/
/* =====================================================
   color-block
--------------------------------------------------*/
.color-block {
  position: absolute;
  background: #FFD900;
  z-index: -1;
}

.color-block1,
.color-block2 {
  position: absolute;
  content: "";
  background: #FFD900;
  z-index: -1;
}

/* --------------------------------------------------
   color-block END
=====================================================*/
/* =====================================================
   共通 
--------------------------------------------------*/
.br-sp,
.img-sp {
  display: block;
}

.br-pc,
.img-pc {
  display: none;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .br-sp,
  .img-sp {
    display: none;
  }
  .br-pc,
  .img-pc {
    display: block;
  }
}
main {
  padding: 88px 0 0;
  position: relative;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  main {
    padding: 148px 0 0;
  }
}
/* --------------------------------------------------
   共通 END
=====================================================*/
/* =====================================================
  header
--------------------------------------------------*/
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease;
  z-index: 2000;
}
header.site-header.hide {
  transform: translateY(-100%);
}
header.site-header.show {
  transform: translateY(0);
}
header.site-header .header_holder {
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 1001;
}
.logo a {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

.menu-toggle {
  position: relative;
  width: 34px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle::before, .menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #004EA2;
  border-radius: 10px;
  transition: 0.3s ease;
}
.menu-toggle::before {
  top: 0;
}
.menu-toggle::after {
  bottom: 0;
}
.menu-toggle.open::before {
  top: 50%;
  transform: rotate(45deg);
}
.menu-toggle.open::after {
  top: 50%;
  transform: rotate(-45deg);
  bottom: auto;
}

/* ▼ Nav */
.nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  padding: 88px 0 0;
  z-index: 1000;
  overflow-y: auto;
}
.nav ul li.current {
  font-size: 18px;
  font-weight: 700;
  padding: 32px 0;
}
.nav ul li.current {
  display: flex;
  align-items: center;
}
.nav ul li.current::after {
  content: "";
  display: block;
  background: url(../image/arrow_current.svg) no-repeat;
  width: 21px;
  height: 20px;
  margin-left: auto;
  margin: 0 0 0 14px;
}
.nav ul a {
  display: flex;
  align-items: center;
  padding: 32px 0;
  font-size: 18px;
  font-weight: 700;
}
.nav ul a::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat;
  width: 21px;
  height: 20px;
  margin-left: auto;
}
.nav ul a:hover::after {
  background: url(../image/arrow_hover.svg) no-repeat;
}
.nav.open {
  display: flex;
}
.nav.open .logo {
  order: -1; /* navの先頭に表示 */
  margin-bottom: 20px;
}
.nav.open .info {
  order: 99;
  background: #EBEBEB;
  padding: 48px 32px;
  height: 100vw;
}
.nav.open .info p {
  margin: 0 0 16px;
  font-weight: 500;
}
.nav.open ul {
  padding: 0 32px;
}
.info {
  order: 99;
  padding-top: 20px;
}
.info dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 32px;
}
.info dl .pair {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info dl dt {
  background: #181818;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 11px;
  white-space: nowrap;
  padding: 1px 4px;
}
.info dl dd {
  margin: 0;
  font-size: 12px;
}

a.map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #004EA2 55%, #1264BD 55%);
  background-size: 250% 250%;
  background-position: 45% 45%;
  transition: background-position 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
a.map:hover {
  background-position: 100% 100%;
}
a.map::before {
  content: "";
  display: block;
  background: url(../image/map.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
}

/* ▼ Scroll Lock */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ▼ 764px以上だったら */
@media (min-width: 1000px) {
  header.site-header {
    padding: 24px clamp(30px, 6vw, 100px) 40px;
  }
  .menu-toggle {
    display: none;
  }
  .nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }
  .nav .logo {
    order: 0;
    margin-bottom: 0;
  }
  .nav .info {
    order: 1;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .nav .info p {
    font-size: 12px;
    margin: 0 8px 0 0;
  }
  .nav .info dl {
    flex-direction: row;
    margin: 0 32px 0 0;
  }
  .nav .info dl .pair {
    margin: 0 0 0 16px;
  }
  .nav ul {
    order: 2;
    padding: 0;
    display: flex;
  }
  .nav ul li.current {
    padding: 0 0 0 64px;
  }
  .nav ul li.current:first-of-type {
    padding: 0;
  }
  .nav ul li {
    padding: 0 0 0 64px;
  }
  .nav ul li:first-child {
    padding: 0;
  }
  .nav ul li a {
    font-size: 18px;
    font-weight: 700;
    padding: 0;
  }
  .nav ul li a::after {
    margin: 0 0 0 14px;
  }
  a.map {
    height: 26px;
    padding: 2px 8px;
  }
}
/* --------------------------------------------------
  header END
=====================================================*/
/* =====================================================
   sns_link
--------------------------------------------------*/
.sns_link {
  position: fixed;
  bottom: 10px;
  right: 16px;
  z-index: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.sns_link ul li a {
  display: inline-flex;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.sns_link ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sns_link ul li.facebook {
  margin: 0 0 16px;
  width: 130px;
  background: #FFF;
  border-radius: 6px;
}
.sns_link ul li.facebook a {
  display: flex;
  align-items: center;
  padding: 10px 16px 10px 10px;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  font-size: 10px;
  /* 🎨 デフォルト状態：明るい青ベース＋右下に濃い青をチラ見せ */
  background: linear-gradient(135deg, #0866FF 55%, #0A5CE3 55%);
  background-size: 250% 250%; /* ← グラデーションを広くして動きに余裕を */
  background-position: 45% 45%; /* ← 濃い青を右下に少し見せる */
  transition: background-position 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.sns_link ul li.facebook a:hover {
  /* 🟦 hover時：濃い青が右下方向に侵食 */
  background-position: 100% 100%;
}
.sns_link ul li.facebook a::before {
  content: "";
  display: block;
  background: url(../image/Facebook_Brand_icon.png) no-repeat;
  background-size: 100% auto;
  width: 27px;
  height: 27px;
}
.sns_link ul li.line {
  background: #FFF;
  width: 146px;
  border-radius: 50%;
}
.sns_link ul li.line a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 146px;
  font-size: 14px;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  /* 🎨 デフォルト状態：明るい緑ベース＋濃い緑を右下にチラ見せ */
  background: linear-gradient(135deg, rgb(6, 199, 85) 55%, rgb(9, 176, 77) 55%);
  background-size: 230% 230%; /* ← 広めに持たせて動きを強調 */
  background-position: 45% 45%; /* ← 右下に濃い緑が少し見える位置 */
  transition: background-position 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.sns_link ul li.line a:hover {
  /* 🟢 hoverで濃い緑が斜め方向に素早く侵食 */
  background-position: 100% 100%;
}
.sns_link ul li.line a div {
  display: flex;
  align-items: center;
  margin: 0 0 4px;
}
.sns_link ul li.line a div::before {
  content: "";
  display: block;
  background: url(../image/LINE_Brand_icon.png) no-repeat;
  background-size: 100% auto;
  width: 27px;
  height: 27px;
}
.sns_link ul li.line a div .tag {
  display: inline-block;
  background-color: #E6C507;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
.sns_link ul li.line a .tag.pc {
  display: none;
}
.sns_link ul li.line a .registration {
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_link ul li.line a .registration::after {
  content: "";
  display: block;
  background: url(../image/line_arrow.svg) no-repeat;
  background-size: 100% auto;
  width: 22px;
  height: 22px;
}

.sns_link.hide {
  opacity: 0;
  visibility: hidden;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .sns_link {
    right: 32px;
  }
  .sns_link ul li.facebook {
    width: 144px;
  }
  .sns_link ul li.facebook a {
    font-size: 12px;
    padding: 10px 14px 10px 10px;
  }
  .sns_link ul li.line {
    width: 204px;
    position: relative;
  }
  .sns_link ul li.line a {
    height: 204px;
    font-size: 18px;
    align-items: flex-start;
    padding: 10px 16px 10px 34px;
    text-align: left;
  }
  .sns_link ul li.line a div::before {
    width: 49px;
    height: 49px;
  }
  .sns_link ul li.line a div::after {
    content: "";
    display: block;
    background: url(../image/line_sns.png) no-repeat;
    background-size: 100% auto;
    width: 88px;
    height: 98px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .sns_link ul li.line a div .tag.sp {
    display: none;
  }
  .sns_link ul li.line a .tag.pc {
    display: inline-block;
    background-color: #E6C507;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin: 0 0 4px;
  }
  .sns_link ul li.line a .registration {
    font-size: 11px;
  }
}
/* --------------------------------------------------
  sns_link END
=====================================================*/
/* =====================================================
   footer
--------------------------------------------------*/
footer {
  background: #004EA2;
  padding: 64px 32px;
  position: relative;
  color: #FFFFFF;
}
footer .footer_group {
  width: calc(100% - 62px);
  max-width: 1080px;
}
footer .footer_group .reception_hours p {
  font-size: 12px;
}
footer .footer_group .reception_hours dl {
  gap: 24px;
  display: block;
}
footer .footer_group .reception_hours dl .pair {
  display: flex;
  gap: 8px;
}
footer .footer_group .reception_hours dl .pair dt {
  min-width: 62px;
  font-size: 12px;
}
footer .footer_group .reception_hours dl .pair dd {
  font-size: 12px;
}
footer .footer_group .company_info {
  margin: 0 0 48px;
}
footer .footer_group .company_info .company_name {
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 700;
}
footer .footer_group .company_info address {
  font-size: 12px;
  font-style: normal;
  margin: 0 0 10px;
}
footer .footer_group .company_info address .tel {
  margin: 10px 0 0;
  display: inline-block;
  font-size: 12px;
}
footer .footer_group .footer_nav {
  margin: 0 0 64px;
  width: 50%;
}
footer .footer_group .footer_nav nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 8px;
}
footer .footer_group .footer_nav nav ul li {
  white-space: nowrap;
  overflow: hidden;
}
footer .footer_group .footer_nav nav ul li a {
  margin: 0 16px 0 0;
  font-size: 12px;
  font-weight: 500;
}
footer .footer_group .pagetop {
  position: absolute;
  top: 64px;
  right: 32px;
  writing-mode: vertical-rl; /* 縦書き（右から左へ） */
}
footer .footer_group .pagetop a {
  background: #FFD900;
  border-radius: 20px;
  padding: 16px 4px 10px;
  color: #004EA2;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}
footer .footer_group .pagetop a::before {
  content: "";
  display: block;
  width: 12px;
  height: 13px;
  background: url(../image/pagetop_arrow.svg) no-repeat;
  background-size: 100% auto;
  margin: 0 0 8px;
}
footer .footer_group .pagetop a:hover {
  background: #FDE873;
}

/* ▼ 764px以上だったら */
@media (min-width: 1000px) {
  footer .footer_group {
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 48px;
    align-items: flex-start;
  }
  footer .footer_group .company_info {
    margin: 0;
  }
  footer .footer_group .company_info .company_name {
    font-size: 16px;
  }
  footer .footer_group .footer_nav {
    margin-left: auto;
  }
  footer .footer_group .footer_nav nav ul {
    display: flex;
  }
  footer .footer_group .footer_nav nav ul li a {
    font-size: 16px;
    font-weight: 700;
    margin: 0 24px 0 0;
  }
  footer .footer_group .pagetop {
    position: initial;
  }
  footer .footer_group .pagetop a {
    font-size: 16px;
  }
  footer .copy {
    text-align: right;
    font-size: 12px;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
  }
}
/* --------------------------------------------------
   footer END
=====================================================*/
/* =====================================================
   color-block
--------------------------------------------------*/
#KV {
  position: relative;
}

#KV .color-block {
  height: 391px;
  width: 80vw;
  border-radius: 0 20px 20px 0;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV .color-block {
    height: clamp(200px, 43vw, 631px);
    width: clamp(200px, 60vw, 732px);
    top: 85px;
  }
}
@media (min-width: 1510px) {
  #KV .color-block {
    height: clamp(631px, 50vw, 831px);
    width: clamp(631px, 50vw, 1500px);
  }
  #KV header {
    flex: 1 1 auto;
  }
  .KV-container .KV-img.pc {
    flex: 0 0 1000px;
    width: 1000px;
  }
}
.h2_heading {
  margin: 0 0 32px;
}
.h2_heading p {
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 16px;
  display: flex;
  align-items: center;
}
.h2_heading p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 16px 0 0;
}
.h2_heading h2 {
  font-size: 29px;
  font-weight: 700;
}

.h2_heading.yellow p {
  color: #FFD900;
}
.h2_heading.yellow p::before {
  background: #FFD900;
}

.h2_heading.white h2 {
  color: #FFFFFF;
}

.h2_heading.black p {
  color: #181818;
}
.h2_heading.black p::before {
  background: #FFFFFF;
}

.h2_heading.blue h2 {
  color: #004EA2;
}

.h2_heading.right_black p {
  justify-content: flex-end;
  color: #181818;
}
.h2_heading.right_black p::before {
  background: #FFD900;
}

.h2_heading.right_blue h2 {
  color: #004EA2;
  text-align: right;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  .h2_heading p {
    font-size: clamp(18px, 2vw, 20px);
    padding: 0 0 24px;
  }
  .h2_heading h2 {
    font-size: clamp(30px, 3vw, 40px);
  }
}
/* --------------------------------------------------
   color-block END
=====================================================*/
/* =====================================================
   共通 
--------------------------------------------------*/
aside.contact_info {
  background: #FFF;
  border-radius: 10px;
  padding: 20px 16px;
  margin: 32px 0;
}
aside.contact_info ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
aside.contact_info ul.multiple li div {
  font-size: 9px;
  color: #FFFFFF;
  background: linear-gradient(45deg, rgb(243, 64, 14) 70%, rgb(253, 106, 65) 70%);
  padding: 2px 4px;
  margin: 0 8px 0 0;
  border-radius: 6px;
  flex: 0 0 auto;
  letter-spacing: 0.02em;
}
aside.contact_info ul.multiple li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url(../image/blue_check.svg) no-repeat;
  margin: 0 8px 0 0;
}
aside.contact_info div.reception_hours_type1 {
  display: flex;
  gap: 24px;
}
aside.contact_info div.reception_hours_type1 p {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info div.reception_hours_type1 dl {
  gap: 24px;
  display: block;
}
aside.contact_info div.reception_hours_type1 dl .pair {
  display: flex;
  align-items: center;
  gap: 8px;
}
aside.contact_info div.reception_hours_type1 dl .pair dt {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info div.reception_hours_type1 dl .pair dd {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info dl.reception_hours_type2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
aside.contact_info dl.reception_hours_type2 dt {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info dl.reception_hours_type2 dd {
  font-size: 12px;
  font-weight: 700;
}
aside.contact_info a.tel {
  font-size: 13vw;
  font-weight: 700;
  white-space: nowrap;
  color: #F3400E;
  line-height: 1.5;
}

aside.contact_info.syaken {
  position: relative;
}
aside.contact_info.syaken::after {
  content: "";
  position: absolute;
  top: -138px;
  right: 10px;
  width: 126px;
  height: 142px;
  background: url(../image/syaken_image.png) no-repeat;
  background-size: 100% auto;
}

aside.contact_info.maintenance {
  margin: 32px 8px 0;
}
aside.contact_info.maintenance a.tel {
  font-size: 11vw;
}

aside.contact_info.gray {
  background: #EBEBEB;
}
aside.contact_info.gray a.tel {
  font-size: 11vw;
}

aside.contact_info.car-trade a.tel {
  font-size: 11vw;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  aside.contact_info {
    justify-content: space-between !important;
    padding: 32px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  aside.contact_info ul li {
    font-size: 26px;
  }
  aside.contact_info ul.multiple li div {
    font-size: 14px;
    padding: 0 8px;
  }
  aside.contact_info ul.multiple li::before {
    width: 32px;
    height: 32px;
    background-size: 100%;
  }
  aside.contact_info div.reception_hours_type1 dl {
    display: flex;
  }
  aside.contact_info a.tel {
    font-size: 60px;
  }
  aside.contact_info.syaken {
    min-width: 980px;
  }
  aside.contact_info.syaken::after {
    width: 203px;
    height: 230px;
    top: -222px;
    right: 50px;
  }
  aside.contact_info.maintenance {
    max-width: 764px;
    margin: 32px auto 0 !important;
  }
  aside.contact_info.maintenance a.tel {
    font-size: 60px;
  }
  aside.contact_info.car-trade {
    max-width: 680px;
    margin: 32px auto 0 !important;
  }
  aside.contact_info.car-trade a.tel {
    font-size: 60px;
  }
  aside.contact_info.gray {
    margin: 0;
  }
  aside.contact_info.gray a.tel {
    font-size: 60px;
  }
  aside.contact_info.gray.delivery {
    max-width: 634px;
  }
  aside.contact_info.gray.coating {
    max-width: 793px;
    margin: 0 auto;
  }
  aside.contact_info.car-trade a.tel {
    font-size: 60px;
  }
}
/* 764px以上980px以下: 強制的に縦並び */
@media (min-width: 764px) and (max-width: 980px) {
  aside.contact_info {
    flex-direction: column; /* ← カラム落ち */
    width: 100%;
    min-width: auto !important;
  }
}
/* --------------------------------------------------
   共通 END
=====================================================*/
/* =====================================================
   KV 
--------------------------------------------------*/
#KV header {
  color: #004EA2;
}
#KV header h2 {
  font-size: 0;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
#KV header h2 span {
  font-size: 28px;
  background: #FFFFFF;
  padding: 2px 16px;
  display: inline-block;
  font-weight: 700;
  margin: 0 0 1px;
}
#KV header h2 .span1 {
  border-radius: 5px 5px 0 0;
}
#KV header h2 .span2 {
  border-radius: 0 5px 0 0;
}
#KV header h2 .span3 {
  border-radius: 0 0 0 5px;
}
#KV header h2 .span4 {
  padding: 2px 16px 2px 0;
  border-radius: 0 5px 5px 0;
}
#KV header p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV header h2 span {
    font-size: clamp(28px, 3vw, 38px);
  }
  #KV header p {
    font-size: 18px;
  }
}
/* 1000px以下 かつ 764px以上 */
@media (min-width: 764px) and (max-width: 1000px) {
  #KV header h2 .span1 {
    border-radius: 5px 5px 0 0;
  }
  #KV header h2 .span2 {
    border-radius: 0 5px 0 0;
  }
  #KV header h2 .span3 {
    border-radius: 0 0 0 5px;
  }
  #KV header h2 .span4 {
    padding: 2px 16px 2px 0;
    border-radius: 0 5px 5px 0;
  }
}
/* ▼ 1001px以上だったら */
@media (min-width: 1001px) {
  #KV header h2 .span1 {
    border-radius: 5px 0 0 0;
    padding: 2px 0 2px 16px;
  }
  #KV header h2 .span2 {
    padding: 2px 16px 2px 0;
    border-radius: 0 5px 5px 0;
  }
  #KV header h2 .span3 {
    border-radius: 0 0 5px 0;
  }
  #KV header h2 .span4 {
    padding: 2px 16px;
    border-radius: 0 0 5px 5px;
  }
}
.KV-container {
  padding: 91px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.KV-container .KV-img img {
  width: 94vw;
  height: auto;
  border-radius: 20px;
}
.KV-container .KV-img.pc {
  display: none;
}

#KV {
  padding: 0 0 clamp(200px, 20%, 300px);
}
#KV .syagyousya {
  position: absolute;
  width: clamp(142px, 20%, 240px);
  height: auto;
  bottom: 0;
  left: 55px;
  border-radius: 10px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #KV {
    min-height: clamp(400px, 30%, 732px);
  }
  .KV-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* ← 中央寄せ親からはみ出して画面全幅に */
    width: 100%;
    margin-left: 0;
    /* 左余白は全体ではなく header にだけ持たせる */
    padding: 0;
    min-height: clamp(555px, 40vw, 732px);
    overflow: visible;
  }
  .KV-container header {
    flex: 0 0 clamp(200px, 54vw, 640px);
    max-width: clamp(200px, 54vw, 640px);
    padding-left: 100px; /* ← 左側の余白はここに移動 */
  }
  .KV-container .KV-img {
    flex: 1;
    min-width: 0;
  }
  .KV-container .KV-img img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 0 0 20px;
  }
  .KV-container .KV-img.sp {
    display: none;
  }
  .KV-container .KV-img.pc {
    display: block;
  }
  #KV {
    padding: 0 0 clamp(112px, 10%, 182px);
  }
  #KV .syagyousya {
    left: 25%;
    border-radius: 20px;
  }
}
/* --------------------------------------------------
   KV END
=====================================================*/
/* =====================================================
  service
--------------------------------------------------*/
#service {
  padding: 104px 32px 104px;
  background: url(../image/service_bg.png) no-repeat clamp(-375px, 90%, -100px) bottom;
  background-size: 800px auto;
  position: relative;
}
#service .color-block {
  width: clamp(238px, 50%, 732px);
  height: clamp(657px, 50%, 491px);
  top: -92px;
  right: 0;
  border-radius: 20px 0 0 20px;
}
#service h2 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 32px;
  font-weight: 700;
}
#service nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, clamp(144px, 38vw, 160px));
  gap: 8px;
  justify-content: center;
}
#service nav ul li {
  min-height: clamp(172px, 42vw, 180px);
  background: #FFF;
  z-index: 0;
  border-radius: 10px;
  /* 各サービス背景を ::before に指定 */
}
#service nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  /* 💡 疑似要素で背景画像を管理 */
  /* 拡大アニメーション */
}
#service nav ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: scale(1); /* ← 初期状態 */
  z-index: -1; /* 背景として配置 */
}
#service nav ul li a:hover::before {
  transform: scale(1.1); /* ← 10%拡大 */
}
#service nav ul li a::after {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  margin-top: 23px;
  background: url(../image/service_arrow.svg) no-repeat #FFFFFF center center;
  background-size: 14px auto;
  border-radius: 15px;
}
#service nav ul li.nav_syaken a::before {
  background-image: url(../image/sp_service_syaken.png);
}
#service nav ul li.nav_coating a::before {
  background-image: url(../image/sp_service_coating.png);
}
#service nav ul li.nav_maintenance a::before {
  background-image: url(../image/sp_service_maintenance.png);
}
#service nav ul li.nav_car-trade a::before {
  background-image: url(../image/sp_service_car-trade.png);
}
#service nav ul li.nav_delivery a::before {
  background-image: url(../image/sp_service_delivery.png);
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #service {
    background: url(../image/service_bg.png) no-repeat center bottom;
    background-size: 1075px auto;
    padding: 64px 32px 136px;
  }
  #service .color-block {
    top: -12px;
  }
  #service h2 {
    font-size: 32px;
  }
  #service nav {
    display: flex;
    justify-content: center;
  }
  #service nav ul {
    max-width: 1080px;
    grid-template-columns: repeat(auto-fill, 200px);
  }
  #service nav ul li {
    height: 272px;
    /* ▼ PC時も同じ hover アニメーション */
    /* ▼ PC用画像に差し替え */
  }
  #service nav ul li a::before {
    background-size: cover;
  }
  #service nav ul li a:hover::before {
    transform: scale(1.1);
  }
  #service nav ul li.nav_syaken a::before {
    background-image: url(../image/pc_service_syaken.png);
  }
  #service nav ul li.nav_coating a::before {
    background-image: url(../image/pc_service_coating.png);
  }
  #service nav ul li.nav_maintenance a::before {
    background-image: url(../image/pc_service_maintenance.png);
  }
  #service nav ul li.nav_car-trade a::before {
    background-image: url(../image/pc_service_car-trade.png);
  }
  #service nav ul li.nav_delivery a::before {
    background-image: url(../image/pc_service_delivery.png);
  }
}
/* 1080px以下 → 4列 */
@media (max-width: 1080px) and (min-width: 764px) {
  #service nav ul {
    grid-template-columns: repeat(4, 200px);
  }
}
/* 880px以下 → 3列 */
@media (max-width: 880px) and (min-width: 764px) {
  #service nav ul {
    grid-template-columns: repeat(3, 200px);
  }
}
#service {
  position: relative;
  padding: 56px 32px 104px;
  /* 各要素の開始位置を変える */
  /* 下方向へフェードイン・フェードアウトするアニメーション */
}
#service .scroll_group {
  position: absolute;
  right: 0;
  top: -88px;
  width: 24px;
  overflow: hidden;
}
#service .scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 320px;
}
#service .scroll-text {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  color: #fff;
  position: relative;
}
#service .scroll span {
  display: block;
  width: 1px; /* 細い棒状にする */
  /* 棒の長さ */
  background: #fff; /* 線の色 */
  margin: 8px 0;
  opacity: 0;
  animation: scrollDown 1.5s infinite;
}
#service .scroll span:nth-child(1) {
  animation-delay: 0s;
  transform: translateY(100px); /* 1つ目を100px下げる */
  height: 200px;
}
#service .scroll span:nth-child(2) {
  animation-delay: 0.2s;
  transform: translateY(10px); /* 2つ目を10px下げる */
  height: 10px;
}
#service .scroll span:nth-child(3) {
  animation-delay: 0.4s;
  transform: translateY(3px); /* 3つ目を3px下げる */
  height: 3px;
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #service .scroll_group {
    top: 0;
  }
}
/* --------------------------------------------------
  service END
=====================================================*/
/* =====================================================
   syaken
--------------------------------------------------*/
#syaken {
  background: #004EA2;
  padding: 48px 16px;
}
#syaken .syaken_inner {
  max-width: 1080px;
}
#syaken .text_grouo {
  padding: 0 16px;
}
#syaken .text_grouo .text_group {
  color: #FFFFFF;
}
#syaken .text_grouo .text_group ul li {
  display: flex;
  align-items: center;
  margin: 4px 0;
}
#syaken .text_grouo .text_group ul li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url(../image/white_check.svg) no-repeat;
  margin: 0 8px 0 0;
}
#syaken .text_grouo .text_group.underline p {
  line-height: 2.3;
  font-weight: 500;
}
#syaken .text_grouo .text_group.underline .obi {
  position: relative;
  z-index: 1;
}
#syaken .text_grouo .text_group.underline .obi::after {
  position: absolute;
  content: "";
  background: #3183DB;
  height: 12px;
  width: 100%;
  left: 0;
  bottom: -5px;
  z-index: -1;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #syaken {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #syaken .text_grouo {
    align-self: center;
  }
  #syaken .text_grouo .text_group ul {
    display: flex;
    gap: 32px;
  }
  #syaken .text_grouo .text_group.underline p {
    font-size: 18px;
  }
  #syaken .text_grouo .text_group.underline .obi {
    font-size: 18px;
  }
  #syaken .text_grouo .text_group.underline .obi::after {
    height: 16px;
  }
}
/* --------------------------------------------------
   syaken END
=====================================================*/
/* =====================================================
   coating
--------------------------------------------------*/
#coating {
  padding: 72px 32px;
  position: relative;
}
#coating section {
  margin: 0 0 48px;
}
#coating section article {
  box-shadow: 0px 1px 8px 0px #EBEBEB;
  background: #FFFFFF;
  padding: 16px;
  border-radius: 10px;
  margin: 0 0 24px;
}
#coating section article .img_group {
  position: relative;
  margin: 0 0 16px;
}
#coating section article .img_group img {
  border-radius: 10px;
}
#coating section article .img_group img.step_label {
  margin: 0;
  border-radius: 0;
  width: 153px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#coating section article .price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 8px 0 0;
}
#coating section article .price .amount {
  font-size: 30px;
  color: #F3400E;
  font-weight: 700;
  line-height: 1.5;
}
#coating section article .price .price-right {
  display: flex;
  flex-direction: column;
}
#coating section article .price .price-right .tax {
  font-size: 8px;
  line-height: 1;
}
#coating section article .price .price-right .currency {
  color: #F3400E;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

#coating .color-block1 {
  top: 72px;
  left: 0;
  width: 105px;
  height: 491px;
  border-radius: 0 20px 20px 0;
}

#coating .color-block2 {
  right: 0;
  bottom: 335px;
  width: 212px;
  height: 491px;
  border-radius: 20px 0 0 20px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #coating {
    padding: 104px 100px;
    display: flex;
    justify-content: center;
  }
  #coating .coating_inner {
    max-width: 1080px;
  }
  #coating section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
  #coating section article {
    flex: 1;
  }
  #coating section article p {
    min-height: 168px;
  }
  #coating section article .img_group img {
    margin: 0 0 16px;
  }
  #coating section article .img_group img.step_label {
    position: static;
    width: 217px;
  }
  #coating .color-block1 {
    top: 119px;
    left: 0;
    width: clamp(105px, 42vw, 485px);
    height: clamp(491px, 42vw, 604px);
    border-radius: 0 20px 20px 0;
  }
  #coating .color-block2 {
    right: 0;
    bottom: 335px;
    width: clamp(212px, 42vw, 304px);
    height: 284px;
    border-radius: 20px 0 0 20px;
  }
}
/* --------------------------------------------------
   coating END
=====================================================*/
/* =====================================================
   maintenance
--------------------------------------------------*/
#maintenance {
  background: #FFD900;
  border-radius: 20px;
  padding: 32px 16px;
  margin: 0 8px 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#maintenance .maintenance_inner {
  max-width: 1080px;
}
#maintenance::after {
  content: "";
  position: absolute;
  top: -24px;
  right: 10px;
  width: 116px;
  height: 107px;
  background: url(../image/maintenance_image.png) no-repeat;
  background-size: 100% auto;
}
#maintenance .type_group .type_box {
  background: #FFFFFF;
  margin: 0 0 24px;
  border-radius: 10px;
  padding: 0 24px 16px 0;
}
#maintenance .type_group .type_box p {
  padding: 0 0 0 24px;
  font-weight: 500;
}
#maintenance .type_group .type_box h3 {
  background: linear-gradient(45deg, rgb(0, 78, 162) 70%, rgb(18, 100, 189) 70%);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #maintenance {
    margin: 0 16px 104px;
    padding: 32px clamp(16px, 6vw, 80px);
  }
  #maintenance::after {
    top: 32px;
    right: clamp(50px, 6vw, 100px);
    width: clamp(116px, 18vw, 182px);
    height: clamp(107px, 18vw, 168px);
  }
  #maintenance .type_group {
    display: flex;
    gap: 24px;
  }
  #maintenance .type_group .type_box {
    margin: 0;
    flex: 1;
    width: 50%;
  }
}
/* 880px以下 */
@media (max-width: 880px) and (min-width: 764px) {
  aside.contact_info.gray a.tel {
    font-size: 54px;
  }
}
/* --------------------------------------------------
   maintenance END
=====================================================*/
/* =====================================================
   car-trade
--------------------------------------------------*/
#car-trade {
  background: #004EA2;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#car-trade .car-trade_inner {
  max-width: 1080px;
  width: 100%;
}
#car-trade .car-trade_inner .article_group article {
  background: #FFFFFF;
  border-radius: 8px;
  margin: 112px 0 32px;
  position: relative;
  padding: 74px 24px 24px;
}
#car-trade .car-trade_inner .article_group article .h3_heading {
  position: absolute;
  left: 0;
  top: -67px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
#car-trade .car-trade_inner .article_group article .h3_heading p {
  font-size: 13px;
  font-weight: 700;
  padding: 0 0 8px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
#car-trade .car-trade_inner .article_group article .h3_heading p::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 0 16px 0 0;
  background: #FFD900;
}
#car-trade .car-trade_inner .article_group article .h3_heading h3 {
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(45deg, rgb(255, 217, 1) 70%, rgb(253, 232, 115) 70%);
  padding: 16px;
  border-radius: 50px;
  box-shadow: 0px 4px 0px 0px #DABA00;
  text-align: center;
}
#car-trade .car-trade_inner .article_group article figure img {
  height: 162px;
  width: auto;
  margin: 0 auto 16px;
}

/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #car-trade {
    padding: 48px 100px;
  }
  #car-trade .car-trade_inner {
    align-self: center;
  }
  #car-trade .car-trade_inner .article_group {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 32px;
  }
  #car-trade .car-trade_inner .article_group article {
    flex: 1;
    margin: 80px 0 32px;
    padding: 88px 24px 24px;
  }
  #car-trade .car-trade_inner .article_group article .h3_heading p {
    font-size: 16px;
  }
  #car-trade .car-trade_inner .article_group article .h3_heading h3 {
    font-size: clamp(18px, 2vw, 24px);
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 60px;
    top: -84px;
  }
}
/* --------------------------------------------------
   car-trade END
=====================================================*/
/* =====================================================
  delivery
--------------------------------------------------*/
#delivery {
  padding: 72px 32px;
}
/* ▼ 764px以上だったら */
@media (min-width: 764px) {
  #delivery {
    margin: 104px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 94px;
  }
  #delivery .h2_heading {
    margin: 0;
    white-space: nowrap;
  }
}
/* --------------------------------------------------
  delivery END
=====================================================*/
