@charset "UTF-8";


.spc_tit {
  background: linear-gradient(0deg, #e01c5e 0px, #e01c5e 1px, transparent 1px, transparent 4px,#e01c5e 4px, #e01c5e 5px) left bottom / 100% 5px no-repeat;
  color: #e01c5e;
}

.spc_comment {
  width: 90%;
  border-top:#e01c5e solid 2px;
  margin: 32px auto 0;
  padding-top: 24px;
}
  
.spc_comment_tit {
  background: linear-gradient(transparent 70%, rgba(200,149,150,0.5) 0%);
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
}

.spc_comment_txt { text-align: left; }


/*
------------------------------------------------------------------------------------*/
.spc34_wrap {
  background: #e6e6e6;
  color: #e01c5e;
  text-align: center;
}
 
/* spc_content1 */
.spc34_content1 {
  margin: 0;
  padding: 0 10px;
}
  
.spc34_content1_title {
  background: #eedfe4;
  border-top: #d4145a solid 2px;
  border-bottom: #d4145a solid 2px;
  font-size: 1.6rem;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 2.4rem;
  margin: 8px 0 -4px;
  padding: 6px 0;
}

.spc34_content1_txt {
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.2rem;
  margin-top: 16px;
}
  
.spc34_content1_point {
  width: 95.2%;
  background-color: rgba(242,220,219,0.5);
  border: solid 1px #e01c5e;
  border-radius: 8px;
  margin: 24px auto 0;
  padding: 14px 8px 12px; 
}
  
.spc34_content1_point_title {
  font-size: 1.5rem;
  font-weight: bold;
}
  
.spc34_content1_point_list {
  border-top: #d87398 dotted 1px;
  border-bottom: #d87398 dotted 1px;
  font-size: 1.4rem;
  text-align: left;
  list-style: none;
  counter-reset: my-counter;
  margin: 10px 4px 0;
  padding: 8px 8px 12px;
  position: relative;
}
  
.spc34_content1_point_list li {
  font-size: 1.4rem;
  line-height: 1.7rem;
  margin-top: 5px;
  padding-left: 19px;
}
  
.spc34_content1_point_list li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  width: 16px;
  height: 16px;
  border: #e01c5e solid 1px;
  border-radius: 50%;
  color: #e01c5e;
  font-size: 1.3rem;
  line-height: 1.7rem;
  text-align: center;
  display: inline-block;
  position: relative;
  top: 0px;
  margin: 0 4px 0 -20px;
  padding-left: 1px;
}
  
.spc34_content1_point_txt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  margin-top: 14px;
}
  
/* spc_content2 */
.spc34_content2 h2 {
  border-top: #ccc solid 1px;
  margin-top: 32px;
  padding-top: 16px;
}
  
.spc34_content2_spec {
  width: 90%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 8px auto -4px;
}
  
.spc34_content2_spec li {
  width: 50%;
  border: 1px solid #e01c5e;
  color: #e01c5e;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;  
  padding: 6px 0 4px;
} 
.spc34_content2_spec li:nth-of-type(n+3) {
  border-top: none;
}
.spc34_content2_spec li:nth-of-type(odd) {
  border-right: none;
}

.spc34_content2_img {
  width: 64%;
  margin: -4px auto 0;
}
  
.spc34_content2_txt {
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.2rem;
  margin-top: 16px;
  padding: 0 10px;
}
  
/* 購入ボタン */
.spc34_content2_btn {
  width: 80%;
  background: #34727B;
  border-radius: 8px;
  color: #fff;  
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0 10px;
  margin: 24px auto 0;
  
  box-shadow: 0 0 0 0 rgb(52 114 123 / 70%); /* ボタンの色をRGB化 */
  -webkit-animation: pulse 1.25s cubic-bezier(.66,0,0,1) infinite;
  animation: pulse 1.25s cubic-bezier(.66,0,0,1) infinite;
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 4px rgba(52, 114, 123, 0); /* ボタンの色をRGB化 */
  }
}
.spc34_content2_btn span {
  font-size: 1rem;
  font-weight: normal;
  display: block;
  margin: 1px 0 3px;
}
.spc34_content2_btn_click {
  position: absolute;
  top: -4px;
  right: -16px;
  transform: rotate(15deg);
  color: #222; /* CLICK!の文字色 */
  text-shadow: 2px 2px 0 #fff; /* CLICK!の文字の影色 */
}
  
.spc34_content2_btn li a:link,
.spc34_content2_btn:visited {
  color:#fff;
}