@charset "UTF-8";
/* ------------------------------------------------------
*	scrollTest.jsとともに使用
* ------------------------------------------------------ */
/* ------------------------------------------------------

    MAIN VISUAL

------------------------------------------------------ */
.detail-ttl {
  position: relative;
  display: grid;
}
.detail-ttl > picture, .detail-ttl > div {
  grid-area: 1/1;
}
.detail-ttl > picture img {
  width: 100%;
  height: 254px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .detail-ttl > picture img {
    height: auto;
    aspect-ratio: 750/235;
  }
}
.detail-ttl > div {
  place-self: end center;
  display: grid;
  place-items: center;
  width: calc(100% - var(--space) * 2);
  padding: 0.6330754em 0;
  max-width: 724px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(195, 81, 28, 0)), color-stop(50%, rgb(195, 81, 28)), to(rgba(195, 81, 28, 0)));
  background: linear-gradient(to right, rgba(195, 81, 28, 0) 0%, rgb(195, 81, 28) 50%, rgba(195, 81, 28, 0) 100%);
  color: #fff;
}
.detail-ttl > div p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp( 1.4rem, 1.4rem + ((1vw - 0.32rem) * 1), 3rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.detail-ttl > div h1 {
  margin-top: 0.2em;
  padding: 0.15em 0.5em 0.075em;
  border-top: 1px solid #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp( 2.4rem, 2.4rem + ((1vw - 0.32rem) * 1.8125), 5.3rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/*--------------------------------
    演出
--------------------------------*/
.detail-ttl.js-sc-item:not([data-status=show]) {
  opacity: 0;
}
.detail-ttl.js-sc-item[data-status=show] {
  opacity: 1;
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2);
}

/* ------------------------------------------------------

    製品使用写真

------------------------------------------------------ */
.detail-intro {
  padding: 110px 0;
}
@media screen and (max-width: 767px) {
  .detail-intro {
    padding: 55px 0;
  }
}
.detail-intro__inr {
  width: calc(100% - var(--space) * 2);
  max-width: 1212px;
  margin: 0 auto;
}
.detail-intro__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .detail-intro__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.detail-intro__body figure {
  position: relative;
  width: 605px;
}
.detail-intro__body figure figcaption {
  position: absolute;
  bottom: 5px;
  left: 5px;
  padding: 5px 20px;
  background-color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 10px, rgba(255, 255, 255, 0.75) calc(100% - 10px), rgba(255, 255, 255, 0) 100%);
  font-size: 1.2rem;
  line-height: 1;
}

