@charset "UTF-8";

html,
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f6f6f6;
}

.mt-0 {
  margin-top: 0px !important;
}

.pc-none {
  display: none;
}

@media (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.fv {
  position: relative;
}

.fv .imgbox .img img {
  width: 100%;
}

.fv .txt-img {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  width: 500px;
  height: 92px;
}

@media (max-width: 767px) {
  .fv .txt-img {
    max-width: 240px;
    left: 10px;
    bottom: 10px;
    height: 55px;
  }
}

.fv .txt-img img {
  width: 100%;
}

.content {
  max-width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 140px;
}

.content .tab {
  display: flex;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

@media (max-width: 767px) {
  .content .tab {
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    border-bottom: inherit;
  }
}

.content .tab li {
  width: 25%;
  position: relative;
}

@media (max-width: 767px) {
  .content .tab li {
    width: 50%;
    border-bottom: 1px solid #ddd;
  }
}

.content .tab li:last-child::before {
  display: none;
}

.content .tab li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 20px;
  background-color: #ddd;
}

@media (max-width: 767px) {
  .content .tab li::before {
    display: none;
  }
}

.content .tab li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .content .tab li a {
    padding: 10px 10px;
    text-align: left;
  }
}

.content .tab li a:hover {
  color: #e60012;
  background-color: #fff3f4;
}

.content .tab li a:hover span {
  color: #e60012;
}

.content .tab li a span {
  font-size: 12px;
  color: #999;
  margin-top: -4px;
  font-weight: 400;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .content .tab li a span {
    margin-top: 0;
    margin-left: 4px;
  }
}

.content .tab li.active a {
  color: #e60012;
  background-color: #fff3f4;
}

.content .tab li.active a span {
  color: #e60012;
}

.cv-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.cv-wrap .cv-btn {
  position: relative;
  text-align: center;
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  border-radius: 50px;
  margin: 0 auto;
}

.cv-wrap .cv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e60012;
  border-radius: 100px;
  transform: translate(3px, 3px);
  /* ここで右下へのズレ幅を調整 */
  pointer-events: none;
  /* クリックの邪魔にならないようにする */
  transition: 0.2s;
}

.cv-wrap .cv-btn:hover {
  background-color: #fff;
  color: #e60012;
}

.cv-wrap .cv-btn:hover::before {
  border-color: #e60012;
  transform: translate(0px, 0px);
  /* ホバー時にさらにズレる */
}

.cv-wrap .cv-btn img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}

.cv-wrap .small {
  font-size: 12px;
  text-align: center;
  margin-top: 4px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 67px;
  background-size: contain;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .section-title::after {
    height: 47px;
    top: -15px;
    bottom: auto;
  }
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .btn-box {
    flex-direction: column;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  color: #e60012;
  background-color: #fff;
  border: 1px solid #e60012;
  height: 70px;
  width: 360px;
  border-radius: 50px;
  font-size: 16px;
  text-align: center;
  z-index: 2;
  transition: 0.2s;
  box-shadow: 6px 6px 0 #fcd4db;
}

.btn:hover {
  background-color: #fcd4db;
  box-shadow: 0px 0px 0 #fcd4db;
}

.btn img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  height: 15px;
  width: auto;
}

.cont1 {
  padding: 100px 20px;
  background-image: url("https://career-review-qa.s3.amazonaws.com/images/official/nisseki/cont1-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cont1-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 767px) {
  .cont1-inner {
    flex-direction: column;
    gap: 40px;
  }
}

.cont1-txtbox .section-title {
  margin-bottom: 30px;
}

.cont1-txtbox .section-title::after {
  background-position: left;
  background-image: url("https://career-review-qa.s3.amazonaws.com/images/official/nisseki/title-about.svg");
}

.cont1-txtbox .sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cont2 {
  padding: 120px 20px 120px;
  position: relative;
}

@media (max-width: 767px) {
  .cont2 {
    padding: 100px 20px 120px;
  }
}

.cont2-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.cont2 .character1 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 1;
  width: 96px;
}

@media (max-width: 767px) {
  .cont2 .character1 {
    width: 66px;
    top: 71px;
  }
}

.cont2 .character1 img {
  width: 100%;
  height: auto;
}

.cont2 .character2 {
  position: absolute;
  bottom: 0px;
  left: 10%;
  z-index: 1;
  width: 96px;
}

@media (max-width: 767px) {
  .cont2 .character2 {
    width: 66px;
    bottom: 0px;
  }
}

.cont2 .character2 img {
  width: 100%;
  height: auto;
}

