/**
* 溶剤回収装置
*/

.description-area-y {
  display: flex;
  flex-direction: column;
}

.description-area-y__wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url(/us/.assets/youzai_back01.png);
  background-size: cover;
  padding-bottom: 70px;
}

.description-area-y__inner {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
}
.description-area-y__ext {
  padding-top: 40px;
  text-align: center;
}
.description-area-y__ext p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  display: inline !important;
}
.description-area-y__extmb {
  padding-top: 40px;
}
.description-area-y__extmb p {
  font-size: 16px;
  font-weight: bold;
  display: none !important;
}
@media (max-width: 1036px) {
  .description-area-y__inner {
    width: 320px;
    margin: 0 auto;
  }
  .description-area-y {
    flex-direction: column;
  }
  .description-area-y__ext p {
    display: none !important;
  }
  .description-area-y__extmb p {
    display: inline !important;
  }
}
.youzai-page .image-area-k__title {
  margin-top: 3rem;
}
.youzai-page .heading3 {
  font-size: 19px;
  font-weight: bold;
  margin: 1rem 0;
}

/* 画像を含む親要素 */
.youzai-page .image-container {
  position: relative;
  width: 100%;
}

/* モーションボタンのラッパー */
.youzai-page .motion-btn-wrapper {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
}

/* 溶剤回収装置のモーションボタン */
.youzai-page .motion-btn-wrapper.youzai {
  top: calc(18%);
  left: calc(28% + 85px);
  transform: translate(-50%, -50%);
}

/* 主反応（機器）のモーションボタン */
.youzai-page .motion-btn-wrapper.link-01 {
  top: 17%;
  left: 44%;
  transform: translate(-50%, -50%);
}

/* 乾燥1（上部）のモーションボタン */
.youzai-page .motion-btn-wrapper.link-02 {
  top: 16%;
  left: 62.5%;
  transform: translate(-50%, -50%);
}

/* 乾燥2（上部）のモーションボタン */
.youzai-page .motion-btn-wrapper.link-03 {
  top: 27%;
  left: 62.5%;
  transform: translate(-50%, -50%);
}

/* 混練･造粒･粉砕のモーションボタン */
.youzai-page .motion-btn-wrapper.link-04 {
  top: 21.5%;
  left: 87%;
  transform: translate(-50%, -50%);
}

/* 乾燥1（下部）のモーションボタン */
.youzai-page .motion-btn-wrapper.link-05 {
  top: 61%;
  left: 44.5%;
  transform: translate(-50%, -50%);
}

/* 乾燥2（下部）のモーションボタン */
.youzai-page .motion-btn-wrapper.link-06 {
  top: 72%;
  left: 44.5%;
  transform: translate(-50%, -50%);
}
/* モーションボタン本体 */
.youzai-page .motion-btn {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* リップルエフェクト */
.youzai-page .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #e4007f;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ripple 1.5s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* circle-linkの位置を相対位置に設定 */
.circle-link {
  position: relative;
  z-index: 1;
}

/* 画像上のリンク用の円 */
.youzai-page .circle-link {
  position: absolute;
  top: 15%;
  left: 28%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid red;
  cursor: pointer;
  transition: background-color 0.3s;
}
.youzai-page .circle-link:hover {
  background-color: rgba(255, 0, 0, 0.2);
}
.youzai-page .button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 3rem;
  width: 100%;
  max-width: 500px;
}
.youzai-page .button-container .button {
  flex: 1;
  min-width: 200px;
  display: block;
  padding: 10px 0;
  border-radius: 50px;
  border-width: 0px;
  color: #00437c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  font-size: 0.85rem;
  font-weight: normal;
  text-align: center;
}
.youzai-page .button-container .button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #0082c7 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}
.youzai-page .button-container .button::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #f7f7f7;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}

