@charset "UTF-8";

.airex {
  padding: 5vw;
}

@media screen and (min-width: 681px) {
  .airex {
    padding-bottom: 50px;
  }
}

.airex .txt {
  text-align: justify;
}

.airex .txt h2 {
  font-size: 5vw;
  color: #a18861;
}

@media screen and (min-width: 681px) {
  .airex .txt h2 {
    font-size: 25px;
  }
}

.airex .txt2 p.clause {
  margin-top: 5vw;
  font-weight: 500;
}

@media screen and (min-width: 681px) {
  .airex .txt2 p.clause {
    margin-top: 40px;
    font-size: 20px;
  }

}


.airex .box {
  display: flex;
  flex-direction: column;
  gap: 5vw;
  align-items: center;
}

@media screen and (min-width: 681px) {
  .airex .box {
    gap: 50px;
  }
}

.airex .box .txt {
  font-size: 4vw;
}

@media screen and (min-width: 681px) {
  .airex .box .txt {
    font-size: 16px;
  }
}

.airex .box .img-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}

@media screen and (min-width: 681px) {
  .airex .box .img-box {
    width: 680px;
  }

}

.airex .box .img-box img {
  width: 40%;
}

.airex .arrow {
  width: 10vw;
  height: 3vw;
  border-top: 3vw solid transparent;
  border-bottom: 3vw solid transparent;
  border-left: 10vw solid #c1b4a4;
}

@media screen and (min-width: 681px) {
  .airex .arrow {
    width: 100px;
    height: 25px;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 100px solid #c1b4a4;
  }

}



.airex .reserve {
  margin-top: 5vw;
  display: block;
  position: relative;
  font-size: 4vw;
  transition: all .2s;
}

@media screen and (min-width: 681px) {
  .airex .reserve {
    margin: 100px auto 0;
    font-size: 20px;
    width: 300px;
  }

}

.airex .reserve:hover {
  opacity: 0.5;
}

.airex .reserve::before {
  position: absolute;
  display: block;
  content: "";
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotateX(0);
  width: 6vw;
  height: 2vw;
  border-top: 2vw solid transparent;
  border-bottom: 2vw solid transparent;
  border-left: 6vw solid #c1b4a4;
  transition: all 1.5s;
}

@media screen and (min-width: 681px) {
  .airex .reserve::before {
    width: 50px;
    height: 10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 50px solid #c1b4a4;
    right: 50px;
  }

}

.airex .reserve.visible::before {
  transform: translateY(-50%) rotateX(180deg);
}

.airex .reserve::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: #c1b4a4;
}

@media screen and (min-width: 681px) {
  .airex .reserve::after {
    width: 100%;
    left: -50px;
  }
}

.menu .inner{
  width: unset;
}

  .menu ul {
    padding: 0 5vw;
  }
@media screen and (min-width: 681px) {
  .menu ul {
    margin-top: 50px;
    gap: 50px;
  }

}

.menu h3 span {
  color: #a18861;
  font-size: 0.6em;
}