.cont2 .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.cont2 .section-title::after {
  background-image: url("https://career-review-qa.s3.amazonaws.com/images/official/nisseki/title-interview.svg");
}

.cont2 .interview-box .box {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 28px;
}

.cont2 .interview-box .box .top {
  background-color: #fff3f4;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cont2 .interview-box .box .top .number img {
  width: 40px;
  height: 40px;
}

.cont2 .interview-box .box .top .title {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .top .title {
    font-size: 16px;
    line-height: 1.4;
  }
}

.cont2 .interview-box .box .inner-wrap {
  padding: 32px;
}

.cont2 .interview-box .box .inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner {
    flex-direction: column;
  }
}

.cont2 .interview-box .box .inner .img {
  width: 110px;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner .img {
    width: auto;
  }
}

.cont2 .interview-box .box .inner .img img {
  width: 100%;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner .img img {
    width: auto;
    height: 52px;
  }
}

.cont2 .interview-box .box .inner .txtbox {
  width: calc(100% - 126px);
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner .txtbox {
    width: 100%;
  }
}

.cont2 .interview-box .box .inner .txtbox .sub-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner .txtbox .sub-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.cont2 .interview-box .box .inner2 {
  flex-direction: row-reverse;
  margin-top: 32px;
  padding-top: 32px;
  background-image: repeating-linear-gradient(90deg, #ddd, #ddd 12px, transparent 12px, transparent 16px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

@media (max-width: 767px) {
  .cont2 .interview-box .box .inner2 {
    flex-direction: column;
  }
}

.cont3 {
  padding: 80px 20px;
  background-color: #fff3f4;
}

.cont3 .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.cont3 .section-title::after {
  background-image: url("https://career-review-qa.s3.amazonaws.com/images/official/nisseki/title-movie.svg");
}

.cont3-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cont3-inner .video-box {
  margin-bottom: 30px;
  text-align: center;
}

.cont3-inner .video-box iframe {
  width: 560px;
  height: 315px;
}

@media (max-width: 767px) {
  .cont3-inner .video-box iframe {
    width: 335px;
    height: 197px;
  }
}

.cont3-inner .video-box .txtbox {
  margin-top: 8px;
  text-align: left;
}

.cont3-inner .video-box .txtbox .tag {
  background-color: #fff;
  padding: 8px;
  color: #333;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
}

.cont3-inner .video-box .txtbox .txt {
  font-size: 16px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .cont3-inner .video-box .txtbox .txt {
    font-size: 14px;
  }
}

.character3 {
  cursor: pointer;
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 1;
  width: 96px;
  z-index: 9999;
}

@media (max-width: 767px) {
  .character3 {
    width: 66px;
    bottom: 100px;
  }
}

.character3 img {
  width: 100%;
  height: auto;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  /* フォームの最大幅 */
  height: 48px;
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  /* 角丸の具合 */
  padding: 0 12px 0 16px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .search-form {
    max-width: 100%;
  }
}

.search-form {
  /* 入力フィールド */
}

.search-form__input {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #333333;
  outline: none;
  padding: 0;
}

.search-form__input::-moz-placeholder {
  color: #b3b3b3;
}

.search-form__input::placeholder {
  color: #b3b3b3;
}

.search-form__input {
  /* IE/Edgeで表示されるデフォルトのクリアボタンを消す場合 */
}

.search-form__input::-ms-clear {
  display: none;
}

.search-form {
  /* 検索ボタン（アイコン） */
}

.search-form__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: 4px;
  cursor: pointer;
  color: #b3b3b3;
  /* SVGのstroke="currentColor"に反映されます */
  transition: color 0.2s ease;
}

.search-form__button:hover {
  color: #8c8c8c;
  /* ホバー時に少し濃くする */
}

.search-form__button svg {
  width: 18px;
  height: 18px;
}

.cont-wrap {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .cont-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.cont-left {
  width: 300px;
}

@media (max-width: 767px) {
  .cont-left {
    width: 100%;
  }
}

.cont-left .search {
  margin-bottom: 20px;
  margin-bottom: 20px;
}

.cont-left .area-anker {
  display: flex;
  flex-direction: column;
  border-top: 3px solid #e60012;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 767px) {
  .cont-left .area-anker {
    flex-wrap: wrap;
    flex-direction: row;
    border-bottom: inherit;
  }
}

.cont-left .area-anker a {
  color: #333;
  font-size: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

@media (max-width: 767px) {
  .cont-left .area-anker a {
    width: 50%;
    border-bottom: 1px solid #ddd;
    padding: 12px;
    border-top: 0px;
  }
}

.cont-left .area-anker a:hover {
  background-color: #fcd4db;
}

.cont-right {
  width: calc(100% - 340px);
}

@media (max-width: 767px) {
  .cont-right {
    width: 100%;
    margin-top: 60px;
  }
}

.cont-right .areabox .area-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 60px;
}

.cont-right .area-box-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cont-right .area-box-wrap .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 8px);
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  transition: 0.2s;
}

