@charset "utf-8";
/* ----------------------------------------
メインビジュアル　スライダー　ドット
---------------------------------------- */
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
}
.slick-dots li.hover,
.slick-dots li.slick-active {
  background-color: #0068b7;
}
.slick-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
/* ----------------------------------------
メインビジュアル　スライダー
---------------------------------------- */
.mv-area {
  margin: 10rem 0 0;
}
.mv-lot {
  display: grid;
  /* すべての子要素を同じセルに配置 */
  grid-template-areas: "main";
  position: relative;
  overflow: hidden; /* はみ出し分をカット */
}
/* すべての子要素を main エリアに割り当てる */
.mv-lot > * {
  grid-area: main;
}
.mv-lot > picture img {
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 685;
  object-fit: cover;
  /* 拡大アニメーションの定義 */
  transition: transform 7s ease-out; /* 7秒かけてゆっくり動かす */
  transform: scale(1); /* 初期は等倍 */
}
/* コンテンツはそれより上に表示 */
.mv-lot-in,
.mv-machine-area {
  z-index: 1;
  /* 中身の配置調整はここで行う */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 3rem;
}
.mv-title {
  font-size: 5.4rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 3rem;
  text-shadow:
    1px 1px 0px #333,
    2px 2px 0px #333,
    2px 2px 0px #333,
    2px 2px 0px #333;
}
.mv-yellow {
  display: inline;
  color: #ffff00;
}
.mv-title span {
}
.mv-con {
  border: 0.4rem solid #fff;
  padding: 1rem;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mv-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #0068b7;
  background-color: #ffff00;
  height: 3.6rem;
  padding: 0.5rem 1rem;
}
.mv-subtitle {
  font-size: 3.8rem;
  color: #fff;
  line-height: 1.3;
}
.mv-machine {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  max-width: 118rem;
}
.mv-machine figure {
  margin: 0 1rem 0 0;
}
.mv-machine figure:nth-child(2) {
  margin: 0 25rem 0 0;
}
/* ----------------------------------------
メインビジュアル　スライダー ２枚目＆３枚目テキスト
---------------------------------------- */
.mv-dehydrator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 118rem;
  padding: 0 6rem;
  box-sizing: border-box;
  z-index: 1;
}
.mv-d-machine {
  font-size: 1.8rem;
  color: #fff;
}
.mv-d-mold {
  font-size: 4.8rem;
  line-height: 1;
  color: #fff;
}
.mv-d-mold span {
  font-size: 12rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
.mdc {
  position: relative;
  z-index: 0;
  margin: 0 0 0 6rem;
}
.mdc::before {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  top: 4.5rem;
  left: -2.1rem;
  background-color: #fff;
  transform: rotate(25deg);
}
/* ----------------------------------------
メインビジュアル　スライダー　アニメーション
---------------------------------------- */
/* --- 背景画像：常に表示 --- */
.mv-lot > picture img {
  aspect-ratio: 1920 / 685;
  opacity: 1 !important;
  visibility: visible !important;
}
/* クラスが付与されたら拡大する */
.slick-slide.is-active .mv-lot > picture img {
  transform: scale(1.1); /* 1.1倍にゆっくり拡大 */
}
/* --- 文字・マシン画像：初期状態 --- */
.mv-title,
.mv-d-machine,
.mv-con,
.mv-d-mold,
.mv-machine figure {
  opacity: 0;
  transform: translateY(30px);
  /* visibilityはtransitionさせず、一気に切り替えるのがスムーズです */
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
/* --- クラスがついた時（親要素が .is-active の時） --- */
/* .slick-current 自体にクラスがつくため、その直下のアニメーション要素を指定 */
.slick-slide.is-active .mv-title,
.slick-slide.is-active .mv-d-machine,
.slick-slide.is-active .mv-con,
.slick-slide.is-active .mv-d-mold,
.slick-slide.is-active .mv-machine figure {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
/* 表示順序（遅延）の指定も同様に .is-active を起点にする */
.is-active .mv-title,
.is-active .mv-d-machine {
  transition-delay: 0.4s;
}
.is-active .mv-con,
.is-active .mv-d-mold {
  transition-delay: 0.7s;
}
.is-active .mv-machine figure:nth-child(1) {
  transition-delay: 1s;
}
.is-active .mv-machine figure:nth-child(2) {
  transition-delay: 1.2s;
}
.is-active .mv-machine figure:nth-child(3) {
  transition-delay: 1.4s;
}
.is-active .mv-machine figure:nth-child(4) {
  transition-delay: 1.6s;
}
/* ----------------------------------------
.worries-area
---------------------------------------- */
/* 既存のスタイルに追記・修正 */
.worries-area {
  position: relative;
  z-index: 0;
  padding: 10.2rem 6rem;
}
/* 三角形（疑似要素）の初期状態 */
.worries-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%); /* 最初は少し下に下げておく */
  width: 12.3rem;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/products/Dehydrators-Series/images/home/triangle.png");
  z-index: -1;
  /* アニメーション設定 */
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 1s ease;
}
/* テキストの初期状態 */
.worries-text {
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  color: #238567;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
/* --- 表示された時の状態 (.is-activeが付与されたら実行) --- */
/* 三角形を表示 */
.worries-area.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%); /* 本来の位置へ */
}
/* テキストを表示（三角形より少し遅れて開始） */
.worries-area.is-active .worries-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s; /* 0.4秒遅らせて表示 */
}
/* ----------------------------------------
.reason-area
---------------------------------------- */
.reason-area {
  background-color: #c2e6dd;
  padding: 7rem 0 20rem;
  position: relative;
  z-index: 0;
}
.reason-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35rem;
  background-image: url("/products/Dehydrators-Series/images/home/img-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.reason-box {
  padding: 0 6rem;
}
.reason-lot {
  max-width: 118rem;
  margin: 0 auto;
}
.reason-text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.5;
  margin: 0 0 3rem;
}
.reason-text span {
  font-weight: bold;
}
.reason-title {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #0096e1;
  height: 7rem;
  border-radius: 0.4rem;
  margin: 0 0 5rem 0;
}
.reason-title::before {
  content: "";
  position: absolute;
  bottom: -1.7rem;
  left: 50%;
  margin: 0 0 0 -1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.7rem 1rem 0 1rem;
  border-color: #0096e1 transparent transparent transparent;
}
/* ----------------------------------------
.method-img-box
---------------------------------------- */
.method-img-box {
  position: relative;
  z-index: 0;
  padding: 5rem 0 0;
  overflow: hidden;
}
.method-img-box::before {
  content: attr(data-text) "";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9rem;
  font-weight: bold;
  line-height: 1;
  color: #0096e1;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.method-img-box a {
  display: block;
  position: relative;
  z-index: 0;
  background-color: #fff;
  padding: 4rem 2rem 6rem;
  transition: all 0.12s ease-out;
}
.method-img-box a::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  margin-left: -1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #0068b7;
}
.method-img-box a::after {
  content: "";
  position: absolute;
  bottom: 3rem;
  left: 50%;
  margin-left: -0.3rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}
