@charset "UTF-8";

/* =====================
  セクション
===================== */
.download-section {
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 60px 20px;
  background: #f7f8fa;
  box-sizing: border-box;
	z-index: 2;
}

/* =====================
  2カラム
===================== */
.download-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =====================
  左カラム
===================== */
.download-left {
  flex: 1;
  min-width: 0;
  max-width: 690px; /* ←追加 */
}

/* =====================
  右カラム
===================== */
.download-right {
  flex: 0 0 480px; /* ←追加 */
  width: 480px;
  max-width: 480px;

  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.download-right h3{
	text-align: left;
}

/* =====================
  スライダー
===================== */
.slider {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height:auto; 
}

.slides {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 70px 20px;
}

.slide {
  width: 100%;
  height: auto;
  display: none;
  object-fit: contain;
}

.slide.active {
  display: block;
}

/* ボタン */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 6px 10px 10px 10px;
  cursor: pointer;
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

/* =====================
  サムネ
===================== */
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  width: 80px;
  cursor: pointer;
  opacity: 0.5;
}

.thumb.active {
  opacity: 1;
  border: 2px solid #2f6fec;
}

/* =====================
  タイトル
===================== */
.download-heading {
  margin-bottom: 20px;
}

.main-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
  text-align: left;
}

.sub-text {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  text-align: left;
}

/* =====================
  資料でわかること
===================== */
.download-desc {
  margin-top: 20px;
  background: #e9eff6;
  padding: 20px;
  border-radius: 10px;
}

.desc-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: left;
  color: #222;
}

.desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desc-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  align-items: center;
  color: #222;
}

/* チェックアイコン（SVG対応） */
.check-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("../../img/download_form/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* =====================
  テキスト
===================== */
.download-text {
  margin-top: 20px;
}

.text-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  color: #222;
}

.download-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #222;
  text-align: left;
}

/* =====================
  フォーム全体カード
===================== */
.download-right {
  background: #fff;
  border-radius: 12px;
  overflow: auto; /* ←これ重要（角丸効かせる） */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 0; /* ←余白は中で管理 */
}

/* =====================
  ヘッダー
===================== */
.form-header {
  background: #e9eff6;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.form-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #222;
}

.form-sub {
  font-size: 13px;
  color: #222;
  line-height: 1.6;
  text-align: left;
}

/* =====================
  フォーム中身
===================== */
.form-body {
  padding: 0 10px 30px 10px;
}

/* =====================
  フォーム
===================== */
#senses-webform-O78z1uEmzqd6 {
  width: 100%;
}

/* =====================
  SP
===================== */
@media (max-width: 768px) {
  .download-inner {
    flex-direction: column;
  }

  .download-right {
    width: 100%;
	height: auto;
	margin: 0 auto;
	overflow: auto;
  }
	
	.download-left {
  flex: 1;
  width: 95%;
  margin: 0 auto;
}
	
.download-right {
  width: 100%;
  margin: 0 auto;
  
}
	
	
}