@charset "UTF-8";

/* ==========
   Measure Customer Voice - Common Styles
   FLOCSS + BEM
   Integrated from style.css + module.css
   ========== */

/* ==========
   Variables
   ========== */
:root {
  /* Colors - Primary */
  --color-primary: #021da3;
  --color-primary-50: rgba(2, 29, 163, 0.5);

  /* Colors - Conversion */
  --color-contact: #277a80;
  --color-contact-hover: #28696E;
  --color-download: #ea0437;
  --color-download-hover: #c31734;

  /* Colors - Text */
  --color-text-base: #000;
  --color-text-sub: #222;
  --color-text-dark: #333;
  --color-text-muted: #999;
  --color-text-inverse: #fff;

  /* Colors - Background */
  --color-bg-base: #fff;
  --color-bg-light: #fafafa;
  --color-bg-gray: #efefef;
  --color-bg-dark: #333;

  /* Colors - Border */
  --color-border-light: #eaeaea;

  /* Layout - Max Width */
  --width-container: 1250px;
  --width-container-wide: 1336px;
  --width-container-min: 960px;
  --width-content: 1220px;
  --width-contact: 1010px;
  --width-article: 900px;

  /* Font */
  --font-family-base: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;

  /* Transition */
  --transition-base: 0.3s ease;
  --transition-slow: 0.8s ease;

  /* Shadow */
  --shadow-card: 0 3px 6px rgb(0 0 0 / 10%);

  /* Base font-size (10px = 1rem) */
  font-size: 62.5%;
}

/* ==========
   Foundation
   ========== */
html {
  font-family: var(--font-family-base);
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: var(--width-container-wide);
}

a:link,
a:visited {
  color: var(--color-text-base);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, ul, li, figure {
  margin: 0;
  padding: 0;
}

main {
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

em {
  font-weight: bold;
}

/* ==========
   Utility
   ========== */
.u-pc-only {
  display: block !important;
}

.u-sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  body {
    min-width: 100% !important;
    font-size: 1.4rem;
  }

  main {
    min-width: 100%;
  }

  .u-pc-only {
    display: none !important;
  }

  .u-sp-only {
    display: block !important;
  }

  figure {
    text-align: center;
  }
}

/* ==========
   Component
   ========== */

/* c-btn-contact (お問い合わせボタン共通コンポーネント) */
.c-btn-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2rem 1.6rem 4.8rem;
  background-color: var(--color-contact);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-inverse) !important;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.c-btn-contact::before {
  position: absolute;
  content: "";
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/img/ss/products/3d-measure/customers-voice/icon_contact.svg);
}

.c-btn-contact:hover {
  opacity: 1;
  text-decoration: none;
  background-color: var(--color-contact-hover);
}

/* c-cv (ダウンロードボタンコンポーネント) */
.c-article__section .c-cv {
  margin: 6.4rem auto;
  padding: 0;
}

.c-cv__btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: url(/img/ss/products/3d-measure/customers-voice/icon_download.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(0, -50%);
}

/* c-cv__download (カタログ画像付きダウンロードボタン) */
.c-cv__btn .c-cv__download {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-text-inverse);
  gap: 0.8rem;
  width: fit-content;
  margin: 0 auto;
  background: var(--color-download);
  text-decoration: none;
  transition: background-color var(--transition-base);
  box-sizing: border-box;
}

.c-cv__btn .c-cv__download:hover {
  background: var(--color-download-hover);
  text-decoration: none;
  opacity: 1;
}

.c-cv__btn .c-cv__download-text {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.8rem 9rem 1.8rem 4.8rem;
  line-height: 1.4;
  color: var(--color-text-inverse);
}