.youzai-page .button-container .button:hover {
  border: none;
  color: #ffffff;
}
.youzai-page .button-container .button:hover::after {
  opacity: 0;
}
.youzai-page .column-heading-y {
  color: #d85587;
  font-size: 20px;
  font-weight: bold;
}
.youzai-page .list {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 3rem;
}
.youzai-page .description-list a {
  text-decoration: underline #0082c7;
  color: #0082c7;
}
.youzai-page .description-list a:hover {
  color: white;
  background-color: #0082c7;
}
.youzai-page .heading4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 2rem;
}
.youzai-page .heading4 a {
  text-decoration: underline #0082c7;
  color: #0082c7;
}
.youzai-page .heading4 a:hover {
  color: white;
  background-color: #0082c7;
}
.youzai-page .image-area-y {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fef8fb;
  padding-bottom: 30px;
}
.youzai-page .y-floor-map-area__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-color: #fef8fb;
  background-blend-mode: lighten;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.youzai-page .y-floor-map-area__inner {
  width: 1180px;
  max-width: 1000px;
  text-align: center;
  margin: 50px 0 0;
  font-size: 20px;
  font-weight: bold;
}
.youzai-page .image-area-y__sub-title {
  text-align: center;
  color: #d85587;
}
/* 画像上のリンク用の円 */
.youzai-page .square-link {
  position: absolute;
  cursor: pointer;
  transition: background-color 0.3s;
}
/** 主反応（機器） */
.youzai-page .square-link.link-01 {
  top: 17%;
  left: 37.75%;
  width: 68px;
  height: 79px;
}
/** 乾燥1（上部） */
.youzai-page .square-link.link-02 {
  top: 16%;
  left: 56%;
  width: 63px;
  height: 32px;
}
/** 乾燥2（上部） */
.youzai-page .square-link.link-03 {
  top: 27%;
  left: 56%;
  width: 63px;
  height: 32px;
}
/** 混練･造粒･粉砕 */
.youzai-page .square-link.link-04 {
  top: 21.5%;
  left: 73.5%;
  width: 138px;
  height: 34px;
}
/** 乾燥1（下部） */
.youzai-page .square-link.link-05 {
  top: 61%;
  left: 38%;
  width: 63px;
  height: 32px;
}
/** 乾燥2（下部） */
.youzai-page .square-link.link-06 {
  top: 72%;
  left: 38%;
  width: 63px;
  height: 32px;
}
/** 混練・反応 */
.youzai-page .square-link.link-07 {
  top: 62%;
  left: 4%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: none;
}
/** 粉砕・造粒 */
.youzai-page .square-link.link-08 {
  top: 62%;
  left: 13.8%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: none;
}
.youzai-page .square-link:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

.youzai-page .image-area-y .button-container {
  flex-direction: row;
  width: 100%;
}

.youzai-page .image-area-y2 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fdebf4;
  padding-bottom: 30px;
}
.youzai-page .image-area-y2 .col-2-container {
  margin: 3rem 0;
  display: flex;
  gap: 3rem;
}
.youzai-page .image-area-y2 .image-container {
  margin-bottom: 2rem;
}
.youzai-page .image-area-y3 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fef8fb;
  padding-bottom: 30px;
}
.youzai-page .image-area-y3 .col-2-container {
  margin: 3rem 0;
  display: flex;
  gap: 3rem;
}
.youzai-page .image-area-y3 .image-container {
  margin-bottom: 2rem;
}
.youzai-page .image-area-y3 .heading3 {
  color: white;
  background-color: #d73472;
  padding: 0.7rem;
}
.youzai-page .image-area-y4 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fdebf4;
  padding-bottom: 30px;
}
.youzai-page .image-area-y4 .col-2-container {
  margin: 3rem 0;
  display: flex;
  gap: 3rem;
  width: 100%;
}
.youzai-page .image-area-y4 .col-2-container .item:nth-child(1) {
  flex: 6;
}
.youzai-page .image-area-y4 .col-2-container .item:nth-child(2) {
  flex: 4;
}
.youzai-page .image-area-y4 .col-2-container .item:nth-child(2).flex-column {
  display: flex;
  align-items: center;
}
.youzai-page
  .image-area-y4
  .col-2-container
  .item:nth-child(2)
  .button-container {
  width: 100%;
  flex-direction: column;
}
.youzai-page .image-area-y5 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fef8fb;
  padding-bottom: 30px;
}
.youzai-page .image-area-y5 .button-container {
  margin: 1.5rem 0 3rem auto;
  width: 300px;
}
@media (max-width: 768px) {
  .youzai-page .y-floor-map-area__container {
    overflow: auto;
    width: 90%;
    margin: 0 auto 70px;
  }
  .youzai-page .image-area-y2 .col-2-container,
  .youzai-page .image-area-y3 .col-2-container,
  .youzai-page .image-area-y4 .col-2-container {
    flex-direction: column;
  }
  .youzai-page
    .image-area-y4
    .col-2-container
    .item:nth-child(2)
    .button-container {
    width: 100%;
    flex-direction: row;
  }
  .youzai-page .image-area-y5 .button-container {
    display: flex;
    justify-content: center;
  }

  .youzai-page .button-container {
    flex-direction: column;
    width: 62.5%;
  }

  .youzai-page .button-container .button {
    min-width: unset;
  }
}
