@charset "UTF-8";
html {
  height: 100%;
}
.body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 20px;
  height: 100%;
}
.main {
  height: calc(100% - 106px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 点滅ボタン */
.recruit_booth--btn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulsate {
  0%   { opacity: 0.5 }
  50%  { opacity: 1; }
  100% { opacity: 0.5 ;}
}
/* ブース本体 */
.recruit_booth {
  max-width: 700px;
  width: 100%;
  padding: 0 3%;
  height: auto;
  margin-inline: auto;
  position: relative;
  transform: translateY(-5%);
  @media screen and (min-width: 1400px) {
    max-width: 800px;
  }
}
/* タイトル */
.recruit_booth--title {
  width: calc(100% + 20px);
  height: 100%;
  height: 66px;
  padding: 3px;
  margin-bottom: 15px;
  position: relative;
  transform: translateX(-10px);
  &::before {
    content: "";
    display: block;
    width: calc(100% + 6px);
    height: 66px;
    background: linear-gradient(to bottom, #fff 0%, #999 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.recruit_booth--titleMain {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(to bottom, #cdcdcd 0%, #fff 100%);
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 2;
}
.recruit_booth--category {
  display: flex;
  flex-direction: column;
  font-size: var(--font-20);
  font-weight: bold;
  line-height: 1.3;
}
.recruit_booth--titleTop {
  font-size: var(--font-32);
}
/* ブース壁テキスト */
.recruit_booth--main {
  width: 100%;
}
.recruit_booth--wall {
  width: 100%;
  height: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 18.5%;
  left: 0;
  right: 0;
  margin-inline: auto;
  font-size: var(--font-20);
  font-weight: bold;
  line-height: 1.2;
}
.recruit_booth--logo {
  height: 100%;
  width: auto;
}
/* テレビ */
.recruit_booth--video {
  width: 40%;
  height: auto;
  padding: 1px;
  border: 3px solid #ccc;
  position: absolute;
  top: 31%;
  left: 0;
  right: 0;
  margin-inline: auto;
  background: #666;
  box-shadow: 12px 12px 24px #666;
  video {
    width: 100%;
  }
}
/* 来場者 */
.recruit_booth--seats {
  width: 45%;
  position: absolute;
  bottom: 20px;
  left: 15%;
  img {
    width: 100%;
  }
}
/* HP看板 */
.recruit_booth--board {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: -1%;
  bottom: 0;
  z-index: 2;
  &::before {
    content: "";
    width: 100%;
    height: 4px;
    display: block;
    background: linear-gradient(to bottom, #615f5f 0%, #8e8e8e 100%);
  }
}
.recruit_booth--boardMain {
  padding: 0 2%;
}
.recruit_booth--boardLeg {
  width: 100%;
}
/* お問い合わせ */
.recruit_booth--contact {
  width: 20%;
  position: absolute;
  right: 16%;
  top: 46%;
  img {
    width: 100%;
  }
}
.recruit_booth--contactTxt a {
  width: 65%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(to right, #fc0000 0%, #b90000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--font-16);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin-inline: auto;
  span {
    font-size: 3.6rem;
    color: #ff0;
    line-height: 1;
  }
  &:hover {
    opacity: 0.8;
  }
}
/* カタログ */
.recruit_booth--catalog {
  width: 12.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 2;
}
figure:has(.recruit_booth--catalogBg) {
  width: 100%;
}
.recruit_booth--catalogBg {
  width: 100%;
}
.recruit_booth--catalogName {
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.recruit_booth--catalogs {
  width: 100%;
  height: 100%;
  padding: 35px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11% 0;
  position: absolute;
  p {
    width: 56.7%;
    position: relative;
  }
  p:first-child {
    transform:translateY(-3px);
  }
}
.recruit_booth--catalogs .recruit_booth--btn {
  transform: translate(75%, -25%);
}