@charset "utf-8";

/* =====================================================================
  .c-系コンポーネントクラス
===================================================================== */

/* 見出しスタイル */
.c-h2 {
  font-size: clamp(2.4rem, 2.6vw, 4rem); /* 最大4rem */
  font-weight: 700;
  text-align: left;
  width: fit-content;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--s4) var(--s8) var(--s4) 0;
  background: var(--pri);
  position: relative;
  z-index: 0;
}
.c-h2::before {
  content: "";
  width: calc(100vw - 120rem);
  height: 100%;
  position: absolute;
  background: var(--pri-dark);
  z-index: -1;
  right: 100%;
}
.c-h2.is-invert,
.is-invert + p {
  color: var(--white);
}
.c-h3 {
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
  font-weight: bold;
  margin: var(--s3) 0 var(--s2);
}
.c-h4 {
  padding: var(--s1) var(--s2);
  align-items: center;
  font-size: var(--s3);
  font-weight: bold;
  text-align: center;
  color: var(--txt);
  position: relative;
  z-index: 1;
  margin-block: var(--s4) var(--s1);
  line-height: 1.5;
}
.c-h4::before {
  content: "";
  width: calc(100% - 0.3em);
  height: 100%;
  background: var(--c1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0.8em 0%, calc(100% - 0.8em) 0%, 100% 50%, calc(100% - 0.8em) 100%, 0.8em 100%, 0% 50%);
  z-index: -1;
}
.c-h4::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c3);
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0.8em 0%, calc(100% - 0.8em) 0%, 100% 50%, calc(100% - 0.8em) 100%, 0.8em 100%, 0% 50%);
  z-index: -2;
}

/* 見出し内リンク */
.c-hlink {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  background: url("./img/arrow-s.svg") no-repeat center right / auto 0.8em;
  padding: 0 var(--s3);
}
.c-hlink:hover {
  text-decoration: none;
  opacity: 0.6;
}
.c-h2 .c-hlink {
  padding: 0 var(--s5);
}

/* テキストユーティリティ */
.c-lead {
  margin-bottom: var(--s3);
  color: var(--txt);
}
.c-desc {
  margin: auto;
  max-width: 90rem;
}

/* カード・グリッド */
.c-grid {
  display: grid;
  gap: var(--s3);
}

/* セクションタイトル */
.c-secTitle {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--txt);
  margin: 0 0 0.6em;
}

/* カード */
.c-rec .btn-tel,
.c-rec .btn-web {
  max-width: 90%;
  margin: 0 auto;
}
.pad-m {
  padding: var(--s3);
}
.pad-l {
  padding: var(--s4);
}
.pad-xl {
  padding: var(--s3) var(--s12) var(--s10);
}

.is-border {
  border-color: var(--ln);
}

.c-cardTitle {
  font-size: var(--fs-m);
  font-weight: 700;
  margin: 0 0 0.5em;
  color: var(--txt);
}

/* サマリー */
.c-summary {
  background: url(img/bg-summary.svg) no-repeat center bottom / 100% auto, white;
  border: none;
  border-radius: var(--r-md);
  padding: var(--s4) var(--s3);
  margin-block: var(--s3) var(--s5);
}
.c-summary .btn-internal {
  margin-bottom: 0;
}
.c-summary-head {
  display: flex;
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: bold;
  gap: var(--s2);
  align-items: center;
  margin-bottom: var(--s4);
  padding-bottom: var(--s1);
  border-bottom: 2px dotted var(--ln);
}
.c-summary-head span {
  font-size: 1.4rem;
  background: var(--acc);
  height: 3.6em;
  width: 3.6em;
  text-align: center;
  border-radius: 50%;
  align-content: center;
}

.mainvisual {
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(30deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), url(img/mv-bg.webp) no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s8) 0;
  overflow: clip;
  z-index: 0;
}
.mainvisual--low {
  width: 100%;
  height: auto;
  background: url(img/za-nac-00000373.webp) no-repeat top 20% right -10% / 50%, url(img/mv-bg-low.webp) no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4) 0;
}
.mainvisual--low a {
  width: 12%;
}

.mv-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
  position: relative;
  width: 100%;
  max-width: 120rem;
  height: auto;
  left: 0;
  top: 0;
}

.mv-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: var(--s1); */
  gap: var(--s2);
  width: 23.6rem;
  height: auto;
  /* background: rgba(35, 26, 43, 0.7); */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.mv-logo img {
  flex: none;
  order: 0;
  flex-grow: 0;
}

.mv-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100%;
  height: auto;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.mv-main-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--s1);
  gap: var(--s2);
  width: auto;
  height: auto;
  background: var(--pri);
  flex: none;
  order: 0;
  flex-grow: 0;
  font-weight: 700;
  font-size: var(--s4);
  line-height: 1.2;
  color: var(--white);
}