.c-cv__btn .c-cv__download-thumb {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6.2rem;
  height: 8.8rem;
  transform: translateY(-50%);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.c-cv__btn .c-cv__download-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* c-cv__bottom-wrap (ラッパー) */
.c-cv__bottom-wrap {
  background: var(--color-bg-gray);
  padding: 4rem 0;
}

.c-cv__bottom-wrap .c-cv {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-cv__btn .c-cv__download {
    height: auto;
  }

  .c-cv__btn .c-cv__download-text {
    font-size: 1.4rem;
  }

  .c-cv__btn .c-cv__download-thumb {
    right: 2rem;
    width: 5rem;
    height: 7rem;
  }
}

/* c-article (記事見出し・本文コンポーネント) */
.c-article__section .c-article__heading {
  margin: 0 0 4rem;
  padding-left: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-text-dark);
  border-left: 4px solid var(--color-primary);
}

.c-article__section .c-article__subheading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 4rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-primary);
}

.c-article__subheading::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* c-article__media (画像+テキストコンポーネント) */
.c-article__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.c-article__media--left,
.c-article__media--right {
  flex-direction: row;
  align-items: flex-start;
  gap: 2.4rem;
  text-align: left;
}

.c-article__media figure {
  flex-shrink: 0;
}

.c-article__media--left figure img,
.c-article__media--right figure img {
  max-width: 362px;
  aspect-ratio: 181/112;
}

.c-article__media-body {
  flex: 1;
  min-width: 0;
}

.c-article__media--right {
  flex-direction: row-reverse;
}

.c-article__caption {
  margin: 0.8rem 0 0;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
}

@media (max-width: 768px) {
  .c-article__subheading::before {
    width: 8px;
  }

  .c-article__media figure {
    width: 100%;
  }

  .c-article__media--left,
  .c-article__media--right {
    flex-direction: column;
    gap: 1.6rem;
  }

  .c-article__media--right {
    flex-direction: column;
  }

  .c-article__media--right figure {
    order: 2;
  }

  .c-article__media--left figure img,
  .c-article__media--right figure img {
    max-width: 100%;
  }

  .c-article__media--right .c-article__media-body {
    order: 1;
  }
}

/* c-article__media--2col (2カラム画像モディファイア)
   使用方法: <div class="c-article__media c-article__media--2col">
   ベースの .c-article__media と併用し、2カラムレイアウトを実現 */
.c-article__media.c-article__media--2col {
  flex-direction: row;
  justify-content: space-between;
  gap: 2.4rem;
}

.c-article__media--2col figure {
  flex: 1;
  min-width: 0;
}

.c-article__media--2col figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  /* SPではベースの column レイアウトに戻る（上書き不要） */
  .c-article__media.c-article__media--2col{
    flex-direction: column;
    justify-content: flex-start;
  }
  .c-article__media--2col figure {
    width: 100%;
  }
}

/* c-article__section, c-article__text (記事セクション・テキストコンポーネント) */
.c-article__section + .c-article__section {
  margin: 6.4rem 0 0;
}

.c-article__section > * + * {
  margin: 4rem 0 0;
}

.c-article__section-item > * + * {
  margin: 1.6rem 0 0;
}

.c-article__section:last-of-type {
  margin-bottom: 0;
}

.c-article__sub-section {
  margin-bottom: 4rem;
}

.c-article__sub-section > * {
  margin: 4rem 0 0;
}

.c-article__sub-section:last-of-type {
  margin-bottom: 0;
}

.c-article__text {
  font-size: 1.6rem;
  line-height: 1.4;
}

.c-article__text + .c-article__text {
  margin: 1.6rem 0 0;
}

.c-article__text-strong {
  font-weight: bold;
  color: var(--color-primary);
}

/* ==========
   Layout
   ========== */

/* l-header (共通) */
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 1.8rem 1.5rem 0;
}

.l-header__title {
  display: flex;
  align-items: center;
}

.l-header__logo img {
  width: 11.7rem;
}

.l-header__site-title {
  margin-left: 2rem;
  font-size: 1.3rem;
  line-height: 1.5;
}

.l-header__site-title a {
  color: var(--color-text-base);
}

.l-header__site-title a:hover {
  opacity: 0.5;
}

.l-header__list {
  display: flex;
}

