@charset "UTF-8";

/* =========================================================
   top_v06.css
   獏サイト TOPページ
   front-page_v04.php 対応
========================================================= */

/* ---------------------------------------------------------
   01. Common
--------------------------------------------------------- */
.p-top {
  overflow: clip;
  color: var(--color-black, #1c1c1c);
  background-color: var(--color-white, #fff);
}

/* =========================================================
   SEO H1
   FVの表示コピーとあわせて画面上にも表示
========================================================= */
.p-top-fv__seo-title {
  margin: 12px 0 0;
  color: var(--color-white, #fff);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .24);
}

.p-top img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-top .c-section-label {
  margin: 0 0 12px;
  color: var(--color-main, #006464);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 14px;
  line-height: 1.5;
}

.p-top .c-section-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.4;
}

/* PHP側が l-container-wide になっているため互換対応 */
.l-container-wide {
  width: min(calc(100% - (var(--layout-gutter-pc, 72px) * 2)), var(--layout-width-wide, 1296px));
  margin-inline: auto;
}

/* ---------------------------------------------------------
   02. FV
--------------------------------------------------------- */
.p-top-fv {
  position: relative;
  min-height: min(764px, calc(100svh - var(--header-height-pc, 164px)));
  overflow: hidden;
  background-color: #d8d8d5;
}

.p-top-fv__picture,
.p-top-fv__image,
.p-top-fv__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-top-fv__image {
  object-fit: cover;
  object-position: center top;
}

.p-top-fv__overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 26, 27, 0.12) 0%, rgba(15, 26, 27, 0) 48%);
  pointer-events: none;
}

.p-top-fv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: min(764px, calc(100svh - var(--header-height-pc, 164px)));
  padding-bottom: 44px;
}