/*--------------------------------
    演出
--------------------------------*/
.detail-intro__body.js-sc-item:not([data-status=show]) figure {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.detail-intro__body.js-sc-item[data-status=show] figure {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* ------------------------------------------------------

    各製品

------------------------------------------------------ */
.detail-prod {
  padding: 110px 0 140px;
  background-color: #dcdbce;
}
@media screen and (max-width: 767px) {
  .detail-prod {
    padding: 55px 0 70px;
  }
}
.detail-prod__inr {
  width: calc(100% - var(--space) * 2);
  max-width: 1400px;
  margin: 0 auto;
}
.detail-prod__inr2 {
  width: calc(100% - var(--space) * 2);
  max-width: 1452px;
  margin: 0 auto;
}
.detail-prod__lead {
  margin-bottom: 70px;
  font-size: clamp( 1.8rem, 1.8rem + ((1vw - 0.32rem) * 0.5), 2.6rem);
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .detail-prod__lead {
    margin-bottom: 35px;
  }
}

/*--------------------------------
    演出
--------------------------------*/
.detail-prod.js-sc-item:not([data-status=show]) {
  opacity: 0;
}
.detail-prod.js-sc-item[data-status=show] {
  opacity: 1;
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2);
}

.detail-prod__inr.js-sc-item:not([data-status=show]) .detail-prod__lead {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.detail-prod__inr.js-sc-item[data-status=show] .detail-prod__lead {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* ------------------------------------------------------

    掲載製品リスト

------------------------------------------------------ */
.prod-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 450px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 25px;
}
@media screen and (max-width: 1006px) {
  .prod-list {
    grid-template-columns: 1fr;
  }
}
.prod-list li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 8px 8px 16px;
  background-color: #f5f5f5;
}
.prod-list .prod__ttl {
  display: grid;
  place-items: center;
  height: 102px;
  background-color: #cb5219;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl {
    padding: 5px 10px;
    height: clamp( 72px, 72px + ((1vw - 3.2px) * 6.6964285714), 102px);
  }
}
.prod-list .prod__ttl--tmb {
  grid-template-columns: 102fr 332fr;
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl--tmb {
    grid-template-columns: auto 1fr;
  }
}
.prod-list .prod__ttl > img {
  width: 102px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl > img {
    width: clamp( 50px, 50px + ((1vw - 3.2px) * 1.3392857143), 56px);
  }
}
.prod-list .prod__ttl > div {
  padding: 0 8px;
}
.prod-list .prod__ttl p:nth-child(1) {
  margin-bottom: 0.375em;
  font-size: 1.6rem;
  line-height: 1.1;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl p:nth-child(1) {
    font-size: clamp( 1.1rem, 1.1rem + ((1vw - 0.32rem) * 1.1160714286), 1.6rem);
  }
}
.prod-list .prod__ttl p:nth-child(2) {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl p:nth-child(2) {
    font-size: clamp( 1.8rem, 1.8rem + ((1vw - 0.32rem) * 2.2321428571), 2.8rem);
  }
}
.prod-list .prod__ttl p:nth-child(2).ex {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl p:nth-child(2).ex {
    font-size: clamp( 1.7rem, 1.7rem + ((1vw - 0.32rem) * 1.7857142857), 2.5rem);
  }
}
.prod-list .prod__ttl p:nth-child(2).prod__logo {
  line-height: 1;
  font-size: 0;
}
.prod-list .prod__ttl p:nth-child(2).prod__logo img {
  width: auto;
  height: clamp( 16px, 16px + ((1vw - 3.2px) * 3.125), 30px);
}
.prod-list .prod__ttl p:nth-child(3) {
  margin-top: 0.3em;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl p:nth-child(3) {
    font-size: 1rem;
  }
}
@media screen and (max-width: 374px) {
  .prod-list .prod__ttl p:nth-child(3) {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    line-height: 0.8;
  }
}
.prod-list .prod__ttl + .link-prod, .prod-list .prod__ttl + .link-pdf {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__ttl + .link-prod, .prod-list .prod__ttl + .link-pdf {
    margin-top: 16px;
  }
}
.prod-list .prod__body {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__body {
    padding: 16px 0;
  }
}
.prod-list .prod__body dt {
  display: grid;
  place-items: center;
  width: 120px;
  height: 32px;
  margin-bottom: 0.75em;
  border-radius: 100px;
  background-color: #ddd;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__body dt {
    width: 100px;
    height: 24px;
    font-size: 1.6rem;
  }
}
.prod-list .prod__body dd {
  font-size: 2rem;
  line-height: 1.55;
  text-align: justify;
}
.prod-list .prod__body dd:not(:last-of-type) {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .prod-list .prod__body dd {
    font-size: 1.4rem;
  }
}