.l-header__list li + li {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .l-header__inner {
    display: block;
    min-width: auto;
    padding: 1.2rem 1.6rem 0;
  }

  .l-header__title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }

  .l-header__site-title {
    margin-left: 0;
    font-size: 1.2rem;
  }

  .l-header__list {
    justify-content: center;
    margin-top: 1.6rem;
  }

  .l-header__list li + li {
    margin-left: 0;
  }
}

/* l-footer */
#footer.l-footer {
  background: var(--color-bg-dark);
}

.l-footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: var(--width-container);
  margin: 0 auto;
  padding: 1.5rem 0;
  column-gap: 2rem;
}

.l-footer__links {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  order: 2;
  position: relative;
}

.l-footer__links::before {
  content: "";
  position: absolute;
  left: -1rem;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: var(--color-text-inverse);
}

.l-footer__links li {
  line-height: 1.4;
}

.l-footer__links li + li {
  position: relative;
}

.l-footer__links li + li::before {
  content: "";
  position: absolute;
  left: -1rem;
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-text-inverse);
}

.l-footer__links a {
  font-size: 1.2rem;
  color: var(--color-text-inverse);
}

.l-footer__copy {
  font-size: 1.2rem;
  color: var(--color-text-inverse);
  order: 1;
}

@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: auto;
    padding: 1.6rem 0 5.6rem;
  }

  .l-footer__links {
    justify-content: center;
    order: unset;
  }

  .l-footer__links::before {
    display: none;
  }

  .l-footer__copy {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    order: unset;
  }
}

/* l-content */

.l-content__inner {
  margin: 0 auto;
}

/* l-main__inner (メインコンテンツラッパー) */
.l-main__inner {
  width: 100%;
  margin: 0 auto;
  padding: 4.8rem 0 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .l-main__inner{
    padding: 1.6rem 0 0;
  }
}

/* l-footer-sub (追従フッター) */
.l-footer-sub {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-dark);
  z-index: 1000;
  margin: 0 0 -0.1rem;
}

.l-footer-sub__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.2rem;
  max-width: var(--width-container);
  margin: 0 auto;
  padding: 1.2rem 0;
}

.l-footer-sub__tel {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--color-text-inverse);
}

.l-footer-sub__tel-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.l-footer-sub__tel-title {
  font-size: 1.4rem;
  line-height: 1;
}

.l-footer-sub__tel-time {
  font-size: 1.2rem;
  line-height: 1;
}

.l-footer-sub__tel-number {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text-inverse);
  text-decoration: none;
}

/* l-footer-sub__btn は c-btn-contact を継承 */

@media (max-width: 768px) {
  .l-footer-sub{
    position: static;
  }
  .l-footer-sub__inner {
    flex-direction: column-reverse;
    gap: 1.2rem;
    padding: 1.2rem 0 0;
  }

  .l-footer-sub__tel {
    flex-direction: column-reverse;
    gap: 0.8rem;
    text-align: center;
  }

  .l-footer-sub__tel-text {
    align-items: center;
  }

  .l-footer-sub__tel-title {
    font-size: 1.2rem;
  }

  .l-footer-sub__tel-time {
    font-size: 1rem;
  }

  .l-footer-sub__tel-number {
    font-size: 2.4rem;
    color: var(--color-text-inverse) !important;
  }

}

/* ==========
   Project - Index Page
   ========== */

/* p-head */
.p-head {
  max-width: var(--width-content);
  margin: 0 auto;
}

.p-head__content {
  position: relative;
}

.p-head__content::before,
.p-head__content::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
}

.p-head__content::before {
  margin-left: -50%;
}

.p-head__inner {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}

.p-head__title {
  width: 46rem;
}

.p-head__title img {
  width: 100%;
}

.p-head__desc {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .p-head {
    padding: 0;
  }

  .p-head__content {
    display: block;
    width: 92%;
    margin: 0 auto;
    padding: 0;
  }

  .p-head__content::before,
  .p-head__content::after {
    display: none;
  }

  .p-head__inner {
    display: block;
    padding-right: 0;
    border: none;
  }

  .p-head__title {
    position: relative;
    width: 90%;
    max-width: 32rem;
    padding-bottom: 1.5rem;
  }

  .p-head__title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 1px;
    background: var(--color-primary);
  }

  .p-head__desc {
    margin: 1.5rem 0 0;
  }
}

