@charset "UTF-8";
.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.NotoSeri {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.Shippori {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.yuji {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
}

/* ▼▼▼ 採用情報
=====================================*/
.tab_area {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100%, 690px);
  margin: 0 auto 77px;
}
@media screen and (max-width: 767px) {
  .tab_area {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 540px);
    margin-bottom: 50px;
  }
}
.tab_area .tab {
  background: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 75px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab_area .tab {
    height: 65px;
    padding: 0 10px;
    font-size: 14px;
  }
}
.tab_area .tab.active {
  background: #B51135;
  color: #fff;
}

.panel {
  display: none;
}
.panel.active {
  display: block;
}
.panel h3 {
  margin-bottom: 38px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .panel h3 {
    margin-bottom: 25px;
    font-size: 16px;
  }
}