.p-top-fv__title {
  margin: 0;
  color: var(--color-white, #fff);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .18);
}


@media (min-width: 1440px) {
  .p-top-fv,
  .p-top-fv__inner {
    min-height: 820px;
  }

  .p-top-fv__image {
    object-position: center top;
  }
}

@media (min-width: 1800px) {
  .p-top-fv,
  .p-top-fv__inner {
    min-height: 880px;
  }
}

/* ---------------------------------------------------------
   03. Mission
--------------------------------------------------------- */
.p-top-mission {
  background-color: var(--color-beige, #f0efeb);
}

.p-top-mission__grid {
  display: grid;
  grid-template-columns: 422px minmax(0, 640px);
  gap: 16px;
  align-items: center;
}

.p-top-mission__content {
  padding: 24px 0;
}

.p-top-mission__lead {
  margin: 38px 0 0;
  color: var(--color-main, #006464);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: clamp(28px, 2.3vw, 40px);
  font-weight: 600;
  line-height: 1.55;
}

.p-top-mission__text {
  margin-top: 28px;
  font-size: 14px;
  line-height: 2.15;
}

.p-top-mission__text p {
  margin: 0;
}

.p-top-mission__visual {
  margin: 0;
}

.p-top-mission__visual img {
  width: 100%;
}

/* ---------------------------------------------------------
   04. Story
--------------------------------------------------------- */
.p-top-story {
  background-color: var(--color-white, #fff);
}

.p-top-story__header {
  margin-bottom: 96px;
}

.p-top-story__item {
  display: grid;
  grid-template-columns: minmax(0, 712px) minmax(0, 422px);
  gap: 86px;
  align-items: center;
}

.p-top-story__item + .p-top-story__item {
  margin-top: 136px;
}

.p-top-story__item--reverse {
  grid-template-columns: minmax(0, 422px) minmax(0, 712px);
}

.p-top-story__item--reverse .p-top-story__media {
  order: 2;
}

.p-top-story__item--reverse .p-top-story__content {
  order: 1;
}

.p-top-story__media {
  margin: 0;
}

.p-top-story__media img {
  width: 100%;
  aspect-ratio: 712 / 544;
  object-fit: cover;
}

.p-top-story__number {
  margin: 0 0 16px;
  color: var(--color-main, #006464);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 40px;
  line-height: 1;
}

.p-top-story__title {
  margin: 0;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.6;
}

.p-top-story__text {
  margin-top: 48px;
  font-size: 14px;
  line-height: 2.05;
}

.p-top-story__text p {
  margin: 0;
}

.p-top-story__text p + p {
  margin-top: 24px;
}

/* ---------------------------------------------------------
   05. Message
--------------------------------------------------------- */
.p-top-message {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  color: var(--color-white, #fff);
  background-color: #2d3333;
}

.p-top-message__picture,
.p-top-message__image,
.p-top-message__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-top-message__image {
  object-fit: cover;
  object-position: center;
}

.p-top-message__overlay {
  z-index: 1;
  background: rgba(21, 25, 25, .38);
}

.p-top-message__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 675px;
}

.p-top-message__content {
  width: 297px;
  margin-right: 44px;
}

.p-top-message__title {
  margin: 0;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.45;
}

.p-top-message__text {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 2;
}

/* ---------------------------------------------------------
   06. Voice
--------------------------------------------------------- */
.p-top-voice {
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
  background-color: var(--color-beige, #f0efeb);
}

.p-top-voice__header {
  position: relative;
  z-index: 3;
  margin-bottom: 48px;
}

.p-top-voice__description {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.p-top-voice__background {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.p-top-voice__background img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.p-top-voice__slider-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-top: 40px;
}

.p-top-voice__swipe {
  width: min(calc(100% - 40px), 1078px);
  margin: 0 auto 18px;
  color: var(--color-gray, #78766e);
  font-size: 12px;
}

.p-top-voice__slider {
  overflow: visible;
}

.p-top-voice__slider .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.p-top-voice__slide {
  flex: 0 0 421px;
  width: 421px;
}

.p-top-voice__customer,
.p-top-voice__reply {
  background-color: var(--color-white, #fff);
  border: 1px solid var(--color-beige-02, #e1dfd9);
}

.p-top-voice__customer {
  min-height: 400px;
  padding: 40px 40px 36px;
}

.p-top-voice__reply {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  min-height: 336px;
  margin: -1px 0 0 36px;
  padding: 34px 36px 72px;
}

.p-top-voice__card-title {
  margin: 0 0 24px;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 16px;
  font-weight: 500;
}

.p-top-voice__customer-text,
.p-top-voice__reply-text {
  font-size: 14px;
  line-height: 2;
}

.p-top-voice__customer-text p,
.p-top-voice__reply-text p {
  margin: 0;
}

.p-top-voice__customer-text p + p,
.p-top-voice__reply-text p + p {
  margin-top: 16px;
}

.p-top-voice__meta {
  margin: 24px 0 0;
  text-align: right;
  font-size: 13px;
}

.p-top-voice__reply-label {
  margin: 0 0 24px;
  color: var(--color-main, #006464);
  font-size: 13px;
}

.p-top-voice__reply-text {
  color: var(--color-main, #006464);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.p-top-voice .swiper-scrollbar {
  width: min(calc(100% - 40px), 1078px);
  height: 2px;
  margin: 36px auto 0;
  background-color: rgba(255, 255, 255, .72);
}

.p-top-voice .swiper-scrollbar-drag {
  height: 100%;
  background-color: var(--color-gray, #78766e);
}

.p-top-voice__hand {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 2;
  width: min(472px, 35vw);
  margin: 0;
  transform: translateX(54%);
  pointer-events: none;
}

.p-top-voice__hand img {
  width: 100%;
}

/* ---------------------------------------------------------
   07. Purchase
--------------------------------------------------------- */
.p-top-purchase {
  background-color: var(--color-white, #fff);
}

.p-top-purchase__header {
  margin-bottom: 64px;
}

.p-top-purchase__description {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.p-top-purchase__grid {
  display: grid;
  grid-template-columns: 390px repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.p-top-purchase__card {
  display: flex;
  min-height: 198px;
  padding: 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-black, #1c1c1c);
  text-decoration: none;
  background-color: var(--color-white, #fff);
  border: 1px solid var(--color-black, #1c1c1c);
  outline: none;
  transition: color .3s ease, border-color .3s ease, background-color .3s ease;
}

/* ---------------------------------------------------------
   08-2. News
--------------------------------------------------------- */
.p-top-news {
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: var(--color-beige, #f0efeb);
}

.p-top-news__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.p-top-news__archive {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--color-black, #1c1c1c);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

.p-top-news__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #aaa79f;
  list-style: none;
}

.p-top-news__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid #aaa79f;
}

.p-top-news__item time {
  color: var(--color-gray, #78766e);
  font-family: var(--font-gothic, "Zen Kaku Gothic New", sans-serif);
  font-size: 13px;
}

.p-top-news__item a {
  color: var(--color-black, #1c1c1c);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
  transition: color .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-top-news__archive:hover,
  .p-top-news__item a:hover {
    color: var(--color-main, #006464);
  }
}

@media (max-width: 767px) {
  .p-top-news {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .p-top-news__heading {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .p-top-news__archive {
    gap: 10px;
    margin-top: 7px;
    font-size: 13px;
  }

  .p-top-news__item {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 16px 0;
  }

  .p-top-news__item time {
    font-size: 12px;
  }

  .p-top-news__item a {
    font-size: 15px;
    line-height: 1.65;
  }
}

.p-top-purchase__card--large {
  grid-row: 1 / 3;
  min-height: 442px;
}

.p-top-purchase__icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-beige, #f0efeb);
}

.p-top-purchase__icon--large {
  width: 156px;
  height: 156px;
}

.p-top-purchase__icon img {
  width: 44px;
  max-height: 44px;
}

.p-top-purchase__icon--large img {
  width: 88px;
  max-height: 88px;
}

.p-top-purchase__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 154px;
  margin-top: 24px;
  padding-bottom: 10px;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
  border-bottom: 1px solid currentColor;
}

.p-top-purchase__card--large .p-top-purchase__name {
  margin-top: 30px;
  font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .p-top-purchase__card:hover {
    color: var(--color-white, #fff);
    background-color: var(--color-main, #006464);
    border-color: var(--color-main, #006464);
  }
}

/* ---------------------------------------------------------
   08. Campaign
--------------------------------------------------------- */
.p-top-campaign {
  background-color: var(--color-beige, #f0efeb);
}

.p-top-campaign__header {
  margin-bottom: 40px;
}

.p-top-campaign__slider {
  overflow: hidden;
}

.p-top-campaign__slider .swiper-wrapper {
  display: flex;
  gap: 8px;
}

.p-top-campaign__item {
  flex: 0 0 calc((100% - 24px) / 4);
  min-width: 0;
}

.p-top-campaign__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-top-campaign__image,
.p-top-campaign__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 192 / 257;
  overflow: hidden;
  background-color: #d4d4d4;
}

.p-top-campaign__image {
  margin: 0;
}

.p-top-campaign__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.p-top-campaign__title {
  margin: 14px 0 0;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .p-top-campaign__link:hover .p-top-campaign__image img {
    transform: scale(1.04);
  }
}

/* ---------------------------------------------------------
   09. Shop
--------------------------------------------------------- */
.p-top-shop {
  background-color: var(--color-white, #fff);
}

.p-top-shop__header {
  margin-bottom: 40px;
}

.p-top-shop__accordion {
  display: grid;
  gap: 8px;
}

.p-top-shop__item {
  border: 1px solid var(--color-black, #1c1c1c);
  background-color: var(--color-white, #fff);
}

.p-top-shop__item-title {
  margin: 0;
}

.p-top-shop__trigger {
  display: flex;
  width: 100%;
  min-height: 118px;
  padding: 24px 40px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: inherit;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 24px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.p-top-shop__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.p-top-shop__toggle::before,
.p-top-shop__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.p-top-shop__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-top-shop__item.is-open .p-top-shop__toggle::after,
.p-top-shop__trigger[aria-expanded="true"] .p-top-shop__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-top-shop__panel[hidden] {
  display: none;
}

.p-top-shop__panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 52px;
  min-height: 350px;
  padding: 0 40px 40px;
  align-items: center;
}

.p-top-shop__info {
  margin: 0;
}

.p-top-shop__detail-link-wrap {
  margin: 0 0 20px;
}

.p-top-shop__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-main, #006464);
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 18px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.p-top-shop__detail-link:hover {
  text-decoration: none;
}

.p-top-shop__info-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.p-top-shop__info-row + .p-top-shop__info-row {
  margin-top: 10px;
}

.p-top-shop__info dt,
.p-top-shop__info dd {
  margin: 0;
}

.p-top-shop__info dt {
  font-weight: 500;
}

.p-top-shop__map {
  min-height: 280px;
}

.p-top-shop__map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* ---------------------------------------------------------
   10. CEO
--------------------------------------------------------- */
.p-top-ceo {
  background-color: var(--color-beige-02, #e1dfd9);
}

.p-top-ceo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 531px;
  min-height: 755px;
  align-items: end;
}

.p-top-ceo__content {
  align-self: center;
  width: 320px;
  margin-inline: auto;
}

.p-top-ceo__lead {
  margin: 24px 0 40px;
  font-size: 16px;
  line-height: 2;
}

.p-top-ceo__picture {
  align-self: end;
}

.p-top-ceo__image {
  width: 100%;
}

/* ---------------------------------------------------------
   11. Contact heading
--------------------------------------------------------- */
.p-top-contact-heading {
  padding: 72px 0 40px;
  background-color: var(--color-white, #fff);
  text-align: center;
}

.p-top-contact-heading__title {
  margin: 0;
  font-family: var(--font-mincho, "Shippori Mincho", serif);
  font-size: 32px;
  font-weight: 500;
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .l-container-wide {
    width: calc(100% - (var(--layout-gutter-tablet, 32px) * 2));
  }

  .p-top-fv,
  .p-top-fv__inner {
    min-height: 620px;
  }

  .p-top-mission__grid {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 32px;
  }

  .p-top-story__item,
  .p-top-story__item--reverse {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
    gap: 48px;
  }

  .p-top-story__item--reverse .p-top-story__media {
    order: 2;
  }

  .p-top-story__text {
    margin-top: 28px;
  }

  .p-top-purchase__grid {
    grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
  }

  .p-top-shop__panel-inner {
    grid-template-columns: minmax(0, 1fr) 42%;
    gap: 32px;
  }

  .p-top-ceo__grid {
    grid-template-columns: minmax(0, 1fr) 44%;
    min-height: 620px;
  }
}

/* ---------------------------------------------------------
   Smartphone
--------------------------------------------------------- */
@media (max-width: 767px) {
  .l-container-wide {
    width: calc(100% - (var(--layout-gutter-sp, 20px) * 2));
  }

  .p-top .c-section-label {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .p-top .c-section-title {
    font-size: 28px;
  }

  /* FV */
  .p-top-fv,
  .p-top-fv__inner {
    min-height: calc(100svh - var(--header-height-mobile, 80px));
  }

  .p-top-fv__image {
    object-position: center top;
  }

  .p-top-fv__overlay {
    background: linear-gradient(0deg, rgba(17, 24, 24, .5) 0%, rgba(17, 24, 24, 0) 56%);
  }

  .p-top-fv__inner {
    padding-bottom: 30px;
  }

  .p-top-fv__title {
    font-size: 30px;
    line-height: 1.5;
  }

  .p-top-fv__seo-title {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Mission */
  .p-top-mission__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-top-mission__content {
    padding: 0;
  }

  .p-top-mission__lead {
    margin-top: 28px;
    font-size: 28px;
  }

  .p-top-mission__text {
    margin-top: 24px;
    line-height: 2;
  }

  .p-top-mission__text br {
    display: none;
  }

  /* Story */
  .p-top-story__header {
    margin-bottom: 48px;
  }

  .p-top-story__item,
  .p-top-story__item--reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .p-top-story__item + .p-top-story__item {
    margin-top: 80px;
  }

  .p-top-story__item--reverse .p-top-story__media,
  .p-top-story__item--reverse .p-top-story__content {
    order: initial;
  }

  .p-top-story__media img {
    aspect-ratio: 4 / 3;
  }

  .p-top-story__number {
    margin-bottom: 12px;
    font-size: 32px;
  }

  .p-top-story__title {
    font-size: 24px;
    line-height: 1.65;
  }

  .p-top-story__text {
    margin-top: 28px;
    line-height: 2;
  }

  /* Message */
  .p-top-message,
  .p-top-message__inner {
    min-height: 620px;
  }

  .p-top-message__image {
    object-position: center;
  }

  .p-top-message__overlay {
    background: linear-gradient(0deg, rgba(19, 24, 24, .58) 0%, rgba(19, 24, 24, .05) 68%);
  }

  .p-top-message__inner {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 42px;
  }

  .p-top-message__content {
    width: min(100%, 310px);
    margin: 0;
  }

  .p-top-message__title {
    font-size: 32px;
  }

  .p-top-message__text {
    margin-top: 20px;
    line-height: 1.9;
  }

  .p-top-message__text br {
    display: none;
  }

  /* Voice */
  .p-top-voice {
    padding-bottom: 96px;
  }

  .p-top-voice__header {
    margin-bottom: 32px;
  }

  .p-top-voice__background {
    width: calc(100% - 40px);
  }

  .p-top-voice__background img {
    min-height: 220px;
    object-fit: cover;
  }

  .p-top-voice__slider-wrap {
    padding-top: 28px;
  }

  .p-top-voice__slider .swiper-wrapper {
    gap: 12px;
    padding-left: 20px;
  }

  .p-top-voice__slide {
    flex-basis: min(84vw, 340px);
    width: min(84vw, 340px);
  }

  .p-top-voice__customer {
    min-height: auto;
    padding: 28px 24px;
  }

  .p-top-voice__reply {
    width: calc(100% - 20px);
    min-height: auto;
    margin-left: 20px;
    padding: 26px 24px 64px;
  }

  .p-top-voice__hand {
    right: -24px;
    width: 230px;
    transform: none;
  }

  /* Purchase */
  .p-top-purchase__header {
    margin-bottom: 40px;
  }

  .p-top-purchase__description {
    margin-top: 20px;
    font-size: 15px;
  }

  .p-top-purchase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 10px;
  }

  .p-top-purchase__card,
  .p-top-purchase__card--large {
    grid-row: auto;
    min-height: 210px;
    padding: 14px;
    outline-width: 10px;
    outline-offset: -10px;
  }

  .p-top-purchase__card--large {
    grid-column: 1 / -1;
    min-height: 270px;
  }

  .p-top-purchase__icon,
  .p-top-purchase__icon--large {
    width: 72px;
    height: 72px;
  }

  .p-top-purchase__icon img,
  .p-top-purchase__icon--large img {
    width: 40px;
    max-height: 40px;
  }

  .p-top-purchase__card--large .p-top-purchase__icon {
    width: 104px;
    height: 104px;
  }

  .p-top-purchase__card--large .p-top-purchase__icon img {
    width: 58px;
    max-height: 58px;
  }

  .p-top-purchase__name,
  .p-top-purchase__card--large .p-top-purchase__name {
    min-width: 0;
    margin-top: 18px;
    font-size: 15px;
  }

/* Campaign */
.p-top-campaign {
  overflow: hidden;
}

.p-top-campaign__header {
  margin-bottom: 28px;
}

.p-top-campaign__slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.p-top-campaign__slider .swiper-wrapper {
  width: 100%;
  min-width: 0;
  gap: 10px;
}

.p-top-campaign__item {
  flex: 0 0 calc((100% - 10px) / 2);
  width: calc((100% - 10px) / 2);
  min-width: 0;
}

  /* Shop */
  .p-top-shop__header {
    margin-bottom: 28px;
  }

  .p-top-shop__trigger {
    min-height: 80px;
    padding: 20px;
    font-size: 20px;
  }

  .p-top-shop__panel-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 0 20px 20px;
  }

  .p-top-shop__info-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    font-size: 14px;
  }

  .p-top-shop__detail-link-wrap {
    margin-bottom: 16px;
  }

  .p-top-shop__detail-link {
    font-size: 16px;
  }

  .p-top-shop__map,
  .p-top-shop__map iframe {
    min-height: 220px;
    height: 220px;
  }

  /* CEO */
  .p-top-ceo {
    padding-top: 56px;
  }

  .p-top-ceo__grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .p-top-ceo__content {
    width: 100%;
    margin: 0 0 40px;
  }

  .p-top-ceo__lead {
    margin: 20px 0 32px;
    font-size: 15px;
  }

  .p-top-ceo__picture {
    width: 100%;
  }

  .p-top-ceo__image {
    width: 100%;
  }

  /* Contact */
  .p-top-contact-heading {
    padding: 56px 0 32px;
  }

  .p-top-contact-heading__title {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------
   Reduced motion
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .p-top-purchase__card,
  .p-top-campaign__image img,
  .p-top-shop__toggle::after {
    transition: none;
  }
}


/* =========================================================
   Voice card connection fix v04
========================================================= */

/*
 * お客様カードと査定士返信を隙間なく接続。
 * 36pxの段差だけを残し、背景色の帯が見える状態を防ぐ。
 */
.p-top-voice__customer {
  width: calc(100% - 36px);
  margin: 0;
}

.p-top-voice__customer::after {
  right: -36px;
  bottom: -36px;
  width: 36px;
  height: 36px;
}

.p-top-voice__reply {
  width: calc(100% - 36px);
  margin: 0 0 0 36px;
}

.p-top-voice__reply::before {
  top: 0;
  left: -36px;
  width: 36px;
  height: 36px;
}

/* 査定士返信下部の獏ロゴ */
.p-top-voice__reply-logo {
  position: absolute;
  right: 50%;
  bottom: 22px;
  display: block;
  width: 81px;
  height: auto;
  transform: translateX(50%);
}

/* 旧CSS疑似ロゴを無効化 */
.p-top-voice__reply-mark {
  display: none;
}

@media (max-width: 767px) {
  .p-top-voice__customer {
    width: calc(100% - 20px);
  }

  .p-top-voice__customer::after {
    right: -20px;
    bottom: -20px;
    width: 20px;
    height: 20px;
  }

  .p-top-voice__reply {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .p-top-voice__reply::before {
    top: 0;
    left: -20px;
    width: 20px;
    height: 20px;
  }

  .p-top-voice__reply-logo {
    bottom: 18px;
    width: 68px;
  }
}


/* =========================================================
   Voice position adjustment v05
   スワイプバー上部配置・手の画像表示調整
========================================================= */

/* スワイプ案内と進捗バー */
.p-top-voice__guide {
  position: relative;
  z-index: 7;
  width: min(calc(100% - 40px), 1078px);
  margin: 0 auto 42px;
}

.p-top-voice__swipe {
  margin: 0 0 12px;
}

.p-top-voice__progress {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: 100% !important;
  height: 2px !important;
  margin: 0 !important;
}

/* カード群 */
.p-top-voice__slider-wrap {
  position: relative;
  z-index: 4;
}

.p-top-voice__slider {
  position: relative;
  z-index: 4;
}

/* 手の画像をカードより前面へ */
.p-top-voice__hand {
  position: absolute;
  left: 50%;
  bottom: -20px;
  z-index: 8;
  width: min(740px, 55vw);
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

/* 手の画像用の下部余白 */
.p-top-voice {
  padding-bottom: 280px;
}

/* 返信カード下部のロゴ・手との干渉を防ぐ */
.p-top-voice__reply {
  padding-bottom: 96px;
}

@media (max-width: 767px) {
  .p-top-voice__guide {
    width: calc(100% - 40px);
    margin-bottom: 28px;
  }

  .p-top-voice {
    padding-bottom: 110px;
  }

  .p-top-voice__hand {
    bottom: -20px;
    width: 360px;
    max-width: 94vw;
  }

  .p-top-voice__reply {
    padding-bottom: 78px;
  }
}


/* =========================================================
   Voice overlap adjustment v06
   レビューカードと査定士コメントを安定して重ねる
========================================================= */

/*
 * 絶対配置は使わず、通常フロー＋負のmarginで重ねる。
 * 文章量が変わってもカード全体の高さ計算が崩れにくい。
 */
.p-top-voice__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-top-voice__customer {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  margin: 0;
}

.p-top-voice__reply {
  position: relative;
  z-index: 2;
  width: calc(100% - 36px);
  margin: -36px 0 0 36px;
}

/*
 * 以前の段差形成用疑似要素は、
 * 負のmarginで重ねる方式では不要なので無効化。
 */
.p-top-voice__customer::after,
.p-top-voice__reply::before {
  display: none;
}

/* 重なり部分でも影が不自然に二重にならないよう調整 */
.p-top-voice__customer {
  box-shadow: 4px 5px 0 rgba(28, 28, 28, .07);
}

.p-top-voice__reply {
  box-shadow: 4px 5px 0 rgba(28, 28, 28, .09);
}

/* ロゴと本文の干渉防止 */
.p-top-voice__reply {
  padding-bottom: 96px;
}

@media (max-width: 767px) {
  .p-top-voice__customer {
    width: calc(100% - 20px);
  }

  .p-top-voice__reply {
    width: calc(100% - 20px);
    margin: -20px 0 0 20px;
    padding-bottom: 78px;
  }
}