/* p-keyvisual */
.p-keyvisual {
  position: relative;
  max-width: var(--width-content);
  padding: 3.2rem 0 0;
  margin: 0 auto;
}

.p-keyvisual__inner {
  position: relative;
}

.p-keyvisual__content {
  position: relative;
  margin-bottom: 3.2rem;
  padding-bottom: 5rem;
  background: var(--color-bg-light);
}

.p-keyvisual__img {
  width: 62%;
}

.p-keyvisual__img img {
  width: 100%;
}

.p-keyvisual__about {
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: absolute;
  top: -4rem;
  right: 0;
  width: 43%;
  padding: 3.2rem 5.5rem 3.2rem 6rem;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-sizing: border-box;
}

.p-keyvisual__about-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.p-keyvisual__about-name {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}

.p-keyvisual__btn {
  display: block;
  width: fit-content;
  margin-top: 3.2rem;
  padding: 1.9rem 3rem 1.7rem;
  background: var(--color-bg-base);
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
}

.p-keyvisual__btn:link,
.p-keyvisual__btn:visited {
  color: var(--color-primary);
}

.p-keyvisual__control {
  position: absolute;
  bottom: 7.4rem;
  left: calc(65% + 11rem);
  display: flex;
}

.p-keyvisual__pause-btn {
  width: 2.7rem;
  height: 2.8rem;
  padding: 0;
  border: none;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.p-keyvisual__pause-btn[data-control="play"] {
  background-image: url(/img/ss/products/3d-measure/customers-voice/icon_slider_purse.svg);
}

.p-keyvisual__pause-btn[data-control="pause"] {
  background-image: url(/img/ss/products/3d-measure/customers-voice/icon_slider_play.svg);
}

.p-keyvisual__pause-btn:hover {
  opacity: 0.7;
}

/* slick override */
.p-keyvisual .slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  width: 5.3rem;
  height: 5.3rem;
  margin-top: -2.6rem;
  font-size: 0;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-keyvisual .slick-list {
  padding-top: 4rem;
}

.p-keyvisual .slick-prev {
  left: 5.8rem;
  background-image: url(/img/ss/products/3d-measure/customers-voice/carousel_prev_btn.svg);
}

.p-keyvisual .slick-next {
  right: 5.8rem;
  background-image: url(/img/ss/products/3d-measure/customers-voice/carousel_next_btn.svg);
}

.p-keyvisual .slick-dots {
  display: flex;
  position: absolute;
  bottom: 8.2rem;
  left: 65%;
}

.p-keyvisual .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--color-text-muted);
  cursor: pointer;
}

.p-keyvisual .slick-dots li.slick-active {
  background: var(--color-primary);
}

.p-keyvisual .slick-dots li + li {
  margin-left: 1rem;
}

.p-keyvisual .slick-dots button {
  text-indent: -9999px;
}

