@charset "UTF-8";
/* ************************************** _
タイトル：index.css
概要：トップページのスタイルシート
更新：2025.10.02
_ ************************************** */
/* ************************************** _
タイトル：blog.css
概要：ブログページのスタイルシート
更新：2025.09.16
_ ************************************** */
.p-blog .c-heading__section,
.p-blog .c-heading__section-jp {
  color: #fff;
}
.p-blog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-blog__list {
    gap: 40px 30px;
  }
}
@media (max-width: 768px) {
  .p-blog__list {
    gap: 30px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-blog__list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-blog__item {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1366px) {
  .p-blog__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .p-blog__item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 480px) {
  .p-blog__item {
    width: 100%;
  }
}
.p-blog__link {
  display: block;
}
.p-blog__link:hover .p-blog__img img, .p-blog__link:focus-visible .p-blog__img img {
  transform: scale(1.06);
}
.p-blog__link:hover .p-blog__heading, .p-blog__link:focus-visible .p-blog__heading {
  color: #cd0811;
}
@media (max-width: 480px) {
  .p-blog__link {
    display: flex;
    gap: 15px;
    align-items: center;
  }
}
.p-blog__img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media (max-width: 1366px) {
  .p-blog__img {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .p-blog__img {
    width: calc(45% - 15px);
    margin-bottom: 0;
  }
}
.p-blog__img img {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
  transform: scale(1);
  will-change: transform;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (max-width: 480px) {
  .p-blog__txt {
    width: 55%;
  }
}
.p-blog__date {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 7px;
}
@media (max-width: 1366px) {
  .p-blog__date {
    margin-bottom: 3px;
  }
}
@media (max-width: 480px) {
  .p-blog__date {
    margin-bottom: 7px;
    flex-direction: column;
    align-items: baseline;
    gap: 1px;
  }
}
.p-blog__time {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 480px) {
  .p-blog__time {
    font-size: 12px;
  }
}
.p-blog__cat {
  font-size: 14px;
  color: #fff;
}
@media (max-width: 480px) {
  .p-blog__cat {
    font-size: 12px;
  }
}
.p-blog__heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
  color: #fff;
}
@media (max-width: 1366px) {
  .p-blog__heading {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .p-blog__heading {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .p-blog__heading {
    font-size: 14px;
  }
}
.p-blog__btn {
  margin: auto;
}

/* モーション控えめ設定（任意） */
@media (prefers-reduced-motion: reduce) {
  .p-blog__img img,
  .p-blog__heading {
    transition: none;
  }
}
/* ************************************** _
タイトル：delivery.css
概要：納車アルバムページのスタイルシート
更新：2025.09.16
_ ************************************** */
.p-delivery__parag {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1366px) {
  .p-delivery__parag {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .p-delivery__parag {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .p-delivery__parag {
    margin-bottom: 20px;
  }
}
.p-delivery__slider {
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-delivery__slider {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-delivery__slider {
    margin-bottom: 30px;
  }
}
.p-delivery__link {
  display: block;
}
.p-delivery__link:hover .p-delivery__heading, .p-delivery__link:focus-visible .p-delivery__heading {
  color: #cd0811;
  transition: transform 0.35s ease;
}
.p-delivery__img {
  width: 100%;
  max-width: 400px;
  background-size: cover;
  aspect-ratio: 4/3;
  margin-bottom: 15px;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.35s ease;
}
@media (max-width: 1366px) {
  .p-delivery__img {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .p-delivery__img {
    margin-bottom: 8px;
  }
}
.p-delivery__img img {
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}
.p-delivery__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: transform 0.35s ease;
}
@media (max-width: 1366px) {
  .p-delivery__heading {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .p-delivery__heading {
    font-size: 15px;
    margin-bottom: 3px;
  }
}
@media (max-width: 480px) {
  .p-delivery__heading {
    font-size: 13px;
  }
}
.p-delivery__cat {
  font-size: 14px;
}
@media (max-width: 1366px) {
  .p-delivery__cat {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .p-delivery__cat {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .p-delivery__cat {
    font-size: 11px;
  }
}
.p-delivery__btn {
  margin: auto;
}

/* ************************************** _
タイトル：ucar.css
概要：中古車ページのスタイルシート
更新：2025.09.16
_ ************************************** */
.p-ucar__parag {
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-ucar__parag {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-ucar__parag {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-ucar__parag {
    margin-bottom: 20px;
  }
}
.p-ucar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-ucar__list {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-ucar__list {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-ucar__list {
    margin-bottom: 20px;
  }
}
.p-ucar__item {
  width: calc((100% - 100px) / 3);
  background-color: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1366px) {
  .p-ucar__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .p-ucar__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .p-ucar__item {
    width: 100%;
  }
}
.p-ucar__link {
  transition: all 0.2s ease-in-out;
  display: block;
  height: 100%;
  position: relative;
}
.p-ucar__link:hover .p-ucar__heading {
  color: #cd0811;
}
.p-ucar__img {
  width: 100%;
}
.p-ucar__txt {
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .p-ucar__txt {
    padding: 10px 15px 15px;
  }
}
@media (max-width: 768px) {
  .p-ucar__txt {
    padding: 20px;
  }
}
.p-ucar__shop {
  text-align: right;
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 14px;
}
@media (max-width: 1366px) {
  .p-ucar__shop {
    right: 15px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .p-ucar__shop {
    right: 20px;
    font-size: 12px;
  }
}
.p-ucar__heading {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .p-ucar__heading {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-ucar__heading {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .p-ucar__heading {
    font-size: 15px;
  }
}
.p-ucar__price {
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .p-ucar__price {
    margin-bottom: 12px;
  }
}
.p-ucar__price-row {
  display: flex;
  gap: 30px;
}
@media (max-width: 1366px) {
  .p-ucar__price-row {
    gap: 20px;
  }
}
.p-ucar__price-label {
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
}
@media (max-width: 1366px) {
  .p-ucar__price-label {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .p-ucar__price-label {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .p-ucar__price-label {
    font-size: 12px;
    gap: 5px;
  }
}
.p-ucar__price-total {
  font-size: 14px;
  font-weight: 500;
}
.p-ucar__price-num--integer {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 1366px) {
  .p-ucar__price-num--integer {
    font-size: 28px;
  }
}
.p-ucar__price-num--decimal {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1366px) {
  .p-ucar__price-num--decimal {
    font-size: 24px;
  }
}
.p-ucar__price-num--unit {
  font-size: 16px;
}
@media (max-width: 1366px) {
  .p-ucar__price-num--unit {
    font-size: 15px;
  }
}
.p-ucar__price-num--status {
  font-size: 24px;
  font-weight: 600;
}
.p-ucar__price-disp {
  font-size: 15px;
  margin-top: 5px;
}
@media (max-width: 1366px) {
  .p-ucar__price-disp {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .p-ucar__price-disp {
    font-size: 13px;
  }
}
.p-ucar__spec {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-bottom: 15px;
  font-size: 14px;
}
@media (max-width: 1366px) {
  .p-ucar__spec {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .p-ucar__spec {
    font-size: 12px;
  }
}
.p-ucar__spec-heading {
  padding: 3px 12px;
  background-color: #f5f5f5;
  border-radius: 10rem;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .p-ucar__spec-heading {
    padding: 1px 10px;
  }
}
.p-ucar__btn {
  margin: auto;
}
.p-ucar__new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-ucar__new-item {
  background-color: #cd0811;
  color: #fff;
  padding: 5px 15px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  border-radius: 0 0 1.5rem 0;
}
@media (max-width: 1366px) {
  .p-ucar__new-item {
    padding: 5px 15px;
    font-size: 13px;
  }
}

.p-merit__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.p-merit__list-item {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .p-merit__list-item {
    width: 100%;
  }
}
.p-merit__list-ttl {
  color: #cd0811;
  letter-spacing: 0.05em;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-grow: 1;
  line-height: 1.6;
  word-break: auto-phrase;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-merit__list-ttl {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .p-merit__list-ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.p-merit__list-img {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
}

.p-option__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
@media (max-width: 1366px) {
  .p-option__list {
    gap: 50px 30px;
  }
}
@media (max-width: 768px) {
  .p-option__list {
    gap: 40px 30px;
  }
}
@media (max-width: 480px) {
  .p-option__list {
    gap: 20px 15px;
  }
}
.p-option__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 1366px) {
  .p-option__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .p-option__item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 480px) {
  .p-option__item {
    width: calc((100% - 15px) / 2);
  }
}
.p-option__item-link {
  display: block;
}
.p-option__item-link:hover .p-option__item-ttl {
  color: #cd0811;
}
.p-option__item-link:hover .p-option__item-img img {
  transform: scale(1.05);
}
.p-option__item-img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #c3c3c3;
}
@media (max-width: 768px) {
  .p-option__item-img {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .p-option__item-img {
    margin-bottom: 8px;
    border-radius: 1rem;
  }
}
.p-option__item-img img {
  transition: transform 0.3s ease;
}
.p-option__item-ttl {
  font-size: 20px;
  letter-spacing: 0.075em;
  margin-bottom: 7px;
  text-align: center;
}
@media (max-width: 1366px) {
  .p-option__item-ttl {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-option__item-ttl {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .p-option__item-ttl {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

.p-info__tbl {
  width: 100%;
  font-size: 16px;
  border-collapse: collapse;
}
@media (max-width: 1366px) {
  .p-info__tbl {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .p-info__tbl {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .p-info__tbl {
    font-size: 13px;
  }
}
.p-info__tbl tbody {
  width: 100%;
}
.p-info__tbl tr {
  border-bottom: 1px solid #c3c3c3;
}
@media (max-width: 480px) {
  .p-info__tbl tr {
    border-bottom: none;
  }
}
.p-info__tbl tr:first-child {
  border-top: 1px solid #c3c3c3;
}
@media (max-width: 480px) {
  .p-info__tbl tr:first-child {
    border-top: none;
  }
}
.p-info__tbl th,
.p-info__tbl td {
  padding: 12px 30px;
}
@media (max-width: 768px) {
  .p-info__tbl th,
  .p-info__tbl td {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .p-info__tbl th,
  .p-info__tbl td {
    padding: 7px 15px;
  }
}
.p-info__tbl th {
  width: 30%;
  background-color: #f5f5f5;
  text-align: left;
}
@media (max-width: 480px) {
  .p-info__tbl th {
    width: 100%;
    display: block;
  }
}
.p-info__tbl td {
  width: 70%;
}
@media (max-width: 480px) {
  .p-info__tbl td {
    width: 100%;
    display: block;
  }
}

.p-inquiry__tbl {
  width: 100%;
  font-size: 16px;
  border-collapse: collapse;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .p-inquiry__tbl {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .p-inquiry__tbl {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .p-inquiry__tbl {
    font-size: 13px;
  }
}
.p-inquiry__tbl tr {
  border-bottom: 1px solid #c3c3c3;
}
@media (max-width: 480px) {
  .p-inquiry__tbl tr {
    border-bottom: none;
  }
}
.p-inquiry__tbl tr:first-child {
  border-top: 1px solid #c3c3c3;
}
@media (max-width: 480px) {
  .p-inquiry__tbl tr:first-child {
    border-top: none;
  }
}
.p-inquiry__tbl th,
.p-inquiry__tbl td {
  padding: 15px 30px;
}
@media (max-width: 768px) {
  .p-inquiry__tbl th,
  .p-inquiry__tbl td {
    padding: 15px;
  }
}
.p-inquiry__tbl th {
  width: 30%;
  background-color: #f5f5f5;
  text-align: left;
}
@media (max-width: 480px) {
  .p-inquiry__tbl th {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
}
.p-inquiry__tbl td {
  width: 70%;
}
@media (max-width: 480px) {
  .p-inquiry__tbl td {
    width: 100%;
    display: block;
    padding: 15px 15px 20px;
  }
}
.p-inquiry__tbl input,
.p-inquiry__tbl select,
.p-inquiry__tbl textarea {
  background-color: #f5f5f5;
  border-radius: 0.3rem;
  padding: 5px 10px;
  border: 1px solid #c3c3c3;
}
.p-inquiry__tbl select {
  appearance: auto;
}
.p-inquiry__tbl textarea {
  width: 100% !important;
  height: 300px !important;
}
.p-inquiry__tbl ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.p-inquiry__tbl ol li span {
  padding-right: 10px;
}
.p-inquiry__tbl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
}
@media (max-width: 768px) {
  .p-inquiry__tbl-row {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .p-inquiry__tbl-row {
    flex-direction: column;
    gap: 10px;
  }
}
.p-inquiry__tbl-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .p-inquiry__tbl-col {
    gap: 0;
  }
}
.p-inquiry__tbl-caption {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .p-inquiry__tbl-caption {
    margin-top: 5px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .p-inquiry__tbl-caption {
    margin-top: 10px;
  }
}
.p-inquiry__tbl-must {
  background-color: #cd0811;
  color: #fff;
  font-size: 13px;
  padding: 3px 10px 4px;
  border-radius: 0.5rem;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .p-inquiry__tbl-must {
    font-size: 12px;
    padding: 2px 5px 3px;
    margin-left: 5px;
  }
}
@media (max-width: 480px) {
  .p-inquiry__tbl-must {
    font-size: 11px;
  }
}

.p-top__section {
  margin-bottom: 150px;
}
@media (max-width: 1366px) {
  .p-top__section {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .p-top__section {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .p-top__section {
    margin-bottom: 60px;
  }
}
.p-top__section .c-btn {
  margin: auto;
}

.p-top-mv {
  position: relative;
  overflow: hidden;
}
.p-top-mv__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-mv__inner {
    height: 80vh;
  }
}
@media (max-width: 480px) {
  .p-top-mv__inner {
    height: 75vh;
  }
}
.p-top-mv__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-top-mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  top: 0;
  right: 0;
  margin: auto;
}
.p-top-mv__copy {
  position: relative;
  top: 35%;
  z-index: 2;
}
@media (max-width: 1366px) {
  .p-top-mv__copy {
    top: 37%;
  }
}
@media (max-width: 768px) {
  .p-top-mv__copy {
    top: 40%;
  }
}
@media (max-width: 480px) {
  .p-top-mv__copy {
    top: 42%;
  }
}
.p-top-mv__copy-text {
  display: inline-block;
}
.p-top-mv__copy-main {
  font-size: 98px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 1366px) {
  .p-top-mv__copy-main {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .p-top-mv__copy-main {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .p-top-mv__copy-main {
    font-size: 37px;
    line-height: 1.6;
  }
}
@media (max-width: 390px) {
  .p-top-mv__copy-main {
    font-size: 30px;
  }
}
.p-top-mv__copy-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 112px;
  font-weight: 800;
  position: relative;
  top: 5px;
  padding-right: 15px;
}
@media (max-width: 1366px) {
  .p-top-mv__copy-en {
    font-size: 82px;
    top: 5px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .p-top-mv__copy-en {
    font-size: 68px;
    top: 3px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .p-top-mv__copy-en {
    font-size: 42px;
    top: 3px;
    padding-right: 6px;
  }
}
@media (max-width: 390px) {
  .p-top-mv__copy-en {
    font-size: 34px;
    top: 1px;
    padding-right: 5px;
  }
}
.p-top-mv__copy-sub {
  width: 480px;
  position: absolute;
  top: -30%;
  left: -5%;
  transform: rotate(-15deg);
  z-index: 3;
}
@media (max-width: 1366px) {
  .p-top-mv__copy-sub {
    width: 370px;
  }
}
@media (max-width: 768px) {
  .p-top-mv__copy-sub {
    width: 320px;
    top: -40%;
  }
}
@media (max-width: 480px) {
  .p-top-mv__copy-sub {
    width: 225px;
    top: -35%;
  }
}
@media (max-width: 390px) {
  .p-top-mv__copy-sub {
    width: 180px;
    top: -38%;
  }
}
.p-top-mv .p-top-mv__bgtxt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
  mix-blend-mode: soft-light;
}
@media (max-width: 768px) {
  .p-top-mv .p-top-mv__bgtxt {
    height: 20%;
  }
}
@media (max-width: 480px) {
  .p-top-mv .p-top-mv__bgtxt {
    height: 15%;
  }
}
.p-top-mv .p-top-mv__bgtxt .mv-logo {
  width: 95%;
  position: absolute;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
}
@media (max-width: 1366px) {
  .p-top-mv .p-top-mv__bgtxt .mv-logo {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .p-top-mv .p-top-mv__bgtxt .mv-logo {
    width: 100%;
    bottom: -3%;
  }
}
@media (max-width: 480px) {
  .p-top-mv .p-top-mv__bgtxt .mv-logo {
    width: 95%;
  }
}

.copy-line {
  display: block;
  overflow: hidden;
}

.svg-handwrite path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* MV 初期状態（GSAP起動前） */
.p-top-mv__copy-bg,
.p-top-mv__copy-text,
.svg-handwrite path,
.p-top-mv__bgtxt {
  opacity: 0;
}

.p-top-about__row {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1366px) {
  .p-top-about__row {
    gap: 70px;
  }
}
@media (max-width: 768px) {
  .p-top-about__row {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .p-top-about__row {
    gap: 30px;
  }
}
.p-top-about__img {
  flex: 0 0 auto;
  overflow: hidden;
  max-height: 650px;
  border-radius: 0 5rem 5rem 0;
  width: 50vw;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .p-top-about__img {
    max-height: 350px;
    width: 100vw;
    margin-left: calc(100% - 100vw);
  }
}
@media (max-width: 480px) {
  .p-top-about__img {
    border-radius: 0 3.5rem 3.5rem 0;
  }
}
.p-top-about__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 650px;
  min-height: 600px;
}
@media (max-width: 1366px) {
  .p-top-about__img img {
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .p-top-about__img img {
    min-height: 200px;
  }
}
.p-top-about__txt {
  /* テキスト側は“中央 1400px”の半分 - ギャップ/2 が目安 */
  width: 660px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-top-about__txt {
    width: 100%;
  }
}

.p-top-sdgs {
  position: relative;
  z-index: 0;
}
.p-top-sdgs__wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 0 200px;
  background: #fff;
  border-radius: 5rem 0 0 5rem;
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
  /* ---- 全体に影を付けたいとき（上下左右） ----
  ラッパーに .is-shadow-all を付けるだけで切替 */
}
@media (max-width: 1366px) {
  .p-top-sdgs__wrapper {
    padding: 70px 0 150px;
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__wrapper {
    padding: 60px 0 120px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__wrapper {
    padding: 40px 0 80px 15px;
    border-radius: 3.5rem 0 0 3.5rem;
  }
}
.p-top-sdgs__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: calc((100vw - 100%) / 2);
  background: #fff;
  z-index: -1;
}
.p-top-sdgs__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% + (100vw - 100%) / 2);
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
  /* ▼通常は上下だけ */
  box-shadow: 0 -20px 40px -28px rgba(0, 0, 0, 0.18), 0 20px 40px -28px rgba(0, 0, 0, 0.18);
  /* 下 */
}
.p-top-sdgs__wrapper.is-shadow-all::after {
  /* 幅はそのまま（本体+延長）でOK */
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.18);
}
.p-top-sdgs__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top-sdgs__entry {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0 60px;
  background: #cd0811;
  border-radius: 0 5rem 5rem 0;
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
  /* ---- 全体に影を付けたいとき（上下左右） ----
  ラッパーに .is-shadow-all を付けるだけで切替 */
}
@media (max-width: 1366px) {
  .p-top-sdgs__entry {
    padding: 60px 0 40px;
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__entry {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__entry {
    padding: 30px 15px 30px 0;
    border-radius: 0 3.5rem 3.5rem 0;
  }
}
.p-top-sdgs__entry::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: calc((100vw - 100%) / 2);
  background: #cd0811;
  z-index: -1;
}
.p-top-sdgs__entry::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% + (100vw - 100%) / 2);
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
  /* ▼通常は上下だけ */
  box-shadow: 0 -20px 40px -28px rgba(0, 0, 0, 0.18), 0 20px 40px -28px rgba(0, 0, 0, 0.18);
  /* 下 */
}
.p-top-sdgs__entry.is-shadow-all::after {
  /* 幅はそのまま（本体+延長）でOK */
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.18);
}
.p-top-sdgs__entry-inner {
  position: relative;
  overflow: visible;
}
.p-top-sdgs__parag {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-top-sdgs__parag {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__parag {
    margin-bottom: 20px;
  }
}
.p-top-sdgs__row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-top-sdgs__row {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__row {
    gap: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-top-sdgs__row-item--half {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 1366px) {
  .p-top-sdgs__row-item--half {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__row-item--half {
    width: calc((100% - 25px) / 2);
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__row-item--half {
    width: 100%;
  }
}
.p-top-sdgs__row-item--third {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 1366px) {
  .p-top-sdgs__row-item--third {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__row-item--third {
    width: calc((100% - 50px) / 3);
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__row-item--third {
    width: 100%;
  }
}
.p-top-sdgs__row-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .p-top-sdgs__row-item img {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__row-item img {
    margin-bottom: 10px;
  }
}
.p-top-sdgs__outline {
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 50px;
  padding-bottom: 80px;
}
@media (max-width: 1366px) {
  .p-top-sdgs__outline {
    margin-bottom: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__outline {
    margin-bottom: 35px;
    padding-bottom: 55px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__outline {
    margin-bottom: 25px;
    padding-bottom: 40px;
  }
}
.p-top-sdgs__slider {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1366px) {
  .p-top-sdgs__slider {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__slider {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__slider {
    margin-bottom: 20px;
  }
}
.p-top-sdgs__slider-link {
  display: block;
}
.p-top-sdgs__slider-link:hover .p-top-sdgs__slider-img img, .p-top-sdgs__slider-link:focus-visible .p-top-sdgs__slider-img img {
  transform: scale(1.06);
}
.p-top-sdgs__slider-img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media (max-width: 480px) {
  .p-top-sdgs__slider-img {
    margin-bottom: 10px;
  }
}
.p-top-sdgs__slider-img img {
  background-size: contain;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.35s ease;
  transform: scale(1);
  will-change: transform;
}
.p-top-sdgs__slider-title {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1366px) {
  .p-top-sdgs__slider-title {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__slider-title {
    gap: 8px;
  }
}
.p-top-sdgs__slider-title span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: calc(100% - 45px);
}
@media (max-width: 1366px) {
  .p-top-sdgs__slider-title span {
    font-size: 16px;
    width: calc(100% - 32px);
  }
}
@media (max-width: 768px) {
  .p-top-sdgs__slider-title span {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__slider-title span {
    font-size: 14px;
    width: calc(100% - 22px);
  }
}
.p-top-sdgs__slider-title::before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #fff;
}
@media (max-width: 1366px) {
  .p-top-sdgs__slider-title::before {
    width: 20px;
    height: 2px;
  }
}
@media (max-width: 480px) {
  .p-top-sdgs__slider-title::before {
    width: 15px;
    height: 2px;
  }
}
.p-top-sdgs__slider-title br {
  display: none;
}

/* SDGsスライダー（このインスタンスだけ上書き） */
.p-sdgs__slider.swiper {
  overflow: visible;
  /* Swiper既定の hidden を解除 */
  margin-left: auto;
  /* 右端を親の右端に固定 */
  margin-right: 0;
  max-width: none;
  /* PC幅：左だけ画面端まで広げる */
  /* 1200未満は通常の全幅でOK */
}
@media (min-width: 1200px) {
  .p-sdgs__slider.swiper {
    /* = 100vw - ((100vw - 1200px)/2) と同値（右端は親の右端に一致） */
    width: calc((100vw + 1200px) / 2);
  }
}
@media (max-width: 1199.98px) {
  .p-sdgs__slider.swiper {
    width: 100%;
  }
}

.p-top-motorsports__parag {
  text-align: center;
  margin-bottom: 30px;
}
.p-top-motorsports__list {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .p-top-motorsports__list {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .p-top-motorsports__list {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__list {
    flex-direction: column;
    gap: 15px;
  }
}
.p-top-motorsports__item {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1366px) {
  .p-top-motorsports__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .p-top-motorsports__item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__item {
    width: 100%;
  }
}
.p-top-motorsports__link {
  display: block;
}
.p-top-motorsports__link:hover .p-top-motorsports__img img, .p-top-motorsports__link:focus-visible .p-top-motorsports__img img {
  transform: scale(1.06);
}
.p-top-motorsports__link:hover .p-top-motorsports__title, .p-top-motorsports__link:focus-visible .p-top-motorsports__title {
  color: #cd0811;
}
@media (max-width: 480px) {
  .p-top-motorsports__link {
    display: flex;
    gap: 15px;
    align-items: center;
  }
}
.p-top-motorsports__img {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media (max-width: 1366px) {
  .p-top-motorsports__img {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__img {
    width: calc(40% - 15px);
    margin-bottom: 0;
  }
}
.p-top-motorsports__img img {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
  transform: scale(1);
  will-change: transform;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.p-top-motorsports__title {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1366px) {
  .p-top-motorsports__title {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__title {
    gap: 0;
    width: 60%;
  }
}
.p-top-motorsports__title span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: calc(100% - 45px);
}
@media (max-width: 1366px) {
  .p-top-motorsports__title span {
    font-size: 16px;
    width: calc(100% - 32px);
  }
}
@media (max-width: 768px) {
  .p-top-motorsports__title span {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__title span {
    font-size: 14px;
    width: 100%;
  }
}
.p-top-motorsports__title::before {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #cd0811;
}
@media (max-width: 1366px) {
  .p-top-motorsports__title::before {
    width: 20px;
    height: 2px;
  }
}
@media (max-width: 480px) {
  .p-top-motorsports__title::before {
    display: none;
  }
}
.p-top-motorsports__title br {
  display: none;
}

.p-top-recruit__wrapper {
  border-radius: 5rem;
  padding: 0px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-recruit__wrapper {
    padding: 0px 0 80px;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__wrapper {
    border-radius: 3.5rem;
    padding: 0px 0 30px;
  }
}
.p-top-recruit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
}
@media (max-width: 1366px) {
  .p-top-recruit__inner {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__inner {
    flex-direction: column;
  }
}
.p-top-recruit__txt {
  text-align: center;
  max-width: 1200px;
  z-index: 5;
}
@media (max-width: 480px) {
  .p-top-recruit__txt {
    width: 87.778%;
    margin: auto;
  }
}
.p-top-recruit__heading {
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .p-top-recruit__heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__heading {
    margin-bottom: 20px;
  }
}
.p-top-recruit__parag {
  text-align: center;
  margin-bottom: 50px;
  line-height: 2.8;
  letter-spacing: 0.05em;
}
@media (max-width: 1366px) {
  .p-top-recruit__parag {
    margin-bottom: 40px;
    line-height: 2.5;
    word-break: keep-all;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__parag {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__parag {
    word-break: auto-phrase;
    margin-bottom: 20px;
    line-height: 2.3;
  }
}
.p-top-recruit__slider {
  width: 400px;
  height: 850px;
  overflow: visible !important;
}
@media (max-width: 1366px) {
  .p-top-recruit__slider {
    width: 250px;
    height: 700px;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__slider {
    width: 200px;
    height: 500px;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__slider {
    width: 300px;
    height: 80px;
  }
}
.p-top-recruit__slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.p-top-recruit__slider--first {
  transform: rotate(15deg);
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 2;
}
@media (max-width: 1366px) {
  .p-top-recruit__slider--first {
    left: -5%;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__slider--first {
    left: -7%;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__slider--first {
    left: 0;
    top: 30px;
    transform: rotate(-7deg);
  }
}
.p-top-recruit__slider--second {
  transform: rotate(15deg);
  position: absolute;
  right: 0%;
  top: 0%;
  z-index: 2;
}
@media (max-width: 1366px) {
  .p-top-recruit__slider--second {
    right: -5%;
  }
}
@media (max-width: 768px) {
  .p-top-recruit__slider--second {
    right: -7%;
  }
}
@media (max-width: 480px) {
  .p-top-recruit__slider--second {
    right: 0;
    transform: rotate(-7deg);
  }
}
.p-top-recruit__slide {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3/2;
}
.p-top-recruit__slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  will-change: transform;
  backface-visibility: hidden;
}

.p-top-shop__row {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1366px) {
  .p-top-shop__row {
    gap: 70px;
  }
}
@media (max-width: 768px) {
  .p-top-shop__row {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .p-top-shop__row {
    gap: 30px;
  }
}
.p-top-shop__img {
  flex: 0 0 auto;
  overflow: hidden;
  max-height: 650px;
  border-radius: 5rem 0 0 5rem;
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .p-top-shop__img {
    max-height: 460px;
    width: 100vw;
    margin-right: calc(100% - 100vw);
  }
}
@media (max-width: 480px) {
  .p-top-shop__img {
    border-radius: 3.5rem 0 0 3.5rem;
  }
}
.p-top-shop__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 650px;
  min-height: 600px;
}
@media (max-width: 1366px) {
  .p-top-shop__img img {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .p-top-shop__img img {
    min-height: 460px;
  }
}
@media (max-width: 480px) {
  .p-top-shop__img img {
    min-height: 200px;
  }
}
.p-top-shop__txt {
  /* テキスト側は“中央 1400px”の半分 - ギャップ/2 が目安 */
  width: 660px;
  margin-right: auto;
}
@media (max-width: 768px) {
  .p-top-shop__txt {
    width: 100%;
  }
}
.p-top-shop__parag {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .p-top-shop__parag {
    margin-bottom: 20px;
  }
}
.p-top-shop__cal {
  background-color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .p-top-shop__cal {
    margin-bottom: 30px;
  }
}
.p-top-shop div.cal_wrapper table.cal tr th p {
  border-radius: 50rem;
  padding: 0px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .p-top-shop div.cal_wrapper table.cal tr th p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1366px) {
  .p-top-shop div.cal_wrapper table.cal tr td div {
    padding: 15px;
  }
}
@media (max-width: 1366px) {
  .p-top-shop .Holiday::after {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1366px) {
  .p-top-shop .cal-mm {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .p-top-shop .cal-mm {
    font-size: 24px;
  }
}

.p-top-blog {
  margin-bottom: 0;
}
.p-top-blog__heading, .p-top-blog__item, .p-top-blog__time, .p-top-blog__cat {
  color: #fff !important;
}
.p-top-blog__heading .c-heading__top-jp {
  color: #fff !important;
}
.p-top-blog .c-btn--wht {
  border: 2px solid #35363b;
}

.p-top-info {
  margin-bottom: 0;
  padding-bottom: 150px;
}
@media (max-width: 1366px) {
  .p-top-info {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .p-top-info {
    padding-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .p-top-info {
    padding-bottom: 60px;
  }
}
.p-top-info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-top-info__list {
    gap: 15px;
    margin-bottom: 30px;
  }
}
.p-top-info__link {
  background-color: #f5f5f5;
  border-radius: 1.5rem;
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 0;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .p-top-info__link {
    padding: 15px;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .p-top-info__link {
    padding: 15px 35px 15px 10px;
    gap: 15px;
  }
}
.p-top-info__link::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/arrow_common--red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  bottom: 25px;
  right: 25px;
  transform: rotate(-45deg) translate(0, 0);
  transition: transform 0.3s ease;
  will-change: transform;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top-info__link::after {
    width: 25px;
    height: 25px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .p-top-info__link::after {
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 10px;
  }
}
.p-top-info__link:hover::after {
  transform: rotate(-45deg) translate(5px, -5px);
}
.p-top-info__link:hover .p-top-info__img img {
  transform: scale(1.05);
}
.p-top-info__link:hover .p-top-info__heading {
  color: #cd0811;
}
.p-top-info__img {
  max-width: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (max-width: 1366px) {
  .p-top-info__img {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .p-top-info__img {
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  .p-top-info__img {
    max-width: 120px;
  }
}
.p-top-info__img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-top-info__heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  transition: color 0.3s ease;
}
@media (max-width: 1366px) {
  .p-top-info__heading {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .p-top-info__heading {
    font-size: 14px;
  }
}
.p-top-info__date {
  display: flex;
  margin-bottom: 12px;
  gap: 15px;
}
@media (max-width: 768px) {
  .p-top-info__date {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .p-top-info__date {
    margin-bottom: 7px;
    flex-direction: column;
    gap: 1px;
  }
}
.p-top-info__time {
  color: #cd0811;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.025em;
}
@media (max-width: 1366px) {
  .p-top-info__time {
    font-weight: 700;
  }
}
@media (max-width: 480px) {
  .p-top-info__time {
    font-size: 12px;
  }
}
.p-top-info__cat {
  font-size: 14px;
  letter-spacing: 0.025em;
}
@media (max-width: 480px) {
  .p-top-info__cat {
    font-size: 12px;
  }
}

.p-top-delivery .c-heading__top {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .p-top-delivery .c-heading__top {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=index.css.map */