.intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.intro__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 7px 13px;
  background: rgba(2, 2, 229, 0.08);
  color: #0202e5;
  border: 1px solid rgba(2, 2, 229, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

.intro h2 {
  margin: 0 0 16px;
  color: #101828;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.intro__lead {
  margin: 0 0 22px;
  color: #344054;
  line-height: 1.9;
  font-size: 15px;
}

.intro__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.intro__point {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(2, 2, 229, 0.1);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(18, 32, 74, 0.08);
  backdrop-filter: blur(10px);
}

.intro__point span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 3px 9px;
  background: #f2f4ff;
  color: #0202e5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
}

.intro__point strong {
  display: block;
  color: #101828;
  font-size: 17px;
  line-height: 1.45;
  font-family: sans-serif;
  font-weight: bold;
}

.intro__btns {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #0202e5 0%, #2658ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 10px 24px rgba(2, 2, 229, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.intro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 2, 229, 0.34);
  opacity: 0.95;
}

.intro__btns a:link {
  color: #fff;
  font-size: 14px;
}

.intro__btns a:visited {
  color: #fff;
}

.intro__btn--sub {
  background: rgba(255,255,255,0.86);
  color: #0202e5;
  border: 1px solid rgba(2, 2, 229, 0.22);
  box-shadow: 0 8px 20px rgba(18, 32, 74, 0.08);
}

.intro__side {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(2, 2, 229, 0.12);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(18, 32, 74, 0.10);
  backdrop-filter: blur(12px);
}

.intro__side h3 {
  margin: 20px 0 14px;
  color: #0202e5;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: none;
  padding-bottom:0;
}

.intro__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro__list li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  color: #344054;
  line-height: 1.65;
  font-size: 14px;
}

.intro__list li:last-child {
  border-bottom: none;
}

.intro__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #0202e5;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width:1200px){

  .intro{
    margin:18px auto 34px;
    border-radius:20px;
  }

  .intro::before{
    inset:8px;
    border-radius:16px;
  }

  .intro__inner{
    grid-template-columns:1fr;
  }

  .intro__point strong{
    font-size:14px;
  }

  .intro__btn{
    width:100%;
    min-width:auto;
  }

  .intro__side{
    padding:18px;
  }

}




/* ==========  セクション直下のメインイメージ ============================= */
/* .plan-description img：各セクション冒頭の説明用画像 */

@media screen and (min-width: 768px) {
    .plan-description {
        margin-bottom: 30px;
    }
}

.plan-description img {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  max-height: 400px;
  /* 装飾 */
  border-radius: 12px;                 /* 角丸 */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15); /* ドロップシャドウ */
}
@media screen and (max-width: 768px) {
  .plan-description img { max-width: 100%; }
}

/* カード（.point-item）内に配置される小さめの .plan-description 画像 */
.point-item .plan-description { margin: 0.5rem 0; text-align: center; }
.point-item .plan-description img {
  width: 100%;
  max-width: 230px;                   /* カード内の最大幅 */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  object-fit: contain;
}
@media (max-width: 767px) {
  .point-item .plan-description img{
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
}


/* テンプレート利用～印刷までの流れ*/

.order-flow-section{
	margin:40px 0;
}

.order-flow-box{
	display:flex;
	flex-wrap:wrap;
	gap:15px;
	margin-top:20px;
}

.order-flow-step{
	position:relative;
	flex:1;
	min-width:180px;
	padding:20px 15px;
	border:1px solid #d9d9d9;
	border-radius:8px;
	background:#fff;
	box-sizing:border-box;
}

.order-flow-step::after{
	content:"▶";
	position:absolute;
	right:-12px;
	top:50%;
	transform:translateY(-50%);
	color:#0202e5;
	font-size:20px;
	font-weight:bold;
}

.order-flow-step:last-child::after{
	display:none;
}

.order-flow-num{
	display:flex;
	align-items:center;
	justify-content:center;
	width:34px;
	height:34px;
	border-radius:50%;
	background:#0202e5;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	margin-bottom:12px;
}

.order-flow-step h3{
	margin:0 0 10px;
	padding:0;
	border:none;
	font-size:16px;
	font-weight:bold;
	line-height:1.4;
	color:#0202e5;
}

.order-flow-step p{
	margin:0;
	font-size:14px;
	line-height:1.8;
}

/* タブレット */

@media screen and (max-width:1024px){

	.order-flow-step{
		min-width:calc(50% - 8px);
	}

	.order-flow-step::after{
		display:none;
	}
}

/* スマホ */

@media screen and (max-width:767px){

	.order-flow-box{
		display:block;
	}

	.order-flow-step{
		width:100%;
		margin-bottom:15px;
	}

	.order-flow-step:last-child{
		margin-bottom:0;
	}

	.order-flow-step::after{
		content:"▼";
		display:block;
		position:static;
		transform:none;
		text-align:center;
		margin-top:12px;
		color:#0202e5;
	}

	.order-flow-step:last-child::after{
		display:none;
	}
}
