.fare-option {
  border: 2px solid #BB7A62;
  padding: 3%;
  border-radius: 14px;
  position: relative;
  width: fit-content;
  margin: 0 auto 60px;
}

.fare-option-more {
  position: absolute;
  top: -2%;
  left: -2%;
  font-size: 23px;
  font-weight: bold;
  width: 97px;
  height: 97px;
  border-radius: 50%;
  background-color: #F9F55B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fare-option::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "+";
  font-size: 47px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #BB7A62;
  color: #fff;
  font-weight: bold;
}

.fare-option-toptext {
  margin-top: 35px;
}

.fare-option-title {
  padding-top: 1rem;
}

.fare-option-title span {
  color: #4B4F5E;
  font-size: .7em;
}

.fare-option-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

.fare-option-item {
  width: 230px;
  border-radius: 7px;
  min-width: 215px;
}
.fare-option-item.ruby{
  border: 2px solid #BB6262;
}
.fare-option-item.sapphire{
  border: 2px solid #627DBB;
}
.fare-option-item.diamond{
  border: 2px solid #BBAC62;
}

.fare-option-item-title {
  color: #fff;
  font-family: "游明朝", YuMincho, serif;
  font-size: 24px;
  font-weight: bold;
  padding: 1rem 0;
}

.ruby .fare-option-item-title {
  background-color: #BB6262;
}
.sapphire .fare-option-item-title {
  background-color: #627DBB;
}
.diamond .fare-option-item-title {
  background-color: #BBAC62;
}

/* .fare-option-item-contents {
  display: flex;
} */

.fare-option-item-contents-text-wrapper {
  background-color: #fff;
  border-radius: 0 0 7px 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
  gap: .5rem 0;
  flex: 1;
}

.fare-option-option-price {
  color: #DB3C4C;
  font-size: 40px;
  font-weight: bold;
}

.fare-option-option-price:first-child {
  position: relative;
  color: #4b4f5e;
  font-size: 1.5em;
  margin-bottom: 30px;
}

.fare-option-option-price:first-child::before {
  content: url(../images/option_plan/price_arrow.png);
  position: absolute;
  bottom: -30px;
  transform: translate(10px, 10px) scale(0.5);
}
.fare-option-option-price:first-child::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  border-bottom: 3px solid #DB3C4C;
  width: 90px;
  transform: rotate(-10deg);
}

.fare-option-option-price span {
  font-size: 0.7em;
}

.fare-option-option-price span:nth-child(2) {
  font-size: 12px;
}

.fare-option-item-contents-text {
 font-size: 15px;
 line-height: 1.3rem;
}

.fare-option-precoution {
  text-align: right;
  font-size: 15px;
}

.fare-option-btn {
  width: 592px;
  border-radius: 10px;
  margin: 40px auto 0;
}

@media screen and (max-width: 1303px) {
  .fare-option-option-price {
    font-size: 38px;
  }

  .fare-option-option {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

.fare-option-item-contents {
  flex-direction: column;
}

.fare-option-item-contents-img {
  width: 100%;
}

.fare-option-option-price:first-child {
  margin-bottom: 20px;
}

.fare-option-item-contents-text-wrapper {
    padding: 20px 5%;
    gap: 1rem 0;
}

}
@media (max-width: 768px) {
  .fare-option {
    margin: 0 5% 40px;
  }

  .fare-option::before {
    font-size: 24px;
    width: 39px;
    height: 39px;
  }

  .fare-option-more {
    top: -1%;
    left: -1%;
    font-size: 13px;
    width: 50px;
    height: 50px;
  }

  .fare-option-title {
    padding-bottom: 20px;
  }

  .fare-option-item-title {
    font-size: 18px;
  }

  .fare-option-btn {
    width: 100%;
    padding: 0;
  }

  .fare-option-item-contents-text {
    font-size: 14px;
  }

 .fare-option-precoution {
   font-size: 12px;
 }
}