/* ========================================
   GLOBAL: VARIABLES & BASE STYLE
======================================== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}
  
img {
  max-width: 100%;
  height: auto;
  display: block;
}
  
.sp-only {
  display: none;
}
  
  
/* ========================================
  LAYOUT: SECTIONS (PADDING / BASICS)
======================================== */  
#style {
  padding: 92px 40px 0 0;
}
  
#service {
  padding: 0;
  position: relative;
}
  
  
#results {
  padding: 233px 0 0;
}
    
  
#voice {
  padding: 200px 0 120px;
  position: relative;
  overflow-x: visible;
}
    
  
#message {
  padding: 120px 0 120px;
}
  
/* ========================================
   SECTION: STYLE
======================================== */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 8px;
}

/* オレンジ丸付きラベル */
#style .section-label,
#service .section-label,
#results .section-label,
#voice .section-label {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--color-orange);
  margin-bottom: 16px;
  line-height: 1.78;
  letter-spacing: 0.05em;
}
  
#style .section-label::before,
#service .section-label::before,
#results .section-label::before,
#voice .section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 16px solid var(--color-orange);
  background-color: var(--color-orange);
  opacity: 0.1;
  transform: translate(-44px, -50%);
}
  
#style .section-label::after,
#service .section-label::after,
#results .section-label::after,
#voice .section-label::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(240, 79, 34);
  transform: translate(0, -50%);
}

.section-inner {
  max-width: 1376px;
  margin: 0 auto;
  box-sizing: border-box;
}
    
.section-title {
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(37, 37, 37);
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
  text-wrap: nowrap;
  margin-top: 35px;
  letter-spacing: 0.05em;
}
  
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: 40px;
  align-items: center;
}

#message .two-column {
  display: flex;
  justify-content: center;
  gap: 61px;
}
    
#style .style-columns {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 227px;
  align-items: flex-start;
}

#style .style-heading {
  max-width: 260px;
  padding-left: 0;
}
  
#style .style-text {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.81;
  letter-spacing: 0.64px;
  color: #252525;
}
  
#style .style-text p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 28px;
}
  
#style .style-text p:nth-of-type(2) {
  margin-bottom: 36px;
}

#style .style-text p:nth-of-type(3) {
  margin-bottom: 42px;
}
  
#style .style-text p:last-child {
  margin-bottom: 0;
}
  
  
/* ========================================
   SECTION: SERVICE
======================================== */
.our-s-style-fixed {
  position: relative;
  display: block;
  top: 30px;
  font-size: clamp(48px, 11.63vw, 160px);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  color: rgba(230, 236, 241, 0.741);
  line-height: 1.4;
  white-space: nowrap;
  max-width: 812px;
  margin-left: clamp(16px, calc(1.5vw + 10.4px), 31px);
}
  
#service .section-inner {
  padding-inline: 10px;
}
  
#service .section-title {
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
  
.service-visual {
  max-width: 480px;
  justify-self: end;
}
  
.service-visual img {
  width: 100%;
  height: auto;
  display: block;
}
  
.service-visual figure:hover::before {
  opacity: 1;
}
  
.service-visual figure:hover .service-caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
  
#service::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 1000px;
  background: rgb(228, 238, 247);  
  clip-path: polygon(
   0 164px,
   100% 0,
   100% calc(100% - 164px),
   0 100%
  );
  z-index: -1;
}

/* VIEW MORE ボタン */
.button-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;  
  min-width: 208px;
  height: 64px;
  padding: 0 80px 0 32px;
  border-radius: 999px;
  border: none;
  background-color: var(--color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
  
/* 白い円 */
.button-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  z-index: 1;
}
  
.button-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  z-index: 2;
  background-image: url("../img/TOP/viewmore_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 10px;
}
  
.button-primary:hover::after {
  transform: translateY(-50%) scale(1.45);
}
  
.button-primary:hover::before {
  transform: translateY(-50%);
}

#service .service-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: 40px;
  align-items: center;
}
  
#service .service-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
  
#service .service-text p {
  font-size: 24px;
  line-height: 1.8;
}
  
#service .service-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

.cards-3 {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}
  
.service-visual figure,
.results-visual figure {
  position: relative;
  max-width: 480px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
  
.service-visual figure::before,
.results-visual figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(58, 82, 100, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
  
.service-visual figure:hover::before,
.results-visual figure:hover::before {
  opacity: 1;
}
  
.service-caption,
.results-caption {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%) translateY(8px);
  width: 400px;
  height: 96px;
  padding: 0;
  color: #fff;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.48;
  letter-spacing: 2.4px;
  text-align: center;
  text-shadow: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
  
.service-visual figure:hover .service-caption,
.results-visual figure:hover .results-caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
  
/* ===== RESULTS 見出しラベル（SUCCESSFUL） ===== */ 
#results .section-title {
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
  
#results .section-title + p {
  margin: 0;
  line-height: 1.8;
}
  
#results .results-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); /* 左：画像 / 右：テキスト */
  column-gap: 40px;
}

