:root {
  --max-width: 1200px;
  --max-width-narrow: 996px;
  --side-padding: 4%;
  --side-padding-home-sp: 4vw;
  --side-padding-home-pc: 3vw;
  --height-header-sp: 93px;
  --height-header-pc: 157px;
  --primary-color: #E40011;
  --gray-color: #ABB8C3;
  --white-color: #fff;
  --red-color: #C80000;
  --base-textcolor: #333;
  --gray-textcolor: #666;
  --lightgray-bgcolor: #F6F6F6;
  --fontsize-84: 5.25rem;
  --fontsize-80: 5rem;
  --fontsize-68: 4.25rem;
  --fontsize-56: 3.5rem;
  --fontsize-48: 3rem;
  --fontsize-44: 2.75rem;
  --fontsize-42: 2.625rem;
  --fontsize-40: 2.5rem;
  --fontsize-34: 2.125rem;
  --fontsize-32: 2rem;
  --fontsize-28: 1.75rem;
  --fontsize-26: 1.625rem;
  --fontsize-24: 1.5rem;
  --fontsize-22: 1.375rem;
  --fontsize-20: 1.25rem;
  --fontsize-18: 1.125rem;
  --fontsize-16: 1rem;
  --fontsize-14: 0.875rem;
  --fontsize-13: 0.8125rem;
  --fontsize-12: 0.75rem;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 742px;
  color: #222;
  overflow: hidden;
}
@media (width < 768px) {
  .home-hero {
    height: 440px;
  }
}
@media (width < 470px) {
  .home-hero {
    height: 470px;
  }
}

.home-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin-inline: auto;
  text-align: left;
  padding: 0 var(--side-padding-home-pc) 40px;
  z-index: 1;
  container-type: inline-size;
}
@media (width < 768px) {
  .home-hero__body {
    padding: 0 var(--side-padding-home-sp) 20px;
  }
}

.home-hero__body__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 9cqi 0 2cqi;
}
@media (width < 768px) {
  .home-hero__body__inner {
    width: 100%;
  }
}

.home-hero__title {
  font-size: var(--fontsize-28);
  font-weight: bold;
  line-height: 1.8;
}
@container (min-width: 474px) {
  .home-hero__title {
    font-size: clamp(1.7rem, 5.5cqi, 4.25rem);
  }
}

.home-hero__text {
  margin-top: 47px;
  font-size: var(--fontsize-20);
  color: #222;
  line-height: 1.8;
}
@media (width < 768px) {
  .home-hero__text {
    margin-top: 20px;
    font-size: var(--fontsize-16);
  }
}

.home-hero__image {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.home-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.home-hero__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-hero__scroll {
  color: var(--base-textcolor);
  display: flex;
  align-items: flex-end;
  line-height: 1.2;
  font-size: var(--fontsize-12);
  text-decoration: none;
  writing-mode: vertical-rl;
  animation: renew-p-top-mainvisual__link 0.8s ease 1.2s forwards;
}
@media (hover: hover) {
  .home-hero__scroll:hover {
    opacity: 0.5;
  }
}

.home-hero__scroll__bar {
  display: block;
  height: 80px;
  margin-left: 6px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 1px;
}
.home-hero__scroll__bar:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  animation: animationScrollBar 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0s infinite;
  background-color: var(--base-textcolor);
}
@media (width < 768px) {
  .home-hero__scroll__bar {
    height: 50px;
  }
}

.home-hero__scroll__arrow {
  position: relative;
  display: inline-block;
  width: 10.9px;
  height: 5.9px;
  margin-left: 1px;
  animation: animationScrollArrow 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0s infinite;
}

.home-hero__scroll__arrow::before,
.home-hero__scroll__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.4px);
  width: 1px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--base-textcolor);
  transform-origin: 50% calc(100% - 0.5px);
}

.home-hero__scroll__arrow::before {
  transform: rotate(45deg);
}

.home-hero__scroll__arrow::after {
  transform: rotate(-45deg);
}