@media (max-width: 768px) {
  .p-keyvisual {
    min-width: auto;
  }

  .p-keyvisual__content {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .p-keyvisual__img {
    width: 100%;
  }

  .p-keyvisual__about {
    position: static;
    width: 80%;
    margin-left: auto;
    padding: 2rem;
    transform: translateY(-4.8rem);
    box-sizing: content-box;
  }

  .p-keyvisual__about-title {
    font-size: 1.6rem;
  }

  .p-keyvisual__about-name {
    margin-top: 2rem;
    font-size: 1.3rem;
  }

  .p-keyvisual .slick-list {
    padding-top: 0;
  }

  .p-keyvisual .slick-arrow {
    border: none;
    width: 3rem;
    height: 3rem;
    top: 22%;
  }

  .p-keyvisual .slick-prev {
    left: 4%;
  }

  .p-keyvisual .slick-next {
    right: 4%;
  }

  .p-keyvisual .slick-dots {
    justify-content: center;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-keyvisual__control {
    justify-content: center;
    bottom: 1.2rem;
    left: calc(50% + 7rem);
    transform: translateX(-50%);
  }
}

/* p-archive */
.p-archive {
  background: var(--color-bg-light);
}

.p-archive__inner {
  position: relative;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 3.5rem 0 8rem;
}

.p-archive__title {
  margin-bottom: 2.4rem;
  width: 17.4rem;
}

.p-archive__title img {
  width: 100%;
}

.p-archive__subtitle {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

.p-archive__anchor {
  display: flex;
  margin-bottom: 4rem;
  gap: 2.4rem;
}

.p-archive__anchor li {
  border: solid 1px var(--color-primary);
  font-size: 1.6rem;
  position: relative;
}

.p-archive__anchor li a {
  display: flex;
  color: var(--color-primary);
  line-height: 1.4;
  padding: 1rem 5rem 1rem 2rem;
}

.p-archive__anchor li a::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(135deg);
  right: 2rem;
  top: 30%;
  position: absolute;
}

.p-archive__heading {
  margin: 0 0 3.2rem;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  border-top: 2px solid var(--color-text-base);
  border-bottom: 2px solid var(--color-text-base);
}

.p-archive__section {
  margin-bottom: 4rem;
}

.p-archive__section:last-of-type {
  margin-bottom: 0;
}

.p-archive__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.p-archive__list:last-child {
  margin-bottom: 0;
}

.p-archive__item {
  width: 28.7rem;
  box-shadow: var(--shadow-card);
}

.p-archive__item-img {
  overflow: hidden;
}

.p-archive__item-img img {
  width: 100%;
  transition: all var(--transition-slow);
}

.p-archive__item a:hover .p-archive__item-img img {
  transform: scale(1.1, 1.1);
}

.p-archive__item-body {
  padding: 1.2rem 2rem 2.2rem;
}

.p-archive__item-name {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.p-archive__item-desc {
  font-size: 1.6rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .p-archive {
    margin-top: 6.5rem;
  }

  .p-archive__inner {
    padding: 3.5rem 1.5rem 6rem;
  }

  .p-archive__title {
    width: 14.5rem;
    margin: 0 0 4rem;
  }

  .p-archive__anchor {
    flex-wrap: wrap;
  }

  .p-archive__anchor li {
    width: 100%;
  }

  .p-archive__anchor li a {
    width: 100%;
    display: block;
  }

  .p-archive__anchor li a::after {
    right: 2.3rem;
    top: 40%;
  }

  .p-archive__list {
    display: block;
  }

  .p-archive__item {
    width: 100%;
    margin-right: 0;
  }

  .p-archive__item + .p-archive__item {
    margin-top: 3rem;
  }

  .p-archive__item-body {
    padding: 3rem 9% 4.4rem;
  }

  .p-archive__item-name {
    margin-top: 1.5rem;
  }
}

/* p-contact */
.p-contact {
  padding: 6.4rem 1.5rem;
  background: var(--color-bg-gray);
}

.p-contact__inner {
  max-width: var(--width-contact);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: var(--color-bg-base);
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
  text-align: center;
}

.p-contact__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.p-contact__message {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.p-contact__form {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-contact__btn {
  display: block;
  position: relative;
  width: fit-content;
  padding: 1.5rem 6.2rem 1.3rem;
  background: var(--color-contact);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-text-inverse) !important;
  box-sizing: border-box;
}

.p-contact__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
  border-right: 2px solid var(--color-text-inverse);
  border-bottom: 2px solid var(--color-text-inverse);
  transform: rotate(-45deg);
}

.p-contact__tel {
  position: relative;
  margin-left: 4rem;
  padding-left: 3.5rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.p-contact__tel::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 3rem;
  margin-top: -1.5rem;
  background: var(--color-bg-gray);
}

.p-contact__tel-icon {
  display: inline-block;
  width: 3rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.p-contact__tel-icon img {
  width: 100%;
}

@media (max-width: 768px) {
  .p-contact {
    padding: 4rem 0;
  }

  .p-contact__inner {
    width: 92%;
    padding: 3rem 4% 4.5rem;
  }

  .p-contact__title {
    font-size: 2.4rem;
  }

  .p-contact__form {
    display: block;
    margin-top: 4rem;
  }

  .p-contact__btn {
    margin: 0 auto;
  }

  .p-contact__tel {
    margin: 2.5rem 0 0;
    padding-left: 0;
    font-size: 2.8rem;
  }

  .p-contact__tel::before {
    display: none;
  }

  .p-contact__tel-icon {
    width: 2.5rem;
  }
}

/* ==========
   Project - Detail Page
   ========== */

/* p-detail */
.p-detail {
  margin: 0;
  position: relative;
}

/* p-detail-kv */
.p-detail-kv {
  position: relative;
  padding: 4rem 0;
  background: var(--color-bg-gray);
}

.p-detail-kv__inner {
  max-width: var(--width-container-wide);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.p-detail-kv__title-wrap {
  max-width: var(--width-container-wide);
  margin: 0 auto;
}

.p-detail-kv__title-inner {
  display: inline-block;
  position: relative;
}

.p-detail-kv__title {
  position: relative;
  min-width: 580px;
  display: flex;
  justify-content: left;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 2.5rem 10rem;
  font-size: 3.6rem;
  line-height: 1.5;
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.p-detail-kv__title-sub {
  margin: 0.5rem 2rem 0 0;
  font-size: 1.2rem;
}

.p-detail-kv__title-main {
  font-size: 3.6rem;
  font-weight: bold;
}

.p-detail-kv__img {
  max-width: 810px;
}

.p-detail-kv__img img {
  width: 100%;
}

.p-detail-kv__catch {
  position: absolute;
  top: 50%;
  right: 0;
  width: 59.1rem;
  margin: 0 auto;
  transform: translate(0, -50%);
}

.p-detail-kv__catch-inner {
  display: flex;
  position: relative;
}

.p-detail-kv__catch-content {
  padding: 3.2rem 4rem 3.2rem 6.4rem;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-sizing: border-box;
}

.p-detail-kv__catch-label {
  font-size: 1.4rem;
  line-height: 1.3;
}

.p-detail-kv__catch-name {
  margin: 1.2rem 0 0;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.3;
}

.p-detail-kv__catch-text {
  margin: 2.4rem 0 0;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .p-detail-kv__inner {
    width: 100%;
  }

  .p-detail-kv__title-wrap {
    max-width: 100%;
  }

  .p-detail-kv__title {
    min-width: auto;
    display: block;
    padding: 0;
    font-size: 2.2rem;
    background: none;
  }

  .p-detail-kv__title-sub {
    display: block;
    margin: 0 1.5rem 0.5rem;
    font-size: 1rem;
    color: var(--color-primary);
  }

  .p-detail-kv__title-main {
    display: block;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    font-size: 2.2rem;
    background: var(--color-primary);
    color: var(--color-text-inverse);
  }

  .p-detail-kv__img {
    width: 100%;
  }

  .p-detail-kv__catch {
    position: relative;
    top: 0;
    left: 0;
    width: 97%;
    max-width: 100%;
    margin: -3.5rem 0 0 auto;
    transform: translate(0, 0);
    box-sizing: border-box;
  }

  .p-detail-kv__catch-content {
    width: 100%;
    padding: 2rem 2rem 2.4rem 2rem;
  }

  .p-detail-kv__catch-label {
    font-size: 1.2rem;
  }

  .p-detail-kv__catch-name {
    margin: 0.8rem 0 0;
    font-size: 2.2rem;
  }

  .p-detail-kv__catch-text {
    margin: 1.6rem 0 0;
    font-size: 1.4rem;
  }
}

/* p-article */
.p-article {
  max-width: var(--width-article);
  margin: 0 auto;
  padding: 8rem 0;
}

/* p-article__section, p-article__text 等は c-article__* に移行 */

/* company */
.p-article__company {
  display: flex;
  justify-content: space-between;
  margin: 6.4rem 0 0;
  padding: 4rem;
  border: 2px solid var(--color-border-light);
  box-sizing: border-box;
  gap: 3.2rem;
}

.p-article__company-text {
  font-size: 1.4rem;
}
.p-article__company-img figure img {
  max-width: 362px;
  aspect-ratio: 181/112;
}

/* list */
.p-article__caution-list {
  margin: 2.4rem 0 0;
  font-size: 1.4rem;
  list-style: none;
}

.p-article__caution-list li {
  position: relative;
  padding: 0 0 0 1.5em;
}

.p-article__caution-list li::before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .p-article {
    max-width: 100%;
    margin: 0;
    padding: 8rem 1.5rem;
  }

  /* p-article__subheading, p-article__media SP styles は c-article__* に移行 */

  .p-article__company {
    flex-direction: column;
  }

  .p-article__caution-list {
    margin: 3.2rem 1.5rem 0;
  }
  .p-article__company-img figure img {
    max-width: 100%;
  }
}

/* p-related (customer slider) */
.p-related {
  padding: 6.4rem 0 5.4rem;
}

.p-related__inner {
  max-width: var(--width-container-wide);
  margin: 0 auto;
}

.p-related__title {
  margin: 0 0 3rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: var(--color-text-base);
}

.p-related__slider {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* スライダー矢印 */
.p-related__arrow {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.p-related__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform-origin: center center;
}

.p-related__arrow--prev::before {
  transform: translate(-15%, -50%) rotate(-135deg);
}

.p-related__arrow--next::before {
  transform: translate(-85%, -50%) rotate(45deg);
}

.p-related__arrow:hover {
  opacity: 0.6;
}

/* カードリスト */
.p-related__list {
  display: flex;
  gap: 2.4rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* slick適用時 */
.p-related__list.slick-initialized {
  overflow: visible;
}

.p-related__list .slick-list {
  overflow: hidden;
  padding: 1rem 2rem;
}

.p-related__list .slick-track {
  display: flex;
  gap: 2.4rem;
}

.p-related__list .slick-slide {
  height: auto;
}

/* カードアイテム */
.p-related__item {
  flex-shrink: 0;
  width: 28.9rem;
  background: var(--color-bg-base);
  box-shadow: var(--shadow-card);
}

.p-related__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--color-text-base);
}

.p-related__item-thumb {
  flex-shrink: 0;
  aspect-ratio: 289 / 184;
  overflow: hidden;
}

.p-related__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.p-related__item:hover .p-related__item-thumb img {
  transform: scale(1.1);
}

.p-related__item-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.2rem 2rem 3.2rem;
  box-sizing: border-box;
}

.p-related__item-text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--color-text-base);
}

.p-related__item-name {
  margin-top: auto;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-primary);
}

/* 4つ未満の場合はスライダー矢印非表示 */
.p-related__slider:not(.is-slider-active) .p-related__arrow {
  visibility: hidden;
}

@media (max-width: 768px) {
  .p-related {
    padding: 4rem 0;
  }

  .p-related__title {
    font-size: 2.2rem;
  }

  .p-related__slider {
    gap: 1rem;
    margin-top: 2.4rem;
    padding: 0;
  }

  .p-related__arrow {
    width: 2rem;
    height: 2rem;
  }

  .p-related__arrow::before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .p-related__list {
    gap: 1.6rem;
  }

  .p-related__list .slick-track {
    gap: 0;
    padding: 1rem 0;
  }
  .p-related__list .slick-list{
    padding: 0;
  }
  .p-related__item {
    width: 100%;
    max-width: 100%;
    margin: 0 0.5rem;
  }

  .p-related__item-info {
    gap: 1rem;
    padding: 1rem 1.5rem 2rem;
  }

  .p-related__item-text {
    font-size: 1.4rem;
  }

  .p-related__item-name {
    font-size: 1.2rem;
  }
}

/* ==========
   p-result-box (課題・成果モジュール)
   ========== */
.p-result-box {
  max-width: var(--width-article);
  margin: 0 auto 6rem;
  padding: 3.2rem;
  background: var(--color-bg-base);
  border: 2px solid var(--color-primary-50);
  box-sizing: border-box;
}

.p-result-box__row {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

.p-result-box__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  box-sizing: border-box;
  align-self: center;
}

.p-result-box__label--issue {
  background: var(--color-bg-gray);
  color: var(--color-text-sub);
}

.p-result-box__label--result {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.p-result-box__text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--color-text-base);
}

