@charset "utf-8";
:root {
  /* 375:12-1290:16 */
  --breadcrumb-font-size: clamp(0.75rem, 0.6475rem + 0.4372vw, 1rem);

  /* 375:21-1320:30 */
  --head-h2: clamp(1.3125rem, 1.0893rem + 0.9524vw, 1.875rem);
  /* 375:18-1320:26 */
  --head-h3: clamp(1.125rem, 0.9266rem + 0.8466vw, 1.625rem);

  /* セクション */
  --section-padding: 5px 0 45px;
  --products-list-title-section-padding: 25px 0;
}
@media (max-width: 767px) {
  :root {
    --products-list-title-section-padding: 15px 0;
  }
}

html {
  scroll-padding: 150px !important;
}
main {
  padding-top: 90px;
  /* padding-bottom: 20px; */
}
/* パン屑セクション */
.breadcrumb-section {
  background-color: var(--section-gray-bg);
  padding: 30px 0 15px;
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--original-padding-width);
}
.breadcrumb-inner ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.breadcrumb-inner ul li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb-inner ul li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1;
}

/* 共通 */
.contents-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--original-padding-width);
}
h2 {
  font-size: var(--head-h2);
  font-weight: 400;
  margin-bottom: 100px;
  line-height: 1.4;
  color: #000;
  text-align: center;
  letter-spacing: 0.1em;
}
h2 span {
  font-size: 70%;
  font-weight: 300;
  color: #666;
  display: block;
  margin-top: 0.4em;
  letter-spacing: 0em;
}

/* タイトルセクション */
.title-section {
  --section-padding: 15px 0 45px;
  padding: var(--section-padding);
  padding-bottom: 30px !important;
  background-color: var(--section-title-bg-color);
}
.title-section h2 {
  margin-bottom: 0 !important;
}
#products h3,
#option h3,
#contact h3,
#works h3 {
  font-size: var(--head-h3);
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  text-align: center;
}
.page-navigation-section {
  padding: var(--section-padding);
  padding-bottom: 30px !important;
  background-color: var(--section-title-bg-color);
}
.page-navigation-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--original-padding-width);
  padding-bottom: 15px;
}
.page-navigation-inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
.page-navigation-inner ul li a {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  font-size: clamp(0.8125rem, 0.5798rem + 0.9929vw, 1.25rem);
  color: #666;
  font-weight: 300;
}

.products-list-title-section,
.option-list-wrap-section,
.case-wrap-section {
  padding: var(--products-list-title-section-padding);
  background-color: #fff;
}