/*--------------------------------
    演出
--------------------------------*/
.prod-list.js-sc-item:not([data-status=show]) li {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.prod-list.js-sc-item[data-status=show] li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* ------------------------------------------------------

    掲載製品リストページのみ使用

------------------------------------------------------ */
.prod-list-wrap {
  max-width: 1452px;
  margin: 0 auto;
  padding: 25px;
  border: 1px solid #595757;
}
@media screen and (max-width: 767px) {
  .prod-list-wrap {
    padding: 0;
  }
}
section:not(:last-of-type) .prod-list-wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  section:not(:last-of-type) .prod-list-wrap {
    margin-bottom: 20px;
  }
}
.prod-list-wrap__ttl {
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__ttl {
    position: relative;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .prod-list-wrap__ttl::before {
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
  }
  .prod-list-wrap__ttl:hover::before {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__ttl::before {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__ttl::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 10px;
    background-color: #fff;
    -webkit-mask: var(--i-arrow) 50% 50%/14px 14px no-repeat;
            mask: var(--i-arrow) 50% 50%/14px 14px no-repeat;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__ttl.is-open::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__body {
    display: none;
  }
}
.prod-list-wrap__body .prod-list {
  padding-top: 20px;
  margin-bottom: 50px;
}
.prod-list-wrap__body > p {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__body > p {
    padding: 0 15px 15px 0;
  }
}
.prod-list-wrap__body > p a {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.prod-list-wrap__body > p a::after {
  display: inline-block;
  content: ">";
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .prod-list-wrap__body > p a {
    font-size: 1.2rem;
  }
}

/*--------------------------------
    演出
--------------------------------*/
section.js-sc-item:not([data-status=show]) .prod-list-wrap {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
section.js-sc-item[data-status=show] .prod-list-wrap {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* タイトル */
.detail-ttl > div {
    place-self: center center;
    background: linear-gradient(to right, rgba(195, 81, 28, 0) 0%, rgb(171, 149, 30) 25%, rgb(171, 149, 30) 50%, rgba(195, 81, 28, 0) 100%);
}

.detail-prod {
    padding: 25px 0 140px;
    background-color: #dcdbce;
}
@media screen and (max-width: 767px) {
    .detail-prod {
        padding: 25px 0 70px;
    }
}

/* 各章と背景 */
.prod-list-wrap,
.prod-list-wrap,
.prod-list-wrap,
.prod-list-wrap{
    padding: 40px 24px 75px;
    border: 2px solid #fff;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .prod-list-wrap {
        padding: var(--space);
        /* border: none; */
        /* background-image: none !important */
    }
}
#sec1 .prod-list-wrap{ background-image: url("../img/sec1_bg.webp"); }
#sec2 .prod-list-wrap{ background-image: url("../img/sec2_bg.webp"); }
#sec3 .prod-list-wrap{ background-image: url("../img/sec3_bg.webp"); }
#sec4 .prod-list-wrap{ background-image: url("../img/sec4_bg.webp"); }

/* アンカーナビ */
.anchor-navi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .anchor-navi {
        grid-template-columns: repeat(2, 1fr);
    }
}
.anchor-navi li a{
    display: grid;
    place-items: center;
    width: 100%;
    height: 80px;
    background-color: #898989;
    border-bottom: 3px solid #727171;

    font-size: clamp(1.8rem, 3000 / 1920 * 1vw, 3.0rem);
    color: #fff;
}
@media screen and (max-width: 767px) {
    .anchor-navi li a{
        height: 40px;
    }
}

/* 固定メニュー対策 */
#sec1, #sec2, #sec3, #sec4 {
    padding-top: 100px;
    margin-top: -100px;
}

/* セクションタイトル */
.prod-list-wrap__ttl2 {
    display: flex;
    align-items: center;
    max-width: calc(974 / 1452 * 100%);
    padding: 5px 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;

    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .prod-list-wrap__ttl2 {
        position: relative;
        max-width: none;
        padding: 15px 0;
        margin: 0;
        cursor: pointer;
        font-size: calc(3500 / 750 * 1vw)
    }
}
.prod-list-wrap__ttl2::before,
.prod-list-wrap__ttl2::after {
    content: '';
    height: 1px;
    background-color: #333;
    flex-grow: 1;
}
.prod-list-wrap__ttl2::before{
    margin-right: 0.5em;
}
.prod-list-wrap__ttl2::after{
    margin-left: 0.5em;
}


/* 製品リスト */
.prod-list-wrap__body .prod-list {
    padding-top: 0px;
    margin-bottom: 0px;
}

.prod-list li {
    display: grid;
    padding: 8px 8px 16px;
    background-color: #f5f5f5;
}
.prod-list > li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
}
@media screen and (max-width: 767px) {
    /* 隠し対策 */
    .prod-list-wrap__body {
        display: block;
    }
}

/* 製品タイトル */
.prod__ttl2 hgroup{
    background-color: #ab951e;
}
.prod__ttl2 hgroup *{
    max-width: 434px;
    margin: 0 auto;
}

/* 特徴・用途 */
.prod__body + .prod__body{
    padding-top: 0;
}
.prod__body li{
    display: block;
    padding: 0 0 0 1em;
    text-indent: -1em;
}
.prod__body li::before{
    display: inline-block;
    content: "・";
    width: 1em;
    text-indent: 0;
}
.prod__body span{
    color: #e60012;
}