* {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.bold-t {
  font-weight: bold;
}

.c-red {
  color: #f45656;
}

a {
  text-decoration: none;
}

.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  overflow-y: none;
}

.container .bg-top {
  width: 100vw;
  height: 50vh;
  background: url("../image/main_bg1.jpeg") no-repeat center center;
  background-size: cover;
}

.container .main-area {
  background: #3a3846;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.container .main-area h1 {
  font-size: 20px;
  margin: 10px 0;
  transition: all 0.5s;
}

.container .main-area .choose-txt {
  font-size: 48px;
  transition: all 0.5s;
}

.container .main-area .choose-en {
  font-size: 24px;
  margin-bottom: 40px;
  transition: all 0.5s;
}

.container .main-area .choose-box {
  display: flex;
  gap: 60px;
  transition: all 0.5s;
}

.container .main-area .choose-box .for-here,
.container .main-area .choose-box .to-go {
  width: 200px;
  height: 200px;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #f96464;
}

.container .main-area .choose-box .for-here p,
.container .main-area .choose-box .for-here span,
.container .main-area .choose-box .to-go p,
.container .main-area .choose-box .to-go span {
  font-size: 20px;
  transition: all 0.5s;
}

.container .main-area .choose-box .for-here .here-img,
.container .main-area .choose-box .to-go .here-img {
  width: 40px;
  height: 40px;
  background: url("../image/hall.png") no-repeat center center;
  background-size: contain;
  margin-bottom: 10px;
  filter: invert(51%) sepia(14%) saturate(2351%) hue-rotate(314deg) brightness(101%) contrast(96%);
  transition: all 0.5s;
}

.container .main-area .choose-box .for-here .to-go-img,
.container .main-area .choose-box .to-go .to-go-img {
  width: 40px;
  height: 40px;
  background: url("../image/takeout.png") no-repeat center center;
  background-size: contain;
  margin-bottom: 10px;
  filter: invert(51%) sepia(14%) saturate(2351%) hue-rotate(314deg) brightness(101%) contrast(96%);
  transition: all 0.5s;
}

.container .main-area .choose-bt-txt {
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.container .main-area .choose-bt-txt p {
  margin-bottom: 10px;
  transition: all 0.5s;
}

.container .bg-bt {
  width: 100vw;
  height: 50vh;
  background: url("../image/main_bg2.jpeg") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 600px) {
  .container .main-area h1 {
    font-size: 16px;
  }
  .container .main-area .choose-txt {
    font-size: 32px;
  }
  .container .main-area .choose-en {
    font-size: 16px;
  }
  .container .main-area .choose-bt-txt p {
    font-size: 10px;
  }
  .container .main-area .choose-box {
    gap: 20px;
  }
  .container .main-area .choose-box .for-here,
  .container .main-area .choose-box .to-go {
    width: 120px;
    height: 120px;
  }
  .container .main-area .choose-box .for-here p,
  .container .main-area .choose-box .for-here span,
  .container .main-area .choose-box .to-go p,
  .container .main-area .choose-box .to-go span {
    font-size: 16px;
  }
  .container .main-area .choose-box .for-here .here-img,
  .container .main-area .choose-box .to-go .here-img {
    width: 30px;
    height: 30px;
  }
  .container .main-area .choose-box .for-here .to-go-img,
  .container .main-area .choose-box .to-go .to-go-img {
    width: 30px;
    height: 30px;
  }
}