.p-result-box__text--bold {
  font-weight: bold;
}

.p-result-box__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.6rem 0;
}

.p-result-box__arrow-icon {
  width: 34px;
  height: 15px;
  background: var(--color-primary-50);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media (max-width: 768px) {
  .p-result-box {
    margin: 0 0 4rem;
    padding: 3.2rem;
  }

  .p-result-box__row {
    flex-direction: column;
  }

  .p-result-box__label {
    width: 100%;
    min-width: auto;
    padding: 0.8rem 1.2rem;
    font-size: 1.6rem;
  }

  .p-result-box__text {
    font-size: 1.4rem;
  }
}

.p-result-box__content {
  flex: 1;
  min-width: 0;
}

.p-result-box__title {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-text-base);
}

.p-result-box__desc {
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--color-text-base);
}

.p-result-box__desc p {
  margin: 0 0 0.5em;
}

.p-result-box__desc p:last-child {
  margin-bottom: 0;
}

.p-result-box__image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-basis: 234px;
}

.p-result-box__image img {
  width: 100%;
  object-fit: cover;
}

.p-result-box__image-caption {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
  color: var(--color-text-base);
}

@media (max-width: 768px) {

  .p-result-box__content {
    order: 2;
  }

  .p-result-box__image {
    order: 3;
    width: 100%;
  }

  .p-result-box__image img {
    height: auto;
  }
}