#results .results-visual {
  grid-column: 1;
}
  
.results-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  
#results .results-right {
  grid-column: 2;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

#results .results-text {
  grid-column: 2;
  grid-row: 1;
  padding-left: 0;
}
  
#results .results-text p {
  font-size: 24px;
  line-height: 1.79;
  letter-spacing: 0.96px;
}

#results .results-button {
  margin-top: 70px;
  display: flex;
  justify-content: flex-end;
}
  
/* ===== VOICE 見出し ===== */
.voice-of-customer {
  position: absolute;
  top: 30px;
  right: 31px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  font-size: clamp(48px, 11.17vw, 160px);
  line-height: 0.79;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  white-space: normal;
  pointer-events: none;
  z-index: -1;
}
  
#voice .section-title {
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
  
#voice .voice-lead {
  margin: 0 0 26px;
  font-family: "NotoSansJP", sans-serif;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.79;
  letter-spacing: 0.96px;
  text-align: left;
  color: #141414;
}
  
#voice .voice-description {
  margin: 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(20, 20, 20);
  line-height: 1.8;
}
  
.voice-top-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 40px;
  z-index: 0;
}
    
/* ★ 斜めの薄い水色背景（最奥レイヤー） */
#voice {
  position: relative;
}
  
#voice::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;  
  height: 1020px;
  background: rgb(228, 238, 247); 
  clip-path: polygon(
   0 164px,
   100% 0,
   100% calc(100% - 164px),
   0 100%
  );  
  z-index: -1;
}

.voice-heading {
  grid-area: heading;
}
    
.voice-panel {
  grid-area: panel;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 63px;
  margin-top: 170px;
}
    
.voice-slider {
  grid-area: slider;
  overflow-x: hidden;
  overflow-y: visible;
}
  
.voice-card,
.message-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
  
.voice-swiper .swiper-slide {
  width: min(34.9vw, 480px);
  aspect-ratio: 480 / 339;
  min-width: 480px;
  min-height: 339px;
}

.voice-card:hover img {
  transform: scale(1.08);
}
  
/* オーバーレイ（全体） */
.voice-card__body {
  position: absolute;
  inset: 0;
  padding: 240px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.05) 0%,
  rgba(0, 0, 0, 0.75) 70%
  );
  font-size: 14px;
}
  
.voice-card__index {
  position: absolute;
  top: 16px;
  left: 32px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #ffffff;
}
  
.voice-card__index-current {
  font-size: clamp(16px, 1.744vw, 24px);
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
}
  
.voice-card__index-separator {
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
}
  
.voice-card__index-total {
  font-size: clamp(10px, 1.163vw, 16px);
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
}
  
.voice-card__text {
  position: relative;
  margin: 0;
  line-height: 1.4;
  font-size: clamp(15px, 0.7vw + 12.4px, 22px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding-left: 0;
  padding-top: 10px;
}

/* 青いアポストロフィ */
.voice-card__text::before {
  content: "“";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;

  font-size: 72px;
  line-height: 0.533;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--color-blue);
  transform: translate(-6px, -18px);
}

.voice-card img,
.message-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
  
#message .message-card {
  width: min(43vw, 592px);
  aspect-ratio: 592 / 366;
  border-radius: 12px;
}
  
/*うっすら黒グラデーション*/
.message-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to right,
  rgba(0, 0, 0, 0.55) 0%,
  rgba(0, 0, 0, 0.20) 40%,
  transparent 100%
  );
  pointer-events: none;
}
  
.message-card__body {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  pointer-events: none;
}
  
.message-card__body .section-label {
  margin-bottom: 4px;
  font-size: 18.5px;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  letter-spacing: 0.05em;
}
  
.message-card__body .section-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 27.5px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
}
  
.message-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
  
/* 右下の青い丸矢印 */
.message-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  background: none;
}

/* 青い丸だけを ::before で描画 */
.message-card__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 矢印だけを ::after で描画 */
.message-card__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/TOP/message-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 10px;
}

