@charset "utf-8";

@media screen and (min-width: 768px) {
  .order-select {
    margin-top: 80px;
    margin-bottom: 100px;
    box-sizing: border-box;
  }
  .order-select__text {
    font-size: 24px;
    text-align: center;
    box-sizing: border-box;
  }
  .order-select__list {
    display: flex;
    /* align-items: center; */
    margin-top: 20px;
    box-sizing: border-box;
  }
  .order-select__list li {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
  }
  .order-select__list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 300px;
    max-width: 100%;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-weight: bold;
    box-sizing: border-box;
    color: #000000;
    background-color: #9fd8bf;
    position: relative;
    transition: all 0.3s ease;
  }
  .order-select__list li a:before {
    content: "";
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top: solid 8px transparent;
    border-bottom: solid 8px transparent;
    border-left: solid 8px #000;
    border-right: solid 8px transparent;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .order-select__list li p {
    margin-top: 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .order-select__list li a:hover {
    text-decoration: none;
    background-color: #f7d53a;
  }
}

@media screen and (max-width: 767px) {
  .order-select {
    margin-top: 50px;
    margin-bottom: 100px;
    box-sizing: border-box;
  }
  .order-select__text {
    font-size: 18px;
    text-align: center;
    box-sizing: border-box;
  }
  .order-select__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    box-sizing: border-box;
  }
  .order-select__list li {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
  }
  .order-select__list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 300px;
    max-width: 100%;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    color: #000000;
    background-color: #9fd8bf;
    position: relative;
    transition: all 0.3s ease;
  }
  .order-select__list li a:before {
    content: "";
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top: solid 6px transparent;
    border-bottom: solid 6px transparent;
    border-left: solid 6px #000;
    border-right: solid 6px transparent;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .order-select__list li p {
    margin-top: 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .order-select__list li p span {
    display: inline-block;
  }
  .order-select__list li a:hover {
    text-decoration: none;
    background-color: #f7d53a;
  }
}
