/* color */
/* font */
/* transition */
.categoryList a,
.locationItem .item .decoLine,
.locationItem .imgBox,
.locationItem .nameBox,
.locationItem .infoBox a,
.locationItem .eatList a img,
.locationInfo .linkList img,
.locationInfo .infoList>* span {
  transition: all 0.5s ease-in-out;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.categoryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 640px) {
  .categoryList {
    flex-wrap: wrap;
  }
}

.categoryList a {
  color: #fff;
  font-weight: 500;
  padding: 10px 40px;
  background-color: #3d6933;
  border-radius: 18px;
}

@media (max-width: 640px) {
  .categoryList a {
    padding: 5px 25px;
  }
}

@media (min-width: 1181px) {
  .categoryList a:hover {
    color: #3d6933;
    background-color: #fff22b;
  }
}

.categoryList a.current {
  color: #3d6933;
  background-color: #fff22b;
}

.locationItem {
  padding: 40px 60px;
  position: relative;
}

.locationItem:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 0;
}

@media (max-width: 1180px) {
  .locationItem {
    padding: 30px 40px;
  }
}

@media (max-width: 820px) {
  .locationItem {
    padding: 20px;
  }
}

@media (min-width: 1181px) {
  .locationItem:hover .imgBox {
    opacity: 1;
    transform: translateX(0);
  }

  .locationItem:hover .nameBox {
    transform: translateX(0);
  }

  .locationItem:hover:after {
    content: "";
    position: absolute;
    width: 60%;
  }

  .locationItem:hover .item .decoLine {
    opacity: 1;
  }
}

.locationItem .item {
  align-items: center;
  display: flex;
  gap: 55px;
  position: relative;
}

@media (max-width: 640px) {
  .locationItem .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.locationItem .item .decoLine {
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 2;
  opacity: 0;
}

@media (min-width: 1181px) {
  .locationItem .item:hover .name {
    color: #ed7541;
  }
}

.locationItem .item .link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media (max-width: 1180px) {
  .locationItem .item {
    gap: 30px;
  }
}

.locationItem .imgBox {
  opacity: 0;
  transform: translateX(-150px);
}

@media (max-width: 1180px) {
  .locationItem .imgBox {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 820px) {
  .locationItem .imgBox {
    width: 150px;
  }
}

@media (max-width: 640px) {
  .locationItem .imgBox {
    display: none;
  }
}

.locationItem .nameBox {
  flex: 1;
  transform: translateX(-180px);
}

@media (max-width: 1180px) {
  .locationItem .nameBox {
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .locationItem .nameBox {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.locationItem .name {
  font-size: 18px;
  font-weight: 500;
  color: #386934;
  letter-spacing: 2.7px;
}

.locationItem .infoBox {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #344e45;
  letter-spacing: 2.1px;
  line-height: 1.92857;
  position: relative;
  z-index: 3;
}

.locationItem .infoBox:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  left: -50px;
  top: 80px;
  background-color: #344e45;
  rotate: -60deg;
}

@media (max-width: 820px) {
  .locationItem .infoBox:after {
    display: none;
  }
}

@media (min-width: 1181px) {
  .locationItem .infoBox a:hover {
    color: #ed7541;
  }
}

.locationItem .eatList {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1181px) {
  .locationItem .eatList a:hover img {
    transform: translateY(-10px);
  }
}

.locationItem .eatList a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.locationInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.locationInfo .title {
  color: #386934;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3.9px;
}

.locationInfo .tag {
  padding: 2.5px 30px;
  border: 2px solid #ed7541;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 700;
  color: #ed7541;
  letter-spacing: 3px;
}

.locationInfo .linkList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  width: 100%;
}

@media (min-width: 1181px) {
  .locationInfo .linkList a:hover img {
    transform: translateY(-10px);
  }
}

.locationInfo .infoList {
  margin: 0 auto;
  width: fit-content;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

@media (max-width: 640px) {
  .locationInfo .infoList {
    flex-direction: column;
  }
}

.locationInfo .infoList>* {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #886d58;
  font-weight: 700;
}

@media (max-width: 640px) {
  .locationInfo .infoList>* {
    width: 100%;
  }
}

@media (min-width: 1181px) {
  .locationInfo .infoList>*:hover span {
    transform: translateX(10px);
  }
}

.locationInfo .infoList>* a {
  color: currentColor;
}

.locationInfo .infoList>* img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.locationInfo .btnBox {
  margin-top: 80px;
  margin-left: auto;
}

.locationInfo .btnBox span {
  color: #593f29;
}