/* プロダクト詳細セクション */
.products-detail-section,
.option-list-section,
.case-detail-section {
  width: 100%;
  background-color: #f4f3ed;
  padding: 40px 0;
}
.products-detail-section .products-detaile-inner,
.case-detail-section .case-detail-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.products-detaile-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  background-color: #fff;
  /* padding: 100px 80px; */
  padding: clamp(0.625rem, -26.916rem + 57.377vw, 5rem);
  display: grid;
  grid-template-columns: minmax(calc(363 / 860 * 100%), 363px) minmax(calc(182 / 860 * 100%), 182px) minmax(calc(282 / 860 * 100%), 282px);
  grid-template-rows: repeat(4, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-areas:
    "div5 div1 div1"
    "div5 div2 div3"
    "div5 div2 div4"
    "div5 div2 div6";
  margin-bottom: 45px;
}
.div1 {
  grid-area: div1;
}
.div2 {
  grid-area: div2;
  border: 1px solid #cdcdcd;
}
.div3 {
  grid-area: div3;
}
.div4 {
  grid-area: div4;
}
.div5 {
  position: relative;
  grid-area: div5;
  background: #e3e3e3;
  background: linear-gradient(339deg, rgba(227, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(227, 227, 227, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.div5 img {
  width: auto;
  height: auto;
  max-width: 60%;
  max-height: 500px;
  object-fit: contain;
  margin-inline: auto;
}
.div5 .landscape {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.div5 ul {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.div5 ul li {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-inline: auto;
}
.div5 ul li img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}
.div6 {
  grid-area: div6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div6 .case-item {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.div6 .case-item li {
  width: calc(100% / 3);
}
.div6 .case-item li figure {
  width: 100%;
  overflow: hidden;
}
.div6 .case-item li figure img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-inline: auto;
  box-sizing: border-box;
  transition: scale 0.3s ease-in-out;
}
.div6 .case-item li a:hover img {
  scale: 1.2;
}
.div6 .case-item li figure figcaption {
  font-size: 9px;
  color: #666;
  text-align: left;
  margin-top: 5px;
  line-height: 1.2;
  font-weight: 300;
}
.div5 {
  position: relative;
}
.annotation {
  position: absolute;
  left: 0;
  bottom: -40px;
  font-size: 9px;
  color: #666;
  z-index: 1;
  line-height: 1.3;
}
.products-detaile-inner .product-name {
  /* 375:24-1080:26 */
  font-size: clamp(1.5rem, 1.4335rem + 0.2837vw, 1.625rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.products-detaile-inner .product-description {
  font-size: clamp(0.9375rem, 0.9043rem + 0.1418vw, 1rem);
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}
.bt-middle {
  max-width: 400px;
  margin: 40px auto 0;
  font-size: var(--middle-font-size);
  background-color: #fff;
  margin-bottom: 80px;
}
.bt-middle:hover {
  background-color: var(--active-color);
  color: #fff;
}

.product-info-area .spec-title,
.product-info-area .spec-dimensions,
.product-option-area .options-title,
.product-case-area .cases-title {
  font-size: clamp(0.6875rem, 0.5965rem + 0.3883vw, 0.8125rem);
  font-weight: 500;
  margin-bottom: 0;
}
.product-case-area .cases-title span {
  font-size: 80%;
  margin-left: 0.5em;
  color: rgb(108, 108, 231);
}
.product-info-area .spec-dimensions {
  margin-bottom: 0.5em;
}
.product-info-area .spec-dimensions span {
  font-size: 60% !important;
}
.product-info-area .spec-details,
.product-option-area .option-list,
.product-option-area .option-text {
  font-size: 9px;
}
.product-info-area .spec-details li {
  margin-bottom: 0.5em;
}
.design-option {
  margin-bottom: 1em;
}
.product-option-area .option-subtitle,
.product-option-area .options-title {
  font-size: 10px;
  margin-bottom: 0.3em;
  font-weight: 500;
}
.product-option-area .option-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1em;
  column-gap: 0.8em;
}
.product-option-area .option-list li {
  margin-bottom: 0.9em;
}
.product-option-area .option-list li.mark::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #a3cdd6;
  border-radius: 50%;
  margin-right: 2px;
}
.product-option-area .option-list li.ceca93::before {
  background-color: #ceca93;
}
.product-option-area .option-list li.e0bba6::before {
  background-color: #e0bba6;
}
.product-option-area {
  background-color: #ececec;
  padding: 20px;
}
.option-text {
  margin-left: 1em;
}

.print-button {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 28px;
  height: auto;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 767px) {
  html {
    scroll-padding: 100px;
  }
  main {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .breadcrumb-section {
    padding-block: 10px;
  }
  .page-navigation-inner ul {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 1vw;
    z-index: 100;
  }

  .page-navigation-inner ul {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .page-navigation-inner ul::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
  .page-navigation-inner ul li {
    display: inline-block;
    white-space: nowrap;
  }
  .page-navigation-inner ul li a {
    display: block;
    border: 1px solid #666;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #fff;
    text-decoration: none;
  }
  .products-detaile-inner .product-name {
    margin-bottom: 0;
  }
  .products-detail-section .products-detaile-inner,
  .case-detail-section .case-detail-inner {
    max-width: 100%;
    margin: 0 auto;
    background-color: #f4f3ed;
  }
  .products-detaile-wrap {
    background-color: #f4f3ed;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    padding-inline: 15px;
    grid-template-areas:
      "div5"
      "div1"
      "div3"
      "div4"
      "div6"
      "div2";
    grid-row-gap: 10px;
    background-color: #fff;
    border-radius: 10px;
  }
  .div5,
  .div2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding-block: 20px;
  }
  .div5 img {
    width: 40%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
  }
  .div5 ul li {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-inline: auto;
  }
  .div5 ul li img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
    max-width: 100%;
  }
  .div5:has(.annotation) {
    margin-bottom: 2rem;
  }
  .div2 {
    padding-block: 5px;
    border: none;
    background-color: #fff;
  }
  .div2 img {
    width: 60%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
  }
  .product-info-area .spec-title,
  .product-info-area .spec-dimensions,
  .product-option-area .options-title,
  .product-case-area .cases-title {
    font-size: clamp(0.875rem, 0.7554rem + 0.5102vw, 1rem);
    font-weight: 500;
    margin-bottom: 0;
  }
  .product-info-area .spec-dimensions {
    margin-bottom: 0.8em;
  }
  .product-info-area .spec-details,
  .product-option-area .option-list,
  .product-option-area .option-text {
    font-size: clamp(0.8125rem, 0.6638rem + 0.6429vw, 1.125rem);
  }
  .product-option-area {
    background-color: #ececec;
    padding: 10px;
  }
  .product-option-area .option-subtitle {
    font-size: clamp(0.8125rem, 0.6638rem + 0.6429vw, 1.125rem);
    margin-bottom: 0.3em;
    font-weight: 500;
  }
  .option-text,
  .product-option-area .option-list {
    margin-left: 0.5em;
  }

  .page-navigation-section {
    position: sticky;
    top: 50px; /* adjust to your header height */
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    padding-block: 10px !important;

    background-color: var(--section-title-bg-color);
  }
  .page-navigation-inner {
    padding-bottom: 5px !important;
    position: relative;
  }
  /* .page-navigation-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 80%, rgba(244, 243, 237, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
  } */
  .title-section {
    --section-padding: 10px 0 30px;
    padding-bottom: 10px !important;
  }
}
/* --------------------------------
	case-itemの画像をクリックしたらモーダル表示
-------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex !important;
}
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #fff;
  color: #333;
  border: 2px solid #333;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10000;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background-color: #333;
  color: #fff;
}
@media (max-width: 767px) {
  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

.print {
  display: none;
}

/* オプション */
.option-catch-text,
.products-catch-text {
  font-size: clamp(1rem, 0.734rem + 1.1348vw, 1.5rem);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 60px;
  padding-inline: clamp(0.625rem, -0.3723rem + 4.2553vw, 2.5rem);
}
.option-catch-text span,
.products-catch-text span {
  font-size: clamp(0.875rem, 0.742rem + 0.5674vw, 1.125rem);
  display: block;
  margin-top: 0.4em;
  letter-spacing: 0em;
}
.products-catch-text {
  margin-bottom: 30px;
}
.option-list-section .option-section-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  padding-bottom: 100px;
}
/* カスタムオプション */
.option-list-section-inner {
  position: relative;

  padding-block: clamp(1.875rem, 0.8777rem + 4.2553vw, 3.75rem);
  padding-inline: clamp(0.625rem, -0.3723rem + 4.2553vw, 2.5rem);
  display: grid;
  /* grid最大4列、その後はフレキシブル対応 */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: auto;
  gap: 20px;
  row-gap: 40px;
}
@media (max-width: 500px) {
  .option-list-section-inner {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    row-gap: 40px;
  }
}
.option-list-section-inner .item-wrap {
  display: flex;
  flex-direction: column;
}
.option-list-section-inner .item-wrap.double {
  grid-column: span 2;
}
@media (max-width: 500px) {
  .option-list-section-inner .item-wrap.double {
    grid-column: span 1;
  }
}
.option-list-section-inner .item-wrap .item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cdcdcd;
  padding: 2px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.option-list-section-inner .item-wrap .item-title .item-title-text {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}
.option-list-section-inner .item-wrap .item-title .item-title-text span {
  font-size: 60%;
  font-weight: 300;
  margin-left: 0.3em;
}
.option-list-section-inner .item-wrap .item-title .compatible {
  font-size: 10px;
  font-weight: 500;
  color: #000;
  background-color: #b0dbe2;
  display: block;
  width: fit-content;
  padding: 1px 10px;
}
.option-list-section-inner .item-wrap .item-title .compatible.tw {
  background-color: #ceca93;
}
.option-list-section-inner .item-wrap .item-title .compatible.fh {
  background-color: #e0bba6;
}
.option-list-section-inner .item-wrap .item-text p {
  font-size: 12px;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  margin-top: 5px;
}

.option-list-section-under-note {
  font-size: clamp(0.875rem, 0.742rem + 0.5674vw, 1.125rem);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  padding-inline: clamp(0.625rem, -0.3723rem + 4.2553vw, 2.5rem);
}
.option-list-section-under-note span {
  font-size: 90%;
  font-weight: 300;
  display: block;
  margin-top: 0.4em;
  letter-spacing: 0em;
}
.btn-contact-middle {
  max-width: 460px;
  margin: 0 auto;
  font-size: clamp(1rem, 0.867rem + 0.5674vw, 1.25rem);
  padding: 15px 40px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .page-navigation-inner ul {
    padding-bottom: 5px !important;
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  }
  #option .page-navigation-inner ul {
    justify-content: center;
  }
}

/* デザインオプション */
.option-design-section-inner {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 1080/1351;
  margin: 0 auto;
  position: relative;
  /* padding-block: clamp(1.875rem, 0.8777rem + 4.2553vw, 3.75rem);
  padding-inline: clamp(0.625rem, -0.3723rem + 4.2553vw, 2.5rem); */
  /* background: url(../../option/images/dummy-content.png) no-repeat center center; */
  background-size: cover;
  margin-bottom: 3rem;
}
.option-design-section-inner {
  .d-item01 {
    display: block;
    position: absolute;
    top: calc(66 / 1351 * 100%);
    left: calc(82 / 1080 * 100%);
    width: calc(325.4 / 1080 * 100%);
    height: calc(509 / 1351 * 100%);
    max-width: 325.4px;
    aspect-ratio: 325.4/519;
    background: url(../../option/images/d-item01.png) no-repeat 0 0;
    background-size: cover;
    opacity: 0.5;
  }
  .d-item02 {
    display: block;
    position: absolute;
    left: calc(292 / 1080 * 100%);
    top: calc(40 / 1351 * 100%);
    width: calc(300 / 1080 * 100%);
    height: calc(256 / 1351 * 100%);
    max-width: 300px;
    aspect-ratio: 300/256;
    background: url(../../option/images/d-item02.png) no-repeat 0 0;
    background-size: cover;
  }
  .d-item03 {
    display: block;
    position: absolute;
    left: calc(660 / 1080 * 100%);
    top: calc(178 / 1351 * 100%);
    width: calc(250 / 1080 * 100%);
    height: calc(353 / 1351 * 100%);
    max-width: 250px;
    aspect-ratio: 250/353;
    background: url(../../option/images/d-item03.png) no-repeat 0 0;
    background-size: cover;
  }
  .d-item04 {
    display: block;
    position: absolute;
    left: calc(836 / 1080 * 100%);
    top: calc(231 / 1351 * 100%);
    width: calc(223.5 / 1080 * 100%);
    height: calc(447.5 / 1351 * 100%);
    max-width: 223.5px;
    aspect-ratio: 223.5/447.5;
    background: url(../../option/images/d-item04.png) no-repeat 0 0;
    background-size: cover;
  }
  .d-item05 {
    display: block;
    position: absolute;
    left: calc(483 / 1080 * 100%);
    top: calc(463 / 1351 * 100%);
    width: calc(318.5 / 1080 * 100%);
    height: calc(251 / 1351 * 100%);
    max-width: 318.5px;
    aspect-ratio: 318.5/251;
    background: url(../../option/images/d-item05.png) no-repeat 0 0;
    background-size: cover;
  }
  .d-item06 {
    display: block;
    position: absolute;
    left: calc(141 / 1080 * 100%);
    top: calc(700 / 1351 * 100%);
    width: calc(361 / 1080 * 100%);
    height: calc(369 / 1351 * 100%);
    max-width: 361px;
    aspect-ratio: 361/369;
    background: url(../../option/images/d-item06.png) no-repeat 0 0;
    background-size: cover;
  }
  .d-item07 {
    display: block;
    position: absolute;
    left: calc(402 / 1080 * 100%);
    top: calc(750 / 1351 * 100%);
    width: calc(579 / 1080 * 100%);
    height: calc(615 / 1351 * 100%);
    max-width: 579px;
    aspect-ratio: 579/615;
    background: url(../../option/images/d-item07.png) no-repeat 0 0;
    background-size: cover;
  }
}

/* 導入事例 */
.case-detaile-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  background-color: #fff;
  /* padding: 100px 80px; */
  padding: clamp(0.625rem, -26.916rem + 57.377vw, 5rem);
  display: grid;
  grid-template-columns: minmax(calc(363 / 860 * 100%), 363px) minmax(calc(182 / 860 * 100%), 182px) minmax(calc(282 / 860 * 100%), 282px);
  grid-template-rows: repeat(4, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-areas:
    "case-div2 case-div1 case-div1"
    "case-div2 case-div3 case-div3"
    "case-div2 case-div3 case-div3";
  margin-bottom: 45px;
}
.case-div1 {
  grid-area: case-div1;
  p {
    font-size: clamp(1.125rem, 0.859rem + 1.1348vw, 1.625rem);
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin-bottom: 0;
    letter-spacing: 0.1em;
  }
}
.case-div2 {
  grid-area: case-div2;
}
.case-div2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 10px;
  padding: 10px;
  border: 1px solid #cdcdcd;
}
.case-div2 ul li.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}

.case-div2 ul li {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.case-div2 ul li a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-inline: auto;
}
.case-div2 ul li img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-inline: auto;
}

.case-div3 {
  grid-area: case-div3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: repeat(8 auto);
    row-gap: 2px;
    column-gap: 10px;

    dt {
      font-size: 12px;
      font-weight: 300;
      color: #000;
      line-height: 1.6;
      max-width: 180px;
      white-space: nowrap;
      text-align: center;
      padding: 0.6em 0;
      color: #757575;
      background-color: #ececec;
    }
    dd {
      padding: 0.6em 0;
      font-size: 15px;
      font-weight: 400;
      color: #000;
      line-height: 1.6;
    }
  }
  dd a {
    color: var(--active-color);
  }
}
.case-overview {
  height: 180px;
  max-height: 180px;
  p {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
  }
  overflow-y: auto;
  scrollbar-color: #cdcdcd #f4f3ed;
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-track {
    background: #f4f3ed;
  }
}
@media (max-width: 767px) {
  .case-detaile-wrap {
    background-color: #f4f3ed;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    padding-inline: 15px;
    grid-template-areas:
      "case-div1"
      "case-div3"
      "case-div2";
    grid-row-gap: 10px;
    background-color: #fff;
    border-radius: 10px;
  }
  .case-div1,
  .case-div2,
  .case-div3 {
    max-width: 100%;
  }
  .case-div2 {
    border: none;
    ul {
      padding: 0;
    }
  }
  .case-div3 dl {
    grid-template-rows: repeat(8, auto);
    row-gap: 2px;
    column-gap: 10px;
    /* テキストがはみ出す場合は折り返す */
    word-break: break-word;
    white-space: normal;
  }
  .case-div3 dl dt {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .case-overview {
    height: initial;
    max-height: initial;
    overflow-y: initial;
    &::-webkit-scrollbar {
      display: none;
    }
    &::-webkit-scrollbar-track {
      background: transparent;
    }
    &::-webkit-scrollbar-thumb {
      background: transparent;
    }
  }
}
