*, *::before, *::after {
  box-sizing: border-box;
}
.architect-plans-wrap .plans {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: normal;
  overflow: hidden;
}

.foot_plan .plan {
  width: calc(33.333% - 20px);
  background: #ffffee;
  border: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.architect-plans-wrap .plan:hover {
  transform: translateY(-5px);
}

.planName {
  background-color: #17bf17;
  color: white;
  padding: 10px;
  font-size: 1.8em;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
	font-family: bananaslip, sans-serif;
}

.image_plan_thumb {
	position: relative;
}

.material {
  padding: 10px;
  flex-grow: 1;
}

.price {
	display: flex;
	align-items: flex-end;
}

.price p{
  font-size: 3.8rem;
  color: #17bf17;
	line-height: 100%;
	margin-left: 10px;
	margin-right:10px;
}

.price p span{
  color: #17bf17;
	padding-left: 10px;
}

.price span{
  font-size: 1.3rem;
  color: #666;
}
.price p.nyoro {
	font-size: 1.8rem;
	margin-left: 5px;
}
.design {
	padding-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.design img {
  max-width: 80px;
  height: auto;
  border-radius: 50%;
	margin-right: 10px;
}

.design p {
	font-size: 2.2rem;
	color: #17bf17;
	line-height: 120%;
}

.design:before {
    content: "DESIGN";
    display: inline-block;
    background-color: #17bf17;
    padding: 3px 5px;
    color: #ffffee;
    position: absolute;
    top: 20px;
    left: 0px;
    font-family: bananaslip, sans-serif;
    font-size: 1.1rem;
}

.new a > div > div.image_plan_thumb:before {
    content: "NEW";
    position: absolute;
    display: block;
    background-color: #F00;
    width: 35px;
    text-align: center;
    color: #FFF;
    top: 10px;
    left: 10px;
    font-size: 1.1rem;
}
@media (max-width: 1048px) {
  .foot_plan .plan {
    width: calc(50% - 20px); 
  }
}

@media (max-width: 768px) {
	.foot_plan .plans {
	  width: auto;
		padding: 20px 20px;
	}
  .foot_plan .plan {
    width: 100%;
  }
}
.tag-type-wrapper{
  padding-bottom:5px;
}
.tag-type-wrapper span {
    margin: 0 5px 5px 0;
    padding: 5px 10px 3px;
    width: auto;
    display: inline-block;
    border:1px solid #AA9C71;
    border-radius: 20px;
    background-color: #AA9C71;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}
.tag-type-wrapper span.tag-type__point  {
    border:1px solid #AA9C71;
    background-color: #ffffffff;
    color: #AA9C71;
}