.method-img-box a.hover {
  background-color: #edf9ff;
}
.method-img-box a figure {
  max-width: 12rem;
  width: 100%;
  height: auto;
  margin: 0 auto 0.5rem auto;
}
.method-title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  transition: all 0.12s ease-out;
}
.method-img-box a.hover .method-title {
  color: #0068b7;
}
.method-text {
  font-size: 1.4rem;
  line-height: 2;
  transition: all 0.12s ease-out;
}
.method-img-box a.hover .method-text {
  color: #0068b7;
}
/* ----------------------------------------
.choose-area
---------------------------------------- */
.choose-area {
  padding: 0 0 12rem;
}
#c-first {
  padding: 7rem 0 12rem;
  background: linear-gradient(180deg, #fbf8f1 0%, #fbf8f1 75%, #fff 75%, #fff 100%);
  background-size: 100% 100vh; /* 高さの基準をビューポート（画面）の高さに固定 */
  background-repeat: no-repeat; /* 繰り返しを防止 */
}
#c-four {
  padding: 7rem 0 14rem;
  background: linear-gradient(180deg, #fbf8f1 0%, #fbf8f1 55%, #fff 55%, #fff 100%);
  background-size: 100% 100vh; /* 高さの基準をビューポート（画面）の高さに固定 */
  background-repeat: no-repeat; /* 繰り返しを防止 */
}
.choose-b-color {
  border-image: linear-gradient(#fbf8f1 0 0) fill 0 / 0 / 0 100vw;
  padding: 7rem 0 7rem;
}
.choose-box {
  padding: 0 6rem;
}
.choose-lot {
  max-width: 118rem;
  margin: 0 auto;
}
.choose-lot.min {
  max-width: 100rem;
}
.choose-num-left {
  font-size: 16rem;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: #0096e1;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 1rem 5rem;
}
.choose-num-left::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #0096e1;
  display: block;
  margin-left: 3rem;
}
.choose-num-right {
  font-size: 16rem;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: #0096e1;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 5rem 1rem 0;
}
.choose-num-right::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #0096e1;
  display: block;
  margin-right: 3rem;
}
/* ----------------------------------------
.sludge-area
---------------------------------------- */
.sludge-area {
  margin: 0 0 4.5rem;
}
.sludge-title {
  font-size: 3.2rem;
  color: #0096e1;
  font-weight: bold;
  margin: 0 0 3rem;
}
.sludge-text {
  font-size: 1.8rem;
  line-height: 2;
}
/* ----------------------------------------
.multiple-list
---------------------------------------- */
.multiple-list {
  display: flex;
}
.multiple-list li {
  width: 50%;
}
.multiple-list li figure {
  margin: 0 0 1rem;
}
.multiple-list li figure.m-boder {
  border: 1px solid #e9ecee;
}
.multiple-area {
  background-color: #e6f0f7;
  padding: 6rem 4rem;
}
.multiple-area.screw {
  background-color: #e6f8f7;
}
.multiple-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #4099de;
  margin: 0 0 1.5rem;
}
.multiple-title.screw {
  color: #0ba29a;
}
.multiple-mintext {
  font-size: 1.2rem;
  text-align: right;
  margin: 0 0 1.5rem;
}
.multiple-text {
  font-size: 1.6rem;
  line-height: 2;
}
/* ----------------------------------------
.ability-area
---------------------------------------- */
.ability-area {
  display: flex;
  padding: 4rem;
}
.ability-box {
  width: 50%;
}
.ability-box:first-child {
  margin: 0 2rem 0 0;
}
.ability-text {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 2rem;
}
.ability-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  height: 5rem;
  background-color: #4099de;
  border-radius: 10rem;
  box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 0;
  transition: all 0.12s ease-out;
}
.ability-link.m-mdq {
  background-color: #0ba29a;
}
.ability-link.m-mdc {
  background-color: #99cc00;
}
.ability-link.m-cdm {
  background-color: #0068b7;
}
.ability-link::after {
  content: "";
  position: absolute;
  right: 3rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.12s ease-out;
}
.ability-link.hover {
  background-color: #56aef2;
  box-shadow: none;
}
.ability-link.m-mdq.hover {
  background-color: #2fbab3;
}
.ability-link.m-mdc.hover {
  background-color: #b0d73b;
}
.ability-link.m-cdm.hover {
  background-color: #0096e1;
}
.ability-link span {
  margin: 0 0 0 0.5rem;
}
/* ----------------------------------------
.relation-all
---------------------------------------- */
.relation-all {
  background-color: #f6f8fa;
  padding: 6rem 4rem;
  margin: 0 0 8rem;
}
.relation-area {
  display: flex;
}
.relation-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 1.5rem;
}
.relation-title.pc-none {
  visibility: hidden;
}
.relation-title.h-none {
  visibility: hidden;
}
.relation-box {
  width: 50%;
}
.relation-box:first-child {
  margin: 0 4rem 0 0;
  padding: 0 4rem 0 0;
  border-right: 1px solid #e9ecee;
}
.relation-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.4rem;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  background-color: #b8c2c8;
  color: #fff;
  margin: 0 0 1.5rem;
}
.relation-lot {
  display: flex;
}
.relation-con {
  width: 50%;
}
.relation-con.w-100 {
  width: 100%;
}
.relation-con:first-child {
  margin: 0 2rem 0 0;
}
.relation-text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
.relation-mintext {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
}
.relation-con figure {
  margin: 0 0 2rem;
}
/* ----------------------------------------
.criterion-area
---------------------------------------- */
.criterion-area {
  border: 0.4rem solid #b8c2c8;
  padding: 6rem;
  background-color: #fff;
}
.criterion-list li {
  margin-bottom: 4rem;
}
.criterion-list li:last-child {
  margin-bottom: 0;
}
.criterion-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  color: #816021;
  margin: 0 0 1.5rem;
}
.criterion-title.vts {
  color: #0a52a8;
}
.criterion-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  max-width: 60rem;
  width: 100%;
  margin: 6rem auto 0 auto;
  height: 10rem;
  background-color: #0062ad;
  border-radius: 10rem;
  box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 0;
  transition: all 0.12s ease-out;
}
.criterion-link.c-center {
  text-align: center;
}
.criterion-link.hover {
  background-color: #0096e1;
  box-shadow: none;
}
.criterion-link::after {
  content: "";
  position: absolute;
  right: 5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all 0.12s ease-out;
}
/* ----------------------------------------
アコーディオン
---------------------------------------- */
/* トリガーの基本スタイル */
.js-accordion-trigger {
  position: relative;
  z-index: 0;
  padding: 0.5rem 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  height: 6.5rem;
  background: #f2f6f8;
  cursor: pointer;
  border-top: 1px solid #e9ecee;
}
/* ＋ー アイコンの切り替え */
.js-accordion-trigger::before {
  content: "";
  position: absolute;
  right: 2rem;
  width: 2.1rem;
  height: 0.3rem;
  background-color: #b8c2c8;
}
.js-accordion-trigger::after {
  content: "";
  position: absolute;
  right: 2rem;
  width: 2.1rem;
  height: 0.3rem;
  background-color: #b8c2c8;
  transform: rotate(90deg);
  transition: all 0.12s ease-out;
}
.js-accordion-trigger.is-active::after {
  transform: rotate(0);
}
/* コンテンツ部分（初期は非表示） */
.js-accordion-content {
  overflow: hidden;
  background: #fff;
  margin: 4rem 0 0;
  display: none;
}
/* ----------------------------------------
.saving-list
---------------------------------------- */
.saving-list {
  display: flex;
}
.saving-list li {
  width: calc(100% / 3);
  margin: 0 4rem 0 0;
}
.saving-list li:last-child {
  margin: 0;
}
.saving-box {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.saving-box figure img {
  width: 14rem;
  height: auto;
}
.saving-en {
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
  color: #0a52a8;
  margin: 2.5rem 0 0;
}
.saving-ja {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 1.5rem 0 0;
}
.saving-text {
  font-size: 1.6rem;
  line-height: 2;
  margin: 3.5rem 0 0;
  letter-spacing: 0.15rem;
}
@media (max-width: 1200px) and (min-width: 768px) {
  .saving-box figure img {
    width: 10rem;
  }
  .saving-en {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
  .saving-ja {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .saving-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 3rem;
  }
}
.saving-text span {
  font-weight: bold;
  background-color: #ffff00;
}
/* ----------------------------------------
.cost-area
---------------------------------------- */
.cost-title {
  font-size: 3.6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #238567;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  z-index: 0;
  height: 21.2rem;
}
.cost-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12.3rem;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/products/Dehydrators-Series/images/home/triangle.png");
  z-index: -1;
}
.cost-list {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto 4rem auto;
  display: flex;
}
.cost-list li {
  width: 50%;
}
.cost-list li:first-child {
  margin: 0 2rem 0 0;
}
.cost-subtitle {
  font-size: 2.4rem;
  text-align: center;
  color: #0a52a8;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f6f8;
  border-radius: 0.4rem;
  height: 12rem;
}
.cost-text {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  margin: 0 0 3rem 0;
}
.cost-text span {
  background-color: #ffff00;
}
/* ----------------------------------------
.disposal-box
---------------------------------------- */
.disposal-box {
  border: 0.4rem solid #f2f6f8;
  background-color: #f8fdff;
  padding: 4rem 7rem 3rem;
}
.disposal-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.disposal-list li {
  margin: 0 5rem 0 0;
}
.disposal-list li:first-child {
  width: 39.5%;
}
.disposal-list li:nth-child(2) {
  width: 21%;
}
.disposal-list li:last-child {
  width: 39.5%;
  margin: 0;
}
.disposal-list li figure img {
  max-width: 100%;
}
.r-notes-list {
  margin: 1.5rem 0 0;
}
.r-notes-list li {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100% !important;
}
.r-notes-list li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background-color: #333;
  margin-right: 1rem;
  border-radius: 50%;
}
.r-notes-list li:last-child {
  margin-bottom: 0;
}
/* ----------------------------------------
.notes-list
---------------------------------------- */
.notes-list {
  margin: 1.3rem 0 0;
}
.notes-list li {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.8;
}
.notes-list li:last-child {
  margin-bottom: 0;
}
.notes-list li::before {
  content: attr(data-text) "";
  margin: 0 1rem 0 0;
}
/* ----------------------------------------
.reduction-area
---------------------------------------- */
.reduction-area {
  margin: 10rem 0 0;
}
.reduction-title {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  color: #e8546b;
  line-height: 1.3;
  margin: 0 0 4rem;
}
/* ----------------------------------------
.case-area
---------------------------------------- */
.case-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 6rem;
}
.case-area.mb0 {
  margin: 0;
}
.case-box {
  width: 65rem;
  margin-right: 2rem;
}
.ds-format {
  font-size: 1.6rem;
  font-weight: bold;
  color: #5ca7e1;
  border: 1px solid #5ca7e1;
  height: 3.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14.6rem;
  margin: 0 0 2rem;
}
.case-area figure {
  border: 1px solid #e9ecee;
  margin-left: auto;
  width: 37rem;
}
.case-area figure img {
  max-width: 100%;
}
.ds-format-text {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.case-reduction-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}
.case-reduction-box {
  width: calc(100% / 2);
}
.case-reduction-box.w100 {
  width: 100%;
}
.case-reduction-box:last-child {
  margin: 0 0 0 1rem;
}
.case-reduction-box.w100:last-child {
  margin: 0;
}
.case-text {
  font-size: 1.6rem;
  line-height: 1.4;
}
.case-text span {
  font-weight: bold;
  color: #e8546b;
}
.case-title {
  margin-top: 1rem;
  font-size: 2.1rem;
  font-weight: bold;
  color: #e8546b;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fdf0f2;
  padding: 0 2rem;
  line-height: 1.4;
  height: 8rem;
  letter-spacing: 0.15rem;
}
.case-title span {
  display: inline-block;
}
/* ----------------------------------------
.industry-area
---------------------------------------- */
.industry-area {
  margin: 0 0 6rem;
}
.industry-list {
  display: flex;
  flex-wrap: wrap;
}
.industry-list li {
  width: calc(100% / 5);
  margin: 0 0 3rem;
}
.industry-list li:nth-last-child(-n + 5) {
  margin: 0;
}
.industry-list li figure {
  text-align: center;
  margin: 0 0 0.5rem;
}
.industry-list li figure img {
  width: 80%;
}
.industry-text {
  font-size: 1.4rem;
  text-align: center;
}
.industry-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 3rem;
}
.industry-title.i-slu {
  margin: 0 0 2rem;
}
/* ----------------------------------------
.support-area
---------------------------------------- */
.support-box {
  border: 0.4rem solid #b8c2c8;
  padding: 4rem;
}
.support-list {
  display: flex;
  margin: 0 0 3rem;
}
.support-list li {
  width: calc(100% / 3);
  margin: 0 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  height: 6rem;
  background-color: #b8c2c8;
}
.support-list li:last-child {
  margin: 0;
}
.support-subtitle {
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0 0 1rem;
}
.support-subtitle span {
  font-size: 4rem;
  color: #be030c;
  line-height: 1;
}
.support-text {
  font-size: 1.6rem;
  line-height: 2;
}
/* ----------------------------------------
コンテンツのスライダー
---------------------------------------- */
.facility-all {
  margin: 6rem 0 0;
}
.facility-area {
  position: relative;
  z-index: 0;
}
.facility-img-box {
  background-color: #fff;
}
.facility-img {
  display: block;
  box-shadow: 0px 7px 7px -3px rgba(0, 0, 0, 0.1);
  margin: 0 0.75rem 1rem;
}
.facility-img.hover {
  color: #0068b7;
}
.facility-img figure {
  overflow: hidden;
}
.facility-img figure img {
  transition:
    transform 0.5s ease-out,
    opacity 0.12s;
}
.facility-img.hover figure img {
  transform: scale(1.06);
  opacity: 0.8;
}
.facility-box {
  background-color: #fff;
  padding: 1.5rem 2rem;
}
.facility-title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
.facility-subtitle {
  font-size: 1.4rem;
  line-height: 1.3;
}
.slick-list {
  margin: 0 0 2.5rem;
}
/* ----------------------------------------
Branch-Topics
---------------------------------------- */
.c-branch-topics .slick-arrow {
  position: absolute;
  top: 50%;
  margin: -4rem 0 0;
  z-index: 2;
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0068b7;
  text-indent: 100%;
  overflow: hidden;
  transition: opacity 0.12s;
}
.c-branch-topics .slick-arrow:hover {
  opacity: 0.8;
}
.c-branch-topics .slick-prev::before,
.c-branch-topics .slick-next::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-branch-topics .slick-prev {
  left: -1.5rem;
}
.c-branch-topics .slick-next {
  right: -1.5rem;
}
.c-branch-topics .slick-prev::before {
  top: 1.9rem;
  right: 1.4rem;
  transform: translateY(-45%) rotate(-135deg);
}
.c-branch-topics .slick-next::before {
  top: 1.5rem;
  left: 1.3rem;
  transform: rotate(45deg);
}
.c-branch-topics .pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.c-branch-topics .pagination li.slick-active button::before {
  background-color: #0068b7;
}
.c-branch-topics .pagination li button {
  position: relative;
  width: 1rem;
  height: 1rem;
  color: transparent;
}
.c-branch-topics .pagination li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #e9ecee;
}
.c-branch-topics .more-link {
  width: 30rem;
  margin: 4rem auto 0;
}
.c-branch-topics .more-link a {
  position: relative;
  display: grid;
  place-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  min-height: 7rem;
  padding: 2rem 4rem;
  background-color: #0068b7;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition:
    box-shadow 0.12s,
    background-color 0.12s;
}
.c-branch-topics .more-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 0.8rem;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* ----------------------------------------
.system-list
---------------------------------------- */
.system-list {
  display: flex;
  margin: 0 0 12rem;
}
.system-list li {
  width: 50%;
}
.system-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 7rem;
  height: 24rem;
  background-color: #0068b7;
  transition: all 0.12s ease-out;
}
.system-list li a.hover {
  background-color: #0096e1;
}
.system-list li a.s-contact {
  background-color: #074287;
}
.system-list li a.s-contact.hover {
  background-color: #0096e1;
}
.system-list li a figure {
  margin: 0 2rem 0 0;
}
.system-list li a figure img {
  width: 9rem;
  height: auto;
}
.system-box {
  position: relative;
  z-index: 0;
}
.system-box::before {
  content: "";
  position: absolute;
  top: 50%;
  margin: -1.2rem 0 0;
  right: -3.5rem;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border-radius: 50%;
}
.system-box::after {
  content: "";
  position: absolute;
  top: 50%;
  margin: -0.3rem 0 0;
  right: -2.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform: rotate(45deg);
}
.system-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 1.5rem;
  transition: all 0.12s ease-out;
}
.system-text {
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  transition: all 0.12s ease-out;
}
/* ----------------------------------------
.expansion-area
---------------------------------------- */
.expansion-area {
  position: relative;
  z-index: 0;
  aspect-ratio: 1920 / 685;
  margin: 0 0 5.5rem;
}
.expansion-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/products/Dehydrators-Series/images/home/rental.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.expansion-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.expansion-title {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 2rem;
}
.expansion-lot {
  max-width: 58rem;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 0.4rem;
  box-shadow: 0 1rem 0.5rem -8px rgba(0, 0, 0, 0.2);
}
.expansion-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.expansion-demo {
  font-size: 3.6rem;
  color: #bd030c;
  text-decoration: underline;
  font-weight: bold;
  line-height: 1.5;
}
/* ----------------------------------------
.problems-line
---------------------------------------- */
.problems-line {
  font-size: 2.1rem;
  line-height: 1.3;
  color: #0068b7;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0 0 2.5rem;
}
.problems-line::before,
.problems-line::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: #0068b7;
  display: block;
}
.problems-line::before {
  margin: 0 3rem 0 0;
}
.problems-line::after {
  margin: 0 0 0 3rem;
}
.problems-list li {
  margin: 0 0 2rem;
  height: 11rem;
  background-color: #ecf0ee;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problems-text {
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
}
.problems-text span {
  color: #be030c;
  font-weight: bold;
}
.problems-list li:last-child {
  margin: 0;
}
/* ----------------------------------------
.p-notes-list
---------------------------------------- */
.p-notes-list {
  margin: 2.5rem 0 8rem;
}
.p-notes-list li {
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.8;
}
.p-notes-list li:last-child {
  margin-bottom: 0;
}
/* ----------------------------------------
.floating-box　アニメーション
---------------------------------------- */
.floating-box {
  width: 100%;
  padding: 0 6rem;
  z-index: 1;
  pointer-events: none; /* 非表示中はクリック不可 */
  /* アニメーションの基本設定 */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.12s ease-out,
    transform 0.12s ease-out;
}
/* 表示状態を管理するクラス */
.floating-box.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* 配置のみを管理するクラス */
.is-fixed {
  position: fixed;
  bottom: 6rem;
}
.is-stopped {
  position: absolute;
  bottom: auto;
}
/* ----------------------------------------
.inpage-nav　固定（追従）アンカーリンクナビ
---------------------------------------- */
.inpage-nav {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  background-color: #0068b7;
  height: 5.6rem;
  border-radius: 10rem;
}
.inpage-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 0.5rem 3rem;
}
.inpage-list li {
  margin-right: 3rem;
}
.inpage-list li:last-child {
  margin-right: 0;
}
.inpage-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.3;
  position: relative;
  z-index: 0;
}
.inpage-list li a::before {
  content: "";
  min-width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.5rem;
}
.inpage-list li a::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0.7rem;
  width: 0.66rem;
  aspect-ratio: 1 / 1;
  border-top: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform: rotate(45deg);
}
.inpage-list li a.hover {
  text-decoration: underline;
}
