.pamphlet {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.pamphlet p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.pamphlet-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #192D82;
  margin: 0 0 40px;
}

@media (max-width: 768px) {
  .pamphlet-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

.pamphlet-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto 40px;
}

.pamphlet-pdf-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 48px;
}

.pdf-btn {
  width: 260px;
  padding: 16px 48px 16px 28px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pdf-btn::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.pdf-btn.view {
  background-color: #F39800;
}

.pdf-btn.download {
  background-color: #E65C00;
}

.pdf-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pamphlet-pdf-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .pdf-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.btn_box {
  width: 100%;
  margin: 0 auto 40px; 
}

.btn_box ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn_box ul li {
  width: 480px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .btn_box ul li {
    width: 100%;
  }
}

.btn_box ul li a {
  width: 100%;
  height: 88px; 
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 14px;
  border-radius: 14px;
  background: #FFEB00; 
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.2s;
}

@media (max-width: 767px) {
  .btn_box ul li a {
    height: 72px;
  }
}

.btn_box ul li a p {
  font-size: 22px;
  font-weight: 700;
  color: #192D82; /* 青文字 */
  margin: 0;
}

@media (max-width: 767px) {
  .btn_box ul li a p {
    font-size: 18px;
  }
}

.btn_box ul li a::after {
  content: "→";
  position: absolute;
  right: 28px;
  font-size: 22px;
  font-weight: 700;
  color: #192D82;
}

@media (hover) {
  .btn_box ul li a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .pamphlet-pdf-buttons {
    gap: 0;
  }
}



