.priceOuter {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #D31A1A;
}

.priceP {
  font-size: 1.6rem;
  font-weight: bold;
  color: #D31A1A;
}

.couponExample {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 15px;
}

.exampleBox {
  width: 80px;
  border: solid 3px #3FA9F5;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  flex-shrink: 0;
}

.exampleText {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 1;
}

.typeTableWrap {
  white-space: nowrap;
  overflow-x: auto;
}

.typeTable {
  width: 100%;
}

.typeTableHead {
  background-color: #F5F5F5;
  border: 1px solid #C8C8C8;
  padding: 10px;
  text-align: center;
  /*&:nth-of-type(2) {
    width: 23.814%;
  }*/
}
.typeTableHead:nth-of-type(1) {
  width: 16%;
}
.typeTableHead:nth-of-type(4) {
  width: 16%;
}

.typeTableRowNormal {
  background-color: #FFF2F2;
}

.typeTableRowSpecial {
  background-color: #F1FBFF;
}

.typeTableDetailCenter {
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border: 1px solid #C8C8C8;
}

.nomalCenter {
  text-align: center;
}

.typeTableDetail {
  padding: 10px;
  border: 1px solid #C8C8C8;
}

.wayListItem {
  display: grid;
  gap: 20px;
}
.wayListItem:not(:last-of-type) {
  margin: 0 0 50px;
}

.wayListTitle {
  background-color: #DCF0FF;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 0 26px;
  /*
  padding: 10px;
  @include m.mq960 {
    padding: 11px 18px;
  }*/
}

.wayListTitleMain {
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #3FA9F5;
  color: #fff;
  padding: 10px;
  flex-shrink: 0;
}

.wayListTitleSub {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 10px;
}

.wayListLink {
  color: #083e8e;
  border-bottom: solid 1px #083e8e;
}
.wayListLink:hover {
  border-bottom: none;
}

.wayListAlert {
  background-color: #F5F5F5;
  padding: 15px;
}

.wayListAlertTitle {
  font-size: 16px;
  font-weight: bold;
}

.wayListPic {
  width: 80%;
  margin-inline: auto;
}

.wayListBus {
  counter-reset: wayListBus;
  margin: 0 0 20px;
}

.wayListBusItem {
  background-color: #E8EEFF;
  display: flex;
  align-items: center;
}
.wayListBusItem::before {
  content: counter(wayListBus);
  counter-increment: wayListBus;
  align-self: stretch;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0639BD;
  color: #fff;
  min-height: 30px;
  margin: 0 14px 0 0;
}
.wayListBusItem:not(:last-of-type) {
  margin: 0 0 38px;
  position: relative;
}
.wayListBusItem:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 15px);
  background-color: #FFAA00;
  width: 26px;
  aspect-ratio: 26/10;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.wayListBusText {
  padding: 10px 0;
  line-height: 1.4;
  font-weight: bold;
}

.wayListBusImg {
  width: 100%;
}
.wayListBusImg img {
  margin-left: auto;
  margin-right: auto;
}

.moreBtn {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  padding: 20px;
  font-size: 1.6rem;
  background-color: #3FA9F5;
  position: relative;
}
.moreBtn::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  right: 28px;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
@media (min-width: 641px) {
  .wayListBr {
    display: none;
  }
}
@media (min-width: 960px) {
  .price {
    font-size: 2.4rem;
  }
  .priceP {
    font-size: 1.8rem;
  }
  .exampleText {
    font-size: 2.4rem;
    margin-top: -2px;
  }
  .typeTableWrap {
    white-space: normal;
  }
  .typeTableHead {
    padding: 14px;
  }
  .typeTableDetailCenter {
    padding: 20px 14px;
  }
  .typeTableDetail {
    padding: 20px 14px;
  }
  .wayListItem:not(:last-of-type) {
    margin: 0 0 100px;
  }
  .wayListItem {
    gap: 10.1695%;
  }
  .wayListTitleMain {
    font-size: 1.8rem;
    padding: 11px 18px;
  }
  .wayListTitleSub {
    font-size: 1.8rem;
    padding: 11px 20px;
  }
  .wayListAlert {
    padding: 22px;
  }
  .wayListAlertTitle {
    font-weight: 18px;
  }
  .wayListPic {
    width: auto;
    margin-inline: 0;
  }
  .wayListBus {
    margin: 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .wayListBusList {
    width: 54%;
  }
  .wayListBusItem::before {
    width: 48px;
    min-height: 48px;
  }
  .wayListBusText {
    padding: 14px 0;
  }
  .wayListBusImg {
    width: 40%;
  }
  .moreBtn {
    padding: 24px 30px;
    font-size: 2rem;
    max-width: 480px;
  }
  .moreBtn::after {
    border-width: 5px;
  }
}
@media (max-width: 640px) {
  .couponExample {
    gap: 10px;
  }
  .exampleBox {
    font-size: 16px;
    width: 40px;
  }
  .exampleText {
    font-size: 16px;
    margin-top: 5px;
  }
  .wayListTitleSub:last-child {
    font-size: 14px !important;
    padding: 2px 0 2px 20px;
  }
}
@media (max-width: 394px) {
  .wayListTitleMain {
    font-size: 1.4rem;
  }
  .wayListTitleSub {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=coupon.css.map*/