.mv-sub-title {
  box-sizing: border-box;
  padding: var(--s1);
  margin-bottom: var(--s3);
  height: auto;
  background: var(--white);
  border: 1px solid var(--pri-dark);
  flex: none;
  order: 1;
  font-weight: 700;
  font-size: var(--s6);
  line-height: 1.2;
  text-align: center;
  color: var(--pri-dark);
}

.mv-description {
  width: 100%;
  max-width: 60%;
  height: auto;
  flex: none;
  order: 2;
}

.mv-description p {
  position: static;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  font-weight: 400;
  font-size: var(--s2);
  line-height: 1.75;
  color: var(--txt);
  margin: 0;
}

.mv-decoration {
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.5;
  top: 50%;
  right: clamp(-30rem, -88.29rem + 42.86vw, -6rem);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .mainvisual {
    padding: var(--s4) 0;
  }

  .mv-container {
    padding: 0 var(--s2);
  }

  .mv-logo {
    width: 40%;
    height: auto;
  }

  .mv-logo img {
    width: 100%;
  }

  .mv-main-title {
    padding: var(--s1);
    font-size: var(--s3);
    line-height: 1.4;
  }

  .mv-sub-title {
    padding: var(--s1) var(--s2);
    font-size: var(--s4);
    line-height: 1.4;
    text-align: left;
  }
  .mv-description {
    max-width: 100%;
  }
  .mv-description p {
    font-size: var(--fs-s);
    line-height: 1.6;
  }
  .c-rec .btn-tel {
    margin-top: var(--s2);
  }
}

/* footer-banner の基本スタイル */
.footer-banner {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* footer-banner 表示状態 */
.footer-banner.js-show {
  opacity: 1;
}

/* テーブルスタイル */
.c-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: var(--white);
}
.c-table th {
  width: 25%;
}
.c-table td {
  padding: var(--s1) var(--s2);
}

/* キャプションスタイル */
.c-caption {
  margin-top: var(--s1);
  color: var(--sub);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}

/* =====================================================================
  スパッタリング装置ページ専用スタイル
===================================================================== */

/* 簡易訴求セクション */
.c-rec {
  padding: var(--s14) 0;
  background: url(img/za-nac-00000373.webp) no-repeat top left -50% / 50% auto, radial-gradient(50% 50% at 50% 50%, #5c5562 0%, #231a2b 100%);
}
.c-rec.--low {
  margin-top: var(--s6);
}
.c-rec__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s5);
  /* grid-template-rows: repeat(11, auto); */
  max-width: 1200px;
  margin: 0 auto;
}

.c-rec__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 11;
  gap: 0;
  padding: 0 0 var(--s5);
  background: var(--c0);
  overflow: hidden;
}

.c-rec__category {
  width: 100%;
  background: var(--acc-dark);
  /* border-top: 2px solid var(--c1); */
  padding: var(--s2);
  font-weight: 700;
  font-size: var(--fs-xl);
  text-align: center;
  color: var(--white);
}

.c-rec__item .c-h3 {
  text-align: center;
  font-size: var(--fs-l);
  color: var(--txt);
  width: 100%;
  margin: 0;
}

.c-rec__divider {
  width: 90%;
  margin: 0 auto;
}
.c-rec__catch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 var(--s2);
  gap: var(--s2);
  width: 100%;
  background: var(--c0);
  text-align: center;
}

.c-rec__catch .marker {
  font-weight: 700;
  font-size: var(--fs-l);
  text-align: center;
  color: var(--pri-dark);
  line-height: 1.4;
  background: transparent;
  margin-block: var(--s3);
}

.c-rec__image {
  width: calc(100% - var(--s2) * 2);
  margin: 0 auto;
}

.c-rec__image .caption {
  max-width: 100%;
}

.c-rec__reasons {
  padding: var(--s2);
  background: var(--lig);
  display: flex;
  flex-direction: column;
}

.c-rec__reasons-title {
  font-size: var(--fs-m);
  font-weight: 700;
  color: var(--txt);
  text-align: center;
}
.c-rec__reason-catch {
  font-weight: 700;
  color: var(--acc-dark);
  text-align: center;
  position: relative;
  line-height: 1.6;
  align-content: center;
  padding: var(--s2) var(--s2) var(--s1);
}
.c-rec__reason-catch::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - (var(--s2) * 2));
  height: 1px;
  background: var(--pri-dark);
  z-index: 2;
}
.c-rec__reason-catch + ul {
  flex: 1;
}

