.priceBox:not(:last-child) {
  margin-bottom: 80px;
}

/* =========================================================
tab
========================================================= */
/*タブ切り替え要素*/

.tabList {
  display: flex;
  gap: 40px;
  margin: 50px auto;
}

.tabList li {
  width: 50%;
  text-align: center;
}

.tabList li a {
  background: #f7f4ef;
  /* border-bottom: 2px solid #b86e55; */
  display: block;
  position: relative;
  padding: 10px 5px;
  font-weight: bold;
  border-radius: 6px;
}

.tabList li a:hover {
  color: #fff;
  background: #b86e55;
}

.tabList li a.active {
  color: #fff;
  background: #b86e55;
}

.tabList li a.active:after {
  content: "";
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #b86e55;
  border-width: 14px;
  margin-left: -14px;
}

@media (max-width: 1010px) {
  .tabList {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 10px;
    margin: 30px auto 25px;
  }

  .tabList li {
    width: 48.5%;
    margin-bottom: 15px;
  }

  .tabList li a {
    display: block;
    padding: 10px 5px;
  }

  .tabList li a.active:after {
    border-width: 10px;
    margin-left: -10px;
  }
}

.price .recommend {
  border: 2px solid #b86e55;
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
  margin: 50px 0 0;
}

.price .recommend ul li {
  position: relative;
  line-height: 1.8;
  margin-left: 20px;
}

.price .recommend ul li:not(:last-child) {
  margin-bottom: 10px;
}

.price .recommend ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -30px;
  width: 20px;
  height: 20px;
  background: #b86e55;
  border-radius: 50%;
  z-index: 0;
}

.price .recommend ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: -1.7em;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.price .recommend span {
  display: block;
  background: #fff;
  padding: 5px 10px;
  width: 180px;
  margin: -40px auto 10px;
  position: relative;
  text-align: center;
  color: #b86e55;
}

.price .recommend span::after {
  content: "";
  position: absolute;
  top: 1rem;
  height: 1.2em;
  border-left: solid 2px;
  left: 10px;
  transform: rotate(-30deg);
  color: #b86e55;
}

.price .recommend span::before {
  content: "";
  position: absolute;
  top: 1rem;
  height: 1.2em;
  border-left: solid 2px;
  right: 10px;
  transform: rotate(30deg);
  color: #b86e55;
}

@media (max-width: 1010px) {
  .price .recommend {
    padding: 20px;
  }

  .price .recommend ul li {
    margin-left: 10px;
  }

  .price .recommend ul li::before {
    left: -20px;
    width: 15px;
    height: 15px;
  }

  .price .recommend ul li::after {
    top: 0.6em;
    left: -1.2em;
    width: 7px;
    height: 4px;
  }
}

.plan_box {
  margin-top: 30px;
}

.plan_box .included_txt {
  position: relative;
  background: #f7f4ef;
  margin: 20px auto;
}

.plan_box .included_txt::before {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #b86e55;
}

.plan_box .included_txt span {
  background: #f7f4ef;
  position: relative;
  text-align: center;
  margin: 0 auto;
  display: table;
  padding: 0 10px;
  color: #b86e55;
  font-weight: bold;
}

.planList .itemService {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

@media (max-width: 1010px) {
  .planList .itemService {
    gap: 10px;
  }
}
.planList .itemService li:first-child {
  grid-column: span 2; /* 最初の1つだけ2列分使う（100%幅） */
}
.planList .itemService li {
  background: #b86e55;
  color: #fff;
  border-radius: 6px;
  padding: 7px 10px;
  text-align: center;
}

.planList .itemService li.no {
  background: #eee7e0 !important;
}
.planList i {
  font-size: 8rem;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  color: #b86e55;
}
/* 保守 */


.maintenanceSection .guide {
  background: #fff;
}
.diff .guide {
  margin: 0;
}
/* 「含まれるサービス」テキスト */
/* .included_txt span {
  font-weight: 700;
  color: #b86e55;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 12px;
} */

/* サービスリスト */
/* .itemService {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3b2f2f;
}

.itemService li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

/* チェックマークや否定マーク代わり 
.itemService li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b86e55;
  font-weight: 700;
}

.itemService li.no::before {
  content: "✕";
  color: #bbb;
} */
