/* -----------------------------
  rakusta 資料請求ページ
----------------------------- */
.rakusta-page-header {
  padding: 40px 20px;
  text-align: center;
}

.rakusta-page-title {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 24px;
}

.rakusta-page-title__icon {
  width: 100px;
  height: 104px;
}

.rakusta-page-title__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}


.rakusta-page-title__main {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 5px;
  color: #333;
  margin: 0;
}

.rakusta-page-title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #333;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rakusta-page-title__icon {
    width: 67px;
    height: 70px;
  }

  .rakusta-page-title__main {
    font-size: 48px;
  }

  .rakusta-page-title__sub {
    font-size: 12px;
  }
}

.rakusta-request {
  padding: 0 0 80px 0;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #333;
}

.rakusta-request__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  align-items: flex-start;
}

.rakusta-request__left {
  flex: 1.2;
}

.rakusta-request__right {
  flex: 1;
  box-sizing: border-box;
  padding: 40px;
  background: rgba(248, 248, 248, 1);
}


.rakusta-request__left-banner img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.rakusta-request__banners {
  display: flex;
  gap: 12px;
}

.rakusta-request__banner-item {
  position: relative;
  cursor: pointer;
}

.rakusta-request__banner-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  background: rgba(5, 5, 5, 0.5);
  background-image: url('https://www.cubic-corp.co.jp/wp-content/uploads/2025/05/union.png');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;

  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.zoom-icon:hover {
  background-color: rgba(0, 0, 0, 0.75);
  transform: scale(1.1);
  transition: all 0.2s ease;
}


.rakusta-request__left-description {
  background: rgba(248, 248, 248, 1);
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
}



.rakusta-request__left-description-inner {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.rakusta-request__left-description-title {
  display: flex;

  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid #D9D9D9;

}


.rakusta-request__left-description-title p {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
}

.rakusta-request__left-description-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rakusta-request__left-description-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0%;
  vertical-align: middle;

}

.rakusta-request__left-description-list li::before {
  content: "✔";
  color: #E60033;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .rakusta-request__container {
    display: block;
  }

  .rakusta-request__left-description {
    margin: 20px 0;

  }
}

.rakusta-thanks {
  max-width: 1000px;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
}

.rakusta-thanks p {
  margin-bottom: 16px;
}

.rakusta-thanks__button {
  padding: 8px 24px;
  font-size: 14px;
  padding-left: 24px;
  border-radius: 6px;
  margin-top: 8px;
  display: inline-block;
  background: #e50051;
  color: #fff;
}

.rakusta-thanks__button:hover {
  opacity: 0.8;
  transition: 0.3s;
  color: #fff;
}