/* ロールオーバー時：青い丸だけ拡大させる */
.message-card:hover .message-card__arrow::before {
  transform: scale(1.48);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* PC幅だけ適用 */
@media (min-width: 751px) {

  #voice .section-inner {
    overflow: visible;
  }

  #voice .voice-slider {
    width: 100%;
    height: auto;
    overflow-x: visible;
  }

  #voice .voice-slider .swiper {
    width: min(calc(50vw + 593px), 100vw);
    max-width: 3000px;
  }

  .voice-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 40px;
  }
  
  .voice-panel {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 0;
  }

  .voice-panel {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 0;
    padding-right: 63px;
  }

  #voice .voice-slider {
    width: 100%;
    margin-top: 64px;
  }

  .voice-card {
    width: 100%;
    height: 100%;
  }

  #style .section-inner,
  #service .section-inner {
    padding-left: 104px;
    padding-right: 63px;
  }

  #results .section-inner,
  #message .section-inner {
    padding-left: 64px;
    padding-right: 64px;
  }

  #voice .section-inner {
    padding-left: 104px;
  }

  #service .service-text .section-label,
  #service .service-text .section-title,
  #service .service-text p {
    padding-left: 0;
  }
}
  
/* ========================================
   RESPONSIVE: ≤960px (TABLET)
======================================== */
@media (max-width: 960px) {

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  
  #style,
  #service,
  #results,
  #voice,
  #message {
    padding: 60px 20px;
  }
    
}
  