/* 行の割り当て */
.js-eq-cat {
  grid-row: 1;
}
.js-eq-catch {
  grid-row: 2;
}
.js-eq-div {
  grid-row: 3;
}
.js-eq-h3 {
  grid-row: 4;
}
.js-eq-img {
  grid-row: 5;
}
.js-eq-reasons {
  display: contents;
}

.js-eq-rt {
  grid-row: 6;
  background: var(--lig);
  padding: var(--s3) var(--s2) 0;
}
.js-eq-rc1 {
  grid-row: 7;
  background: var(--lig);
}
.js-eq-ul1 {
  grid-row: 8;
  background: var(--lig);
  padding: var(--s2);
  margin: 0;
}
.js-eq-rc2 {
  grid-row: 9;
  background: var(--lig);
  margin: 0;
  padding-top: var(--s1);
}
.js-eq-ul2 {
  grid-row: 10;
  background: var(--lig);
  padding: var(--s2) var(--s2) var(--s3);
  margin-bottom: var(--s3);
}
.js-eq-web {
  grid-row: 11;
}
.js-eq-tel {
  grid-row: 12;
}

.js-eq-img {
  display: grid;
  grid-template-rows: 1fr auto;
  margin-block: var(--s3);
}
.js-eq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@supports not (grid-template-rows: subgrid) {
  .c-rec__item {
    grid-template-rows: auto;
    grid-row: auto;
  }
}
/* ボタンスタイル */
.btn-acc {
  display: inline-block;
  padding: var(--s2) var(--s4);
  background: var(--acc);
  color: white;
  text-decoration: none;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  margin: var(--s2) var(--s2) var(--s2) 0;
  cursor: pointer;
}

.btn-acc:hover {
  background: var(--acc-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

/* 詳細訴求セクション */
.c-det {
  padding: var(--s14) 0;
  background: url(img/bg-det.webp) no-repeat fixed top center / cover, #bdc1c6;
}
.c-det .c-h3 {
  margin: 0;
  background: url(img/c-det-bg.jpg) no-repeat center / cover;
  width: 100%;
  text-align: center;
  color: white;
  padding: var(--s3);
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
}
.c-det__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.c-det__category {
  background: var(--acc-dark);
  border-top: 2px solid var(--c1);
  padding: var(--s1) var(--s3);
  font-weight: 700;
  font-size: var(--fs-xl);
  text-align: center;
  color: var(--white);
  margin-right: auto;
  transform: translate(-2.4rem, 0.8em);
  border-width: 0 2px 2px 0;
  border-color: var(--c1);
  border-style: solid;
}
.c-cmp {
  padding: var(--s6);
  background: var(--c2);
  width: 120rem;
  max-width: 100%;
}
.c-cmp .btn-web,
.c-cmp .btn-tel {
  margin: 0 auto;
}
.c-cmp .inner {
  max-width: 100rem;
  margin: 0 auto;
}
/* 詳細訴求セクション内のコンポーネント */
.c-det__header {
  width: 100%;
  margin-bottom: var(--s6);
}

.c-det__header-bg {
  width: 100%;
  height: 100px;
  background: var(--pri-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-det__header-title {
  font-weight: 700;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  text-align: center;
  color: var(--white);
}

.c-det__header-category {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--s6) var(--s10);
  gap: var(--s2);
  background: var(--acc-dark);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: var(--c1);
  box-sizing: border-box;
  width: 100%;
}

.c-det__header-category-text {
  font-weight: 700;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  color: var(--white);
}

.c-det__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--s14) 0;
  gap: var(--s12);
  width: 100%;
  background: var(--c0);
}

.c-cmp__image {
  margin: 0 auto;
  text-align: center;
  max-width: 60rem;
}

.c-cmp__image img {
  width: 100%;
}
/* おすすめ理由のキャッチ部分をsubgridで高さ揃え */
.c-cmp__reasons .l-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.c-cmp__reasons .c-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  position: relative;
}
.c-cmp__reasons .c-card:first-of-type::before{
  content:"";
  position: absolute;
  right: calc((var(--s6) * -1) / 2);
  height: 100%;
  width: 0;
  border-right: 1px dashed #ddd;
}
.c-cmp__reasons .c-cmp__catch {
  display: flex;
  align-items: center;
  min-height: 0;
}

/* 詳細訴求内の画像セクション */
.c-det__image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: var(--s3);
  width: 100%;
  max-width: var(--s12);
}

.c-det__image {
  width: 100%;
  height: var(--s7);
  background: var(--c3);
  object-fit: cover;
}

.c-det__image-caption {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  color: var(--sub);
}

/* 詳細訴求内のコンテンツセクション */
.c-det__content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: var(--s8);
  width: 100%;
}

