@charset "UTF-8";
.kyujinWrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 480px) {
  .kyujinWrap {
    flex-wrap: wrap;
  }
}
.kyujinWrap .kyujinNav {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .kyujinWrap .kyujinNav {
    width: 100%;
    order: 2;
  }
}
.kyujinWrap .kyujinNav .sticky {
  position: sticky;
  top: 190px;
}
@media screen and (max-width: 480px) {
  .kyujinWrap .kyujinNav .sticky {
    position: relative;
    top: 0;
  }
}
.kyujinWrap .kyujinNav ul {
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  padding: 20px 10px;
  font-size: 15px;
  margin-bottom: 20px;
}
.kyujinWrap .kyujinNav ul li {
  margin-bottom: 5px;
}
.kyujinWrap .kyujinNav ul li a, .kyujinWrap .kyujinNav ul li > span {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #231815;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  box-sizing: border-box;
}
.kyujinWrap .kyujinBody {
  width: calc(70% - 15px);
}
@media screen and (max-width: 480px) {
  .kyujinWrap .kyujinBody {
    width: 100%;
    order: 1;
  }
}
.kyujinWrap .kyujinBody img {
  max-width: 100%;
  height: auto;
}
.kyujinWrap .kyujinBody > section {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .kyujinWrap .kyujinBody > section {
    margin-bottom: 15px;
  }
}
.kyujinWrap .kyujinBody dl {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  font-size: 13px;
  border: #D6D6D6 solid 1px;
  border-bottom: none;
  border-radius: 4px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody dl {
    display: block;
    font-size: 16px;
    font-size: 3.738317757vw;
  }
}
.kyujinWrap .kyujinBody dl dt, .kyujinWrap .kyujinBody dl dd {
  padding: 1em;
  border-bottom: #D6D6D6 solid 1px;
}
.kyujinWrap .kyujinBody dl dt {
  width: 20%;
  border-right: #D6D6D6 solid 1px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody dl dt {
    width: 100%;
    border-right: none;
    padding: 0.5em;
  }
}
.kyujinWrap .kyujinBody dl dd {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody dl dd {
    width: 100%;
    padding: 0.5em 0.5em;
  }
}
.kyujinWrap .kyujinBody .taglist {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.kyujinWrap .kyujinBody .taglist .tag {
  box-sizing: border-box;
  min-width: calc(25% - 6px);
  padding: 0 0.5em;
  height: 24px;
  border-radius: 4px;
  color: #D6D6D6;
  border: 1px solid #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .taglist .tag {
    display: none;
    min-width: calc(33.333% - 6px);
    font-size: 12px;
    font-size: 2.8037383178vw;
  }
}
.kyujinWrap .kyujinBody .taglist .tag.active {
  color: #F500A2;
  border: #F500A2 1px solid;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .taglist .tag.active {
    display: flex;
  }
}
.kyujinWrap .kyujinBody .qa {
  max-width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #F3F5F6;
}
.kyujinWrap .kyujinBody .qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.kyujinWrap .kyujinBody .qa summary::before,
.kyujinWrap .kyujinBody .qa .answer::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.kyujinWrap .kyujinBody .qa summary::before {
  color: #75bbff;
  content: "Q";
}
.kyujinWrap .kyujinBody .qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}
.kyujinWrap .kyujinBody .qa .answer {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.2em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}
.kyujinWrap .kyujinBody .qa .answer p {
  line-height: 1.6em;
}
.kyujinWrap .kyujinBody .qa[open] summary::after {
  transform: rotate(225deg);
}
.kyujinWrap .kyujinBody .qa[open] .answer {
  transform: none;
  opacity: 1;
}
.kyujinWrap .kyujinBody .qa .answer::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}
.kyujinWrap .kyujinBody .managerBlogList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList {
    padding: 3vw 0 0 0;
    margin-bottom: 0vw;
  }
}
.kyujinWrap .kyujinBody .managerBlogList > p {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList > p {
    font-size: 14px;
    font-size: 3.2710280374vw;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #D6D6D6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item {
    border-bottom: 1px dashed #D6D6D6;
    width: 100%;
    background-color: transparent;
    border: none;
    margin-bottom: 5vw;
    padding-bottom: 5vw;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.kyujinWrap .kyujinBody .managerBlogList .item a {
  display: flex;
  background-color: #fff;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px 4px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F5F6;
}
.kyujinWrap .kyujinBody .managerBlogList .item .photo {
  display: block;
  position: relative;
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .photo {
    width: 30%;
    border-right: none;
    height: auto;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item .photo span {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: block;
  overflow: hidden;
  background-size: 100%;
}
.kyujinWrap .kyujinBody .managerBlogList .item .photo span img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.kyujinWrap .kyujinBody .managerBlogList .item .info {
  display: block;
  width: calc(100% - 80px);
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .info {
    width: calc(70% - 10px);
    padding: 15px;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item .info h3 {
  width: 65%;
  font-size: 16px;
  text-align: left;
  margin-bottom: 15px;
  line-height: 1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .info h3 {
    font-size: 16px;
    font-size: 3.738317757vw;
    margin-bottom: 3vw;
    width: 60%;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item .info h3 a {
  color: #606060;
}
.kyujinWrap .kyujinBody .managerBlogList .item .info span.datePublished {
  font-size: 14px;
  line-height: 1em;
  text-align: right;
  color: #212121;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .info span.datePublished {
    font-size: 14px;
    font-size: 3.2710280374vw;
    margin-bottom: 3vw;
    width: 100%;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item .info h4, .kyujinWrap .kyujinBody .managerBlogList .item .info p {
  width: 100%;
}
.kyujinWrap .kyujinBody .managerBlogList .item .info h4 {
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
  white-space: nowrap; /* 折り返し無しにする */
  overflow: hidden; /* はみ出た部分を非表示 */
  text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .info h4 {
    font-size: 18px;
    font-size: 4.2056074766vw;
    margin-bottom: 1.5vw;
  }
}
.kyujinWrap .kyujinBody .managerBlogList .item .info h4 a {
  color: #F500A2;
}
.kyujinWrap .kyujinBody .managerBlogList .item .info p {
  font-weight: normal;
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  color: #212121;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 行数 */
}
@media screen and (max-width: 768px) {
  .kyujinWrap .kyujinBody .managerBlogList .item .info p {
    font-size: 13px;
    font-size: 3.0373831776vw;
  }
}
.kyujinWrap .kyujinBody .managerBlogList.homecontents .item {
  border: none;
  margin-bottom: 10px;
  width: 100%;
}
.kyujinWrap .kyujinBody .managerBlogList.homecontents .item .photo {
  border-right: none;
  width: 100px;
  height: 100px;
}
.kyujinWrap .kyujinBody .managerBlogList.homecontents .item .info {
  width: calc(100% - 110px);
  padding: 0;
}
.kyujinWrap .kyujinBody .managerBlogList.homecontents .item .info p {
  width: auto;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  margin-bottom: 10px;
}
.kyujinWrap .kyujinBody .managerBlogList.homecontents .item .info .datePublished {
  text-align: right;
  width: 100%;
}
.kyujinWrap .kyujinBody #jobreview .btn {
  width: auto;
  font-weight: bold;
}

.kyujinList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* 親要素の疑似要素 */
}
.kyujinList::before {
  content: "";
  display: block;
  width: 250px; /* 子要素と同じ幅 */
  order: 1; /* アイテムの並び順 */
}
@media screen and (max-width: 768px) {
  .kyujinList::before {
    display: none;
  }
}
.kyujinList .item {
  width: 100%;
  border: 1px solid #D6D6D6;
  background-color: #FCFCFC;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .kyujinList .item {
    margin-bottom: 6vw;
  }
}
.kyujinList .item h3 {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.kyujinList .item h3::after {
  display: block;
  position: absolute;
  bottom: 0px;
  height: 3px;
  width: 100%;
  box-sizing: border-box;
  background-color: #E5E5E5;
  content: "";
  border-left: 100px solid #F500A2;
}
.kyujinList .item .left {
  width: calc(50% - 10px);
}
@media screen and (max-width: 480px) {
  .kyujinList .item .left {
    width: 100%;
  }
}
.kyujinList .item .left figure {
  margin-bottom: 15px;
}
.kyujinList .item .left img {
  max-width: 100%;
  width: 100%;
}
.kyujinList .item h4 {
  line-height: 1.5em;
  margin-bottom: 5px;
  font-size: 14px;
  color: #F500A2;
  font-weight: normal;
}
.kyujinList .item p {
  line-height: 1.5em;
  font-size: 13px;
}
.kyujinList .item .taglist {
  width: 100%;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(12, 1fr);
}
.kyujinList .item .taglist .tag {
  grid-column: auto/span 3;
  box-sizing: border-box;
  height: 24px;
  border-radius: 4px;
  color: #D6D6D6;
  border: 1px solid #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .kyujinList .item .taglist .tag {
    font-size: 12px;
    font-size: 2.8037383178vw;
    grid-column: auto/span 4;
  }
}
.kyujinList .item .taglist .tag.active {
  color: #F500A2;
  border: #F500A2 1px solid;
}
@media screen and (max-width: 768px) {
  .kyujinList .item .taglist .tag.active {
    display: flex;
  }
}
.kyujinList .item .right {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .kyujinList .item .right {
    width: 100%;
  }
}
.kyujinList .item .benefitsOptions {
  border: 1px solid #F500A2;
}
.kyujinList .item .benefitsOptions dt {
  padding: 10px;
  background-color: #F500A2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.kyujinList .item .benefitsOptions dd {
  padding: 5px;
}
.kyujinList .item .listing {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  border: 1px solid #F500A2;
  margin: 15px auto;
}
.kyujinList .item .listing dt, .kyujinList .item .listing dd {
  padding: 10px;
}
.kyujinList .item .listing dt {
  width: 15%;
  background-color: #F500A2;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
.kyujinList .item .listing dt:last-of-type, .kyujinList .item .listing dt:nth-last-of-type(-n + 2) {
  border-bottom: none;
}
@media screen and (max-width: 480px) {
  .kyujinList .item .listing dt {
    width: 30%;
  }
  .kyujinList .item .listing dt:nth-last-of-type(2) {
    border-bottom: 1px solid #fff;
  }
}
.kyujinList .item .listing dd {
  width: 35%;
  border-bottom: 1px solid #D6D6D6;
}
.kyujinList .item .listing dd:last-of-type, .kyujinList .item .listing dd:nth-last-of-type(-n + 2) {
  border-bottom: none;
}
@media screen and (max-width: 480px) {
  .kyujinList .item .listing dd {
    width: 70%;
  }
  .kyujinList .item .listing dd:nth-last-of-type(2) {
    border-bottom: 1px solid #D6D6D6;
  }
}
.kyujinList .item .comment {
  padding: 10px;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  font-size: 14px;
}
.kyujinList .emptyshop {
  margin-bottom: 30px;
}

.reviewList {
  margin-bottom: 15px;
}

.reviewList {
  display: grid;
  justify-content: flex-start;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.reviewList .reviewItem {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F5F6;
  background-color: #fff;
  grid-column: auto/span 6;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .reviewList .reviewItem {
    grid-column: auto/span 12;
  }
}
.reviewList .reviewItem .reviewHeader {
  padding: 10px 15px 0px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviewList .reviewItem .reviewHeader h5 {
  width: 60%;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .reviewList .reviewItem .reviewHeader h5 {
    font-size: 16px;
    font-size: 3.738317757vw;
  }
}
.reviewList .reviewItem .reviewHeader h5 span {
  display: flex;
  align-items: center;
}
.reviewList .reviewItem .reviewHeader h5 span::before {
  content: "";
  display: inline-block;
  height: 40px;
  width: auto;
  aspect-ratio: 1/1;
  margin-right: 10px;
  background-image: url(../img/icon_women.svg);
}
.reviewList .reviewItem .reviewHeader .star {
  display: inline-block;
  height: 20px;
  aspect-ratio: 55/10;
}
.reviewList .reviewItem .reviewHeader .star.star1 {
  background-image: url(../img/star1.svg);
}
.reviewList .reviewItem .reviewHeader .star.star2 {
  background-image: url(../img/star2.svg);
}
.reviewList .reviewItem .reviewHeader .star.star3 {
  background-image: url(../img/star3.svg);
}
.reviewList .reviewItem .reviewHeader .star.star4 {
  background-image: url(../img/star4.svg);
}
.reviewList .reviewItem .reviewHeader .star.star5 {
  background-image: url(../img/star5.svg);
}
.reviewList .reviewItem .reviewBody {
  padding: 10px 15px;
}
.reviewList .reviewItem .reviewBody p {
  font-size: 14px;
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .reviewList .reviewItem .reviewBody p {
    font-size: 16px;
    font-size: 3.738317757vw;
  }
}
.reviewList .reviewItem .reviewFooter {
  padding: 10px 15px;
  border-top: 1px solid #F3F5F6;
}
.reviewList .reviewItem .reviewFooter .datePublished {
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  .reviewList .reviewItem .reviewFooter .datePublished {
    font-size: 14px;
    font-size: 3.2710280374vw;
  }
}