/* 料金 */
.plan ul {
  display: flex;
  margin: 30px 0;
  /* 子要素（li）を均等に配置（margin: autoの代わり） */
  justify-content: space-between; 
  padding: 0;
  list-style: none;
}

.plan ul li {
  width: 30%;
  /* margin: auto; は削除します */
  position: relative;
  background: #604126;
  padding: 5% 1%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  
  /* 高さを揃えた上で、中身を縦横中央揃えにする設定 */
  display: flex;
  align-items: center;      /* 縦方向の中央揃え */
  justify-content: center;  /* 横方向の中央揃え */
  box-sizing: border-box;   /* paddingによるサイズ肥大化を防止 */
}

.plan ul li::after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -11%; /* 幅や余白に合わせて位置を微調整してください */
  color: #604126;
  font-size: 24px; /* 必要に応じてプラスのサイズを調整 */
}

.plan ul li:last-of-type::after {
  display: none;
}

.plan-txt {
  border: 2px solid #E9DCC5;
  padding: 2%;
}
.plan-txt p {
  font-size: 18px;
  text-align: center;
  color: #604126;
  font-weight: bold;
}
.plan-txt .plan ul {
  margin: 20px 0;
}
.plan-txt .plan ul li {
  background: #c1886c;
}
.plan-txt .txt {
  font-size: 26px;
  text-align: center;
  color: #604126;
  font-weight: bold;
}

/* 早撮りキャンペーン */
.hayadori {
  background: #cbfffc;
  padding: 2%;
  position: relative;
}
.hayadori .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding: 10px 20px;
  border-top: 2px solid #2eacff;
  border-bottom: 2px solid #2eacff;
  width: fit-content;
  margin: auto;
}
.hayadori .title span {
  padding: 5px;
  background: #fff;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: bold;
  font-size: 28px;
  color: #2eacff;
}
.hayadori .title02 {
  margin-top: 10px;
  text-align: center;
  font-size: 28px;
}
.hayadori .title03 {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.hayadori .img {
  position: absolute;
  width: 20%;
  top: 10px;
}
.hayadori .img01 {
  left: 10px;
}
.hayadori .img02 {
  right: 10px;
  margin-bottom: 20px;
}
.hayadori .txt {
  text-align: center;
  font-size: 18px;
}
.hayadori .txt span {
  font-size: 30px;
  color: #874400;
}
.fwb {
  font-weight: bold;
}
.hayadori ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.hayadori ul li {
  width: 23%;
  background: #fff;
  padding: 1%;
  box-sizing: border-box;
  font-size: 18px;
  
  /* 中身を縦中央に揃える設定 */
  display: flex;
  align-items: center;     /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え（不要なら削除してください） */
  text-align: center;      /* 改行されたテキスト用 */
}

@media (max-width: 1024px){
  .plan ul li {
    font-size: 14px;
  }
  .hayadori .img {
    width: 15%;
  }
}

@media (max-width: 599px){
  .plan-h3 {
    margin-top: 30px;
  }
  .plan-txt p {
    font-size: 16px;
  }
  .plan ul li::after {
    right: -14%;
  }
  .plan-txt .txt {
    font-size: 20px;
  }
  .hayadori {
    margin-top: 50px;
    padding: 15% 5%;
  }
  .hayadori .title {
    font-size: 20px;
  }
  .hayadori .title span {
    font-size: 22px;
  }
  .hayadori .title02 {
    font-size: 20px;
  }
  .hayadori .title03 {
    font-size: 16px;
  }
  .hayadori .txt span {
    font-size: 24px;
  }
  .hayadori ul li {
    width: 48%;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .hayadori .img01 {
    top: -30px;
  }
  .hayadori .img02 {
    bottom: -30px;
    top: initial;
  }
}