.c-det__section-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--s5) var(--s14);
  gap: var(--s2);
  width: 100%;
  background: var(--c1);
}

.c-det__section-title-text {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  text-align: center;
  color: var(--txt);
}

.c-cmp__reasons ul {
  margin: var(--s3) 0;
}

.c-cmp__reasons li {
  margin-bottom: var(--s3);
  line-height: 1.8;
}

.c-cmp__catch {
  font-weight: 700;
  color: var(--pri-dark);
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  padding-left: var(--s8);
  background: url(img/icon-tit.svg) no-repeat center left / 2.4em auto;
  line-height: 1.6;
  align-content: center;
}

/* 詳細訴求内の理由セクション */
.c-det__reasons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.c-det__reason-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: var(--s4);
  width: 100%;
}

.c-det__reason-icon {
  width: var(--s2);
  height: var(--s2);
  background: linear-gradient(270deg, #323a82 0%, #5a3282 100%);
  flex-shrink: 0;
}

.c-det__reason-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: var(--pri-dark);
  margin-bottom: var(--s2);
}

.c-det__reason-text {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  color: var(--txt);
  line-height: 1.6;
}

/* 詳細訴求内のボタン */
.c-det__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: var(--s4) var(--s11);
  gap: var(--s2);
  max-width: var(--s10);
  background: var(--acc);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-det__button:hover {
  background: var(--acc-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

.c-det__button-text {
  font-weight: 700;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  text-align: center;
  color: var(--white);
}

.c-det__button-icon {
  width: var(--s1);
  height: var(--s1);
  background: #ffffff;
}

.c-cmp__case-content {
  display: flex;
  align-items: center;
  gap: var(--s3);
  justify-content: center;
}
.c-cmp__case-content img {
  max-width: 5.4rem;
}

.c-cmp__product-title {
  font-size: var(--fs-m);
  background: var(--pri-dark);
  padding: var(--s1);
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 1.4;
}

/* アコーディオン機能 */
.more-content {
  display: none;
}

.more-content .l-grid-2 {
  margin-top: var(--s5);
}
.more-content .l-grid-2:first-of-type {
  margin-top: 0;
}
.acc-more-btn {
  max-width: 46rem;
  width: 95%;
  border-radius: 50vh;
  margin: var(--s3) auto;
  padding: var(--s2);
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
  background: var(--c3);
  color: white;
  font-weight: 700;
  font-size: var(--fs-s);
  line-height: 1.4;
}

.acc-more-btn::before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: white;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
}

.acc-more-btn::after {
  content: "";
  width: 0.2rem;
  height: 2rem;
  background: white;
  position: absolute;
  top: 50%;
  right: 3.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.acc-more-btn:hover {
  opacity: 0.6;
}

.acc-more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

/* レスポンシブ対応 */

@media screen and (max-width: 767px) {
  .mv-decoration {
    top: -50%;
    right: -60%;
    transform: none;
  }
  #index .btn-internal,
  #index .btn-anchor,
  #index .btn-web,
  #index .btn-tel,
  #recommended .btn-internal,
  #recommended .btn-anchor,
  #recommended .btn-web {
    max-width: 95%;
  }
  .c-h2 {
    padding: var(--s2);
    margin-bottom: -1em;
  }
  .c-h2::before {
    width: 100%;
  }
  .c-h4::before {
    clip-path: polygon(0.4em 0%, calc(100% - 0.4em) 0%, 100% 50%, calc(100% - 0.4em) 100%, 0.4em 100%, 0% 50%);
  }
  .c-h4::after {
    clip-path: polygon(0.4em 0%, calc(100% - 0.4em) 0%, 100% 50%, calc(100% - 0.4em) 100%, 0.4em 100%, 0% 50%);
  }
  .c-rec {
    background-size: 100%;
    padding: var(--s10) 0;
  }
  .c-rec .btn-tel,
  .c-rec .btn-web {
    max-width: 90% !important;
  }

  .c-rec__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--s4);
  }

  .c-rec__item {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: auto;
    margin: 0;
  }

  .c-rec__category {
    padding: var(--s2) var(--s3);
  }

  .c-rec__reasons {
    padding: 0 var(--s3);
  }

  .c-det__content {
    max-width: 100%;
  }

  .c-det__category {
    transform: translate(-0.4rem, 0.5em);
  }

  .c-cmp__reasons .l-grid-2 {
    grid-template-columns: 100%;
    gap: var(--s5);
  }

  .c-cmp {
    padding: var(--s4);
  }

  .c-cmp__case-content {
    flex-direction: column;
    text-align: center;
  }

  .c-cmp__product-cta {
    flex-direction: column;
    align-items: center;
  }
}