/* ========================================
   RESPONSIVE: 751–960px (TABLET ONLY)
======================================== */
@media (min-width: 751px) and (max-width: 960px) {
  #style,
  #service,
  #results,
  #message,
  #voice {
    padding-left: 0;
    padding-right: 0;
  }

  #style{
    padding-bottom: 0;
  }

  #style .style-columns {
    column-gap: 107px;
  }
    
  #results .section-inner {
    padding-left: 65px;
  }

  #message .section-inner{
    padding-left: 64px;
  }

  #message {
    padding-bottom: 121px;   
  }

  #voice {
    padding: 120px 0 100px 0;
  }

  .service-caption,
  .results-caption {
    position: absolute;
    left: 50%;
    bottom: clamp(40px, 8vw, 80px);
    width: clamp(260px, 55vw, 360px);
    height: auto;
    transform: translateX(-50%);
    padding: 0 8px;
    color: #fff;
    font-size: clamp(15px, 1.8vw, 18px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 1.48;
    letter-spacing: 2.4px;
    text-align: center;
    text-shadow: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .voice-of-customer {
    top: 30px;
    font-size: clamp(40px, 9vw, 130px);
  }    

}
 
/* ========================================
   RESPONSIVE: ≤750px (SP)
======================================== */
@media (max-width: 750px) {

  .sp-only {
    display: inline;
  }

  #service {
    padding-left: 0;
    padding-right: 0;
  }

  #service .section-inner {
    padding-inline: 0;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
  }
  
  #message .two-column {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #message .message-card {
    width: 100%;
    max-width: 592px;
  }
  
  #style {
    padding: 61px 17px 18px 8px;
  }
  #service{
    padding: 0;
  }
  #results{
    padding: 146.6px 20px 0 8px;
  }
  #voice{
    padding: 140px 0 23px 8px;
  }
  #message {
    padding: 110px 19px 100px;
  }

  /*margin*/
  #service .service-visual {
    margin-left: 0;
  }
  
  #results .results-visual {
    margin-left: 12px;
  }
  
  #voice .voice-slider {
    margin-left: 12px;
  }

  #service .section-inner {
    padding: 0 20px;
  }

  #style .section-label,
  #service .section-label,
  #results .section-label,
  #voice .section-label {
    position: relative;
    font-size: 15px;
  }

  #style .section-title,
  #service .section-title,
  #results .section-title {
    font-size: 20px;
  }

  .section-title {
    margin-top: 0;
  }

  /* 薄いオレンジの大きい円：SPでは 23×23px にする */
  #style .section-label::before,
  #service .section-label::before,
  #results .section-label::before,
  #voice .section-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -28px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 3px solid var(--color-orange);
    background-color: var(--color-orange);
    opacity: 0.1;
    transform: translateY(-50%);
  }

  #style .section-label::after,
  #service .section-label::after,
  #results .section-label::after,
  #voice .section-label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -19px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(240, 79, 34);
    transform: translateY(-50%);
  }

  #style .style-columns {
    display: block;
  }
  
  #style .style-heading {
    padding-left: 40px;
    margin-bottom: 24px;
  }

  #style .style-text {
    margin-left: 40px;
  }

  #style .style-text p {
    font-size: 15px;
    line-height: 1.93;
    margin: 0 0 26px;
  }

  #style .style-text p:nth-of-type(2) {
    margin-bottom: 20px;
  }

  #style .style-text p:nth-of-type(3) {
    margin-bottom: 16px;
  }

  #style .style-text p:last-child {
    margin-bottom: 0;
  }
      
  .our-s-style-fixed {
    top: 0;
    font-size: clamp(40px, 17vw, 88px);  
    margin-left: 8px;
    margin-bottom: 80px;
    max-width: 100%;
    transform: scaleY(1);
    transform-origin: left center;
  }
  
  /* SERVICE：常にロールオーバー状態にする */
  .service-visual figure::before {
    opacity: 1;
  }

  #service .service-columns {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "text"
    "visual"
    "button";
    row-gap: 22px;
  }
  
  #service .service-left {
    display: contents;
  }

  #service .service-text {
    grid-area: text;
    padding-left: 28px;
  }

  #service .service-text p {
    font-size: 16px;
    line-height: 1.91;
    letter-spacing: 0.64px;
  }

  #service .service-visual {
    grid-area: visual;
  }
  
  #service .service-buttons {
    grid-area: button;
    margin-top: 0;
    justify-content: flex-end;
  }
  
  .service-caption {
    width: 300px;
    height: 70px;
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 1.6px;
    bottom: 75px;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  

  /* ▼ SERVICE の斜め背景を10度相当に変更 */
  #service::before {
    top: 55px;
    left: 0;
    right: 0;
    height: 950px;
    clip-path: polygon(
      0 18vw,
      100% 0,
      100% calc(100% - 18vw),
      0 100%
      );
  }

  .button-primary{
    min-width: 161px;
    width: 161px;
    height: 49px;
    border-radius: 24.7px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 80px;
  }

  .button-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translateY(-50%);
  }
  
  .button-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 29px;
    height: 29px;
    transform: translateY(-50%);
    background-image: url("../img/TOP/viewmore_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 7px;
  }
  
  .service-visual figure,
  .results-visual figure {
    border-radius: 8px;
  }

  #results .results-columns {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "text"
    "visual"
    "button";
    row-gap: 28px;
  }
  
  #results .results-text {
    grid-area: text;
    padding-left: 40px;
  }
  
  #results .results-text p {
    font-size: 16px;
    line-height: 1.81;
    letter-spacing: 0.64px;
  }

  #results .results-visual {
    grid-area: visual;
  }
  
  #results .results-button {
    grid-area: button;
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  #results .results-right {
    display: contents;
    padding-left: 0;
    grid-column: auto;
  }
    
  .results-visual figure::before {
    opacity: 1;
  }
  
  .results-caption {
    width: 300px;
    height: 97px;
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 1.6px;
    bottom: 75px;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* ▼ VOICE の斜め背景も同じく10度相当に変更 */
  #voice::before {
    top: 36px;
    left: 0;
    right: 0;
    height: 1000px;
    clip-path: polygon(
      0 18vw,
      100% 0,
      100% calc(100% - 18vw),
      0 100%
      );
    }

  .voice-of-customer {
    display: block;
    top: 60px;
    right: 9px;
    font-size: clamp(32px, 17vw, 64px);
    line-height: 0.79;
  }
  
  #voice .section-title {
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    margin-bottom: 0;
  }
    
  #voice .voice-lead {
    margin: 32px auto 16px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.81;
    letter-spacing: 0.64px;
    text-align: left;
    color: #252525;
  }
  
  #voice .voice-description {
    margin: 0 auto 40px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.6px;
    text-align: left;
    color: #252525;
  }

  #voice .section-inner {
    display: flex;
    flex-direction: column;
  }

  .voice-top-row {
    display: contents;
    margin-left: 0;
  }

  /* 1番目：見出しブロック */
  .voice-heading {
    order: 1;
    padding-left: 40px;
  }

  /* 2番目：スライダー */
  .voice-slider {
    order: 2;
    margin-left: 12px;
    padding-left: 0;
  }

  /* 3番目：ボタン（スライダーの32px下、右寄せ） */
  .voice-panel {
    order: 3;
    align-self: flex-end;
    margin-top: 32px;
    padding-right: 19px;
    background: none;
    min-height: auto;
    text-align: left;
  }

  .voice-panel__button {
    position: relative;
  }
  
  .voice-swiper .swiper-slide,
  .voice-card {
    width: 320px;
    height: 198px;
    min-width: 320px;
    min-height: 198px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .voice-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .voice-card__body {
    inset: 0;
    /*padding: 146px 24px 24px 20px;*/
    padding: 146px 20px 16px 16px;
  }

  .voice-card__index {
    top: 5px;
    left: 20px;
  }

  .voice-card__index-current {
    font-weight: 500;
    line-height: 1.75;
  }
  
  .voice-card__index-separator {
    font-weight: 500;
    line-height: 1.75;
  }
  
  .voice-card__index-total {
    font-weight: 500;
    line-height: 1.75;
  }

  .voice-card__text {
    font-size: 15px;
    padding-top: 0;
  }

  .voice-card__text::before {
    font-size: 48.5px;
  }

  .message-card__body .section-label {
    margin-bottom: 0;
    font-size: 14px;
    color: #ffffff;
  }
    
  .message-card__body .section-title {
    margin-bottom: 0;
    font-size: 20px;
    color: #ffffff;
  }

  .message-card__arrow::after {
    background-size: 12px 8px;
  }
}