/* p-sub-footer */
.p-sub-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 10rem 0 0;
  background: var(--color-bg-dark);
  z-index: 10000;
}

.p-sub-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--width-container);
  min-width: var(--width-container-min);
  margin: 0 auto;
  padding: 1.2rem 1.5rem 1rem;
}

.p-sub-footer__title {
  display: flex;
  align-items: center;
  color: var(--color-text-inverse);
}

.p-sub-footer__info {
  margin: 0 2rem 0 0;
}

.p-sub-footer__info-title {
  font-size: 1.4rem;
}

.p-sub-footer__info-time {
  font-size: 1.2rem;
}

.p-sub-footer__number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-text-inverse);
}

.p-sub-footer__list {
  display: flex;
}

.p-sub-footer__list li + li {
  margin-left: 1rem;
}

.p-sub-footer__list li a {
  display: block;
  width: 195px;
  padding: 1.4rem 1rem 1.1rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-text-inverse);
  text-align: center;
}

.p-sub-footer__btn--download a {
  background: var(--color-primary);
}

.p-sub-footer__list li span {
  padding-left: 3rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0;
}

.p-sub-footer__btn--download span {
  background-image: url(/img/ss/products/3d-measure/customers-voice/icon_download.png);
}

.p-sub-footer__btn--contact span {
  background-image: url(/img/ss/products/3d-measure/customers-voice/icon_contact.png);
}

@media (max-width: 768px) {
  .p-sub-footer__inner {
    display: block;
    min-width: auto;
    padding: 0;
  }

  .p-sub-footer__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--color-bg-dark);
  }

  .p-sub-footer__info {
    width: 40%;
    margin: 0 2rem 0 0;
  }

  .p-sub-footer__number a {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-text-inverse);
  }

  .p-sub-footer__list li {
    width: 50%;
  }

  .p-sub-footer__list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1.4rem 0.8rem 1.1rem;
  }

  .p-sub-footer__list li + li {
    margin-left: 0;
  }
}