@keyframes animationScrollBar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes animationScrollArrow {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.home-product {
  max-width: 1920px;
  margin-inline: auto;
  text-align: left;
  padding: 100px var(--side-padding-home-pc) 0;
}
@media (width < 768px) {
  .home-product {
    padding: 84px var(--side-padding-home-sp) 0;
  }
}
.home-product .link-block {
  margin-top: 60px;
}
@media (width < 768px) {
  .home-product .link-block .text {
    font-size: var(--fontsize-16);
  }
}
@media (width < 1000px) {
  .home-product .link-block--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .home-product .link-block--col3 {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.home-product__title {
  font-size: clamp(2.625rem, 6.8cqi, 5.25rem);
  font-weight: bold;
  line-height: 1.4;
}
@media (width < 768px) {
  .home-product__title {
    font-size: clamp(2rem, 5cqi, 2.625rem);
  }
}

.home-product__text {
  font-size: var(--fontsize-20);
  color: var(--base-textcolor);
  margin-top: 20px;
}
@media (width < 768px) {
  .home-product__text {
    font-size: var(--fontsize-16);
  }
}

.home-pickup {
  position: relative;
  margin-top: 64px;
  padding: 200px 0 220px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgb(0, 0, 0) 300px, rgb(0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgb(0, 0, 0) 300px, rgb(0, 0, 0) 100%);
}
.home-pickup::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(/under-files/img/home_bg01.jpg) no-repeat;
  background-size: cover;
  background-position: 0;
}
@media (width < 768px) {
  .home-pickup {
    padding: 140px 0 220px;
  }
}
.home-pickup .home-card:nth-of-type(odd) {
  grid-template-columns: 1fr 0.745fr;
}
@media (width < 900px) {
  .home-pickup .home-card:nth-of-type(odd) {
    grid-template-columns: 1fr 1.5fr;
  }
}
.home-pickup .home-card:nth-of-type(odd) .home-card__body {
  order: 2;
}

.home-card {
  display: grid;
  grid-template-columns: 0.745fr 1fr;
  max-width: 1920px;
  margin-inline: auto;
  container-type: inline-size;
}
@media (width < 900px) {
  .home-card {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (width < 768px) {
  .home-card {
    display: flex;
    flex-direction: column;
  }
}
.home-card + .home-card {
  margin-top: 150px;
}
@media (width < 768px) {
  .home-card + .home-card {
    margin-top: 84px;
  }
}
@media (width < 768px) {
  .home-card .link-button {
    width: 100%;
  }
}

.home-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3cqi, 4.5rem);
  padding-left: var(--side-padding-home-pc);
  background-color: #585858;
}
@media (width < 768px) {
  .home-card__body {
    order: 2;
    padding: 44px var(--side-padding-home-sp);
  }
}
@media (width < 1000px) {
  .home-card__body .link-button {
    padding: 22px 60px;
  }
}
@media (768px < width < 1000px) {
  .home-card__body .link-button::before {
    width: 30px;
    height: 30px;
  }
}
@media (768px < width < 1000px) {
  .home-card__body .link-button::after {
    right: 26px;
  }
}

.home-card__title {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 2%;
  font-weight: bold;
  font-size: clamp(2.625rem, 4.8cqi, 5.25rem);
  line-height: 1.4;
  color: var(--white-color);
}
.home-card__title::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: var(--white-color);
}
@media (width < 768px) {
  .home-card__title {
    font-size: clamp(2rem, 5cqi, 2.625rem);
  }
}

.home-card__text {
  font-size: var(--fontsize-20);
  color: var(--white-color);
  margin-top: 20px;
}
@media (width < 768px) {
  .home-card__text {
    font-size: var(--fontsize-16);
  }
}

@media (width < 768px) {
  .home-card__image {
    order: 1;
  }
}
.home-card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  height: 494px;
  padding: 30px 20px;
  color: var(--white-color);
  text-align: center;
  overflow: hidden;
}
@media (width < 768px) {
  .home-contact__link {
    max-height: 323px;
    padding: 30px var(--side-padding-home-sp);
  }
}
@media (hover: hover) {
  .home-contact__link:hover {
    opacity: 0.5;
  }
  .home-contact__link:hover img {
    transform: scale(1.2);
    transition-duration: 0.35s;
  }
}

.home-contact__body {
  position: relative;
  z-index: 2;
}

.home-contact__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  position: relative;
  font-size: clamp(2.625rem, 6.8cqi, 5.25rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media (width < 768px) {
  .home-contact__title {
    gap: 0 8px;
    font-size: clamp(2rem, 5cqi, 2.625rem);
  }
}
.home-contact__title span {
  display: flex;
  place-items: center;
  gap: 0 20px;
  position: relative;
  border-bottom: 2px solid var(--white-color);
}
@media (width < 768px) {
  .home-contact__title span {
    gap: 0 8px;
  }
}
.home-contact__title span::after {
  content: "";
  display: inline-flex;
  width: 1em;
  height: 1em;
  margin-top: -10px;
  background: url(/common-files/img/icons/icon_contact.svg) no-repeat right center;
  background-size: contain;
}

.home-contact__text {
  font-size: var(--fontsize-28);
  line-height: 1.6;
}
@media (width < 768px) {
  .home-contact__text {
    font-size: var(--fontsize-16);
  }
}

.home-contact__image {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-contact__image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #1A1A1A 0%, #666666 100%) 0 0 no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.9;
  z-index: 1;
}
.home-contact__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition-duration: 0.35s;
}