@media (max-width: 767px) {
  .cont-right .area-box-wrap .box {
    width: 100%;
  }
}

.cont-right .area-box-wrap .box:hover {
  background-color: #f6f6f6;
}

.cont-right .area-box-wrap .box .name {
  color: #e60012;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}

.cont-right .area-box-wrap .box .name img {
  width: 18px;
  height: 19px;
  margin-left: 4px;
  vertical-align: middle;
  margin-bottom: 6px;
  margin-left: 4px;
}

.cont-right .area-box-wrap .box .tagarea {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cont-right .area-box-wrap .box .tagarea .tag {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 8px 12px;
  line-height: 1;
  font-size: 12px;
}

.recruit {
  padding: 0 20px;
  margin-top: 60px;
}

.recruit .txt-center {
  text-align: center;
  font-size: 14px;
  margin-bottom: -30px;
}

.recruit .title2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .recruit .title2 {
    font-size: 20px;
  }
}

.recruit .title2 span {
  font-size: 14px;
  color: #999;
}

.recruit-box .box {
  margin-top: 60px;
}

.recruit-box .box .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .recruit-box .box .name {
    font-size: 18px;
  }
}

.recruit-box .btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .recruit-box .btn-box {
    flex-direction: column;
    gap: 20px;
  }
}

.recruit-box .btn-box .btn {
  width: calc(33.3333333333% - 16px);
  height: 60px;
}

@media (max-width: 767px) {
  .recruit-box .btn-box .btn {
    width: 90%;
  }
}

.recruit .detail-box .box {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 40px;
  display: none;
  /* レイアウトから消す */
  opacity: 0;
  /* 透明 */
  transition: opacity 0.5s ease;
  /* 0.5秒かけて変化 */
}

.recruit .detail-box .box.is-open {
  display: block;
  opacity: 1;
  /* 表示 */
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recruit .detail-box .box .title {
  background-color: #ffedf0;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
}

.recruit .detail-box .box .sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.recruit .detail-box .box .detail {
  padding: 32px;
}

.recruit .detail-box .box .detail table {
  width: 100%;
  border-collapse: collapse;
  /* 隙間を無くす */
  border-spacing: 0;
}

.recruit .detail-box .box .detail table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.recruit .detail-box .box .detail table th,
.recruit .detail-box .box .detail table td {
  padding: 20px;
  white-space: normal;
  /* 長い英単語やメールアドレスも強制的に折る */
  word-break: break-all;
  /* 念のため */
  overflow-wrap: break-word;
}

.recruit .detail-box .box .detail table td {
  width: calc(100% - 120px);
}

@media (max-width: 767px) {
  .recruit .detail-box .box .detail table td {
    width: calc(100% - 80px);
  }
}

.recruit .detail-box .box .detail table th {
  background-color: #f6f6f6;
  padding: 12px;
  font-weight: normal;
  width: 120px;
  text-align: left;
}

@media (max-width: 767px) {
  .recruit .detail-box .box .detail table th {
    width: 80px;
  }
}

.recruit .detail-box .box .detail .btn {
  margin-top: 40px;
}

.recruit .detail-box .back-btn {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: #e60012;
  margin-top: 24px;
  cursor: pointer;
}

.recruit .detail-box .back-btn:hover {
  text-decoration: underline;
}

.recruit .detail-box .cv-btn {
  position: relative;
  text-align: center;
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  border-radius: 50px;
  margin: 0 auto;
}

.recruit .detail-box .cv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e60012;
  border-radius: 100px;
  transform: translate(3px, 3px);
  /* ここで右下へのズレ幅を調整 */
  pointer-events: none;
  /* クリックの邪魔にならないようにする */
  transition: 0.2s;
}

.recruit .detail-box .cv-btn:hover {
  background-color: #fff;
  color: #e60012;
}

.recruit .detail-box .cv-btn:hover::before {
  border-color: #e60012;
  transform: translate(0px, 0px);
  /* ホバー時にさらにズレる */
}

.recruit .detail-box .cv-btn img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}

.recruit .detail-box .small {
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}

/*# sourceMappingURL=style.css.map */