@charset "UTF-8";
/* ============================================ */
/* modal
/* ============================================ */
/*=== 共通設定 ====*/
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

.link-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  position: fixed;
  bottom: 40px;
  left: 0;
}
.link-area .modal-close::after {
  width: 34px;
  height: 14px;
  background: url(../img/modal/btn-close.svg) no-repeat center;
  background-size: contain;
  right: 20px;
}
.link-area .modal-link:first-of-type .btn-style {
  padding: 10px 20px 10px 60px;
}
.link-area .modal-link:first-of-type a {
  text-align: right;
}
.link-area .modal-link:first-of-type a::after {
  width: 34px;
  height: 14px;
  background: url(../img/modal/btn-prev.svg) no-repeat;
  background-size: contain;
  left: 20px;
}
.link-area .modal-link:last-of-type a::after {
  width: 34px;
  height: 14px;
  background: url(../img/modal/btn-next.svg) no-repeat;
  background-size: contain;
  right: 20px;
}
.link-area .btn-style {
  display: inline-block;
  width: 130px;
  background: var(--color-blue);
  color: var(--color-white);
  border: solid 2px var(--color-blue);
  border-radius: 20px;
  font-family: var(--fontfamily-en);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  text-align: left;
  padding: 10px 60px 10px 20px;
  transition: 0.3s;
}
.link-area .btn-style::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 7777;
  display: none;
  width: 85%;
  max-width: 1400px;
  height: 90vh;
  max-height: 700px;
  padding: 40px 40px 120px;
  background: var(--color-white);
}
.modal-box .modal-title {
  margin-bottom: 55px;
}
.modal-box .modal-title .en {
  font-family: var(--fontfamily-en);
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-right: 1em;
}
.modal-box .modal-title .jp {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.modal-box .content {
  height: calc(100% - 80px);
  overflow-y: auto;
}
.modal-box .content::-webkit-scrollbar {
  width: 5px;
}
.modal-box .content::-webkit-scrollbar-track {
  background-color: #dce1e6;
  border-radius: 10px;
}
.modal-box .content::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 10px;
}
@-moz-document url-prefix() {
  .modal-box .content {
    scrollbar-width: 5px;
    scrollbar-color: var(--color-blue) #dce1e6;
  }
}
.modal-box .content-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1em;
}
.modal-box .blue-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 1em;
}
.modal-box .out-wrap {
  max-width: none;
  padding: 0 40px 30px;
}
.modal-box .in-wrap {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: space-between;
}
.modal-box:not(.job-sales-modal) .img {
  width: 45%;
}
.modal-box:not(.job-sales-modal) .img img + p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 10px 0;
}
.modal-box:not(.job-sales-modal) .text-wrap {
  width: 50%;
  line-height: 1.8;
}
.modal-box:not(.job-sales-modal) .text {
  margin-bottom: 40px;
}
.modal-box:not(.job-sales-modal) .list01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.modal-box:not(.job-sales-modal) .list01 .list-item {
  width: 32%;
}
.modal-box:not(.job-sales-modal) .list01 .list-item img {
  display: block;
  max-width: 180px;
  margin: 0 auto;
}
.modal-box:not(.job-sales-modal) .list01 .list-item img + p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}
.modal-box:not(.job-sales-modal) .list01 .list-item img + p .small {
  font-size: 90%;
}
.modal-box:not(.job-sales-modal) .list02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 0;
}
.modal-box:not(.job-sales-modal) .list02 li {
  width: 47%;
  position: relative;
  line-height: 1.2;
  padding-left: 20px;
}
.modal-box:not(.job-sales-modal) .list02 li::after {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

@media (hover: hover) {
  .link-area .modal-close:hover::after {
    background: url(../img/modal/btn-close_hover.svg) no-repeat center;
    background-size: contain;
  }
  .link-area .modal-link:first-of-type:hover a::after {
    background: url(../img/modal/btn-prev_hover.svg) no-repeat;
    background-size: contain;
  }
  .link-area .modal-link:last-of-type:hover a::after {
    background: url(../img/modal/btn-next_hover.svg) no-repeat;
    background-size: contain;
  }
  .link-area .btn-style:hover {
    background: var(--color-white);
    color: var(--color-blue);
  }
}
@media screen and (max-width: 1024px) {
  .link-area {
    padding: 0 20px;
    bottom: 20px;
  }
  .link-area .modal-close::after {
    width: 20px;
    height: 8px;
    right: 10px;
  }
  .link-area .modal-link:first-of-type .btn-style {
    padding: 10px 10px 10px 40px;
  }
  .link-area .modal-link:first-of-type a::after {
    width: 20px;
    height: 8px;
    left: 10px;
  }
  .link-area .modal-link:last-of-type a::after {
    width: 20px;
    height: 8px;
    right: 10px;
  }
  .link-area .btn-style {
    width: 82px;
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 40px 10px 10px;
  }
  .modal-box {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    padding: 40px 40px 120px;
  }
  .modal-box .out-wrap {
    padding: 0 40px 20px;
  }
  .modal-box .in-wrap {
    flex-direction: column;
  }
  .modal-box:not(.job-sales-modal) .img {
    width: 100%;
    max-width: 420px;
    margin-bottom: 20px;
  }
  .modal-box:not(.job-sales-modal) .text-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .modal-box .modal-title {
    margin-bottom: 40px;
  }
  .modal-box .modal-title .en {
    font-size: 21px;
    font-size: 1.3125rem;
    margin-right: 0;
    display: block;
  }
  .modal-box .modal-title .jp {
    font-size: 15px;
    font-size: 0.9375rem;
    display: block;
    margin: 0.3em 0 0;
  }
  .modal-box .content {
    height: calc(100% - 40px);
  }
  .modal-box .content-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .modal-box .blue-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .modal-box {
    padding: 40px 25px 120px;
  }
  .modal-box .out-wrap {
    padding: 0 20px 20px;
  }
  .modal-box:not(.job-sales-modal) .list01 {
    flex-direction: column;
  }
  .modal-box:not(.job-sales-modal) .list01 .list-item {
    width: 100%;
    text-align: center;
  }
  .modal-box:not(.job-sales-modal) .list02 {
    flex-direction: column;
  }
  .modal-box:not(.job-sales-modal) .list02 li {
    width: 100%;
  }
}
/* ===== products-modal　製品紹介 ===== */
.modal-box.products-modal {
  width: 80%;
  max-width: 1100px;
  height: 80vh;
}

/* ===== interview-modal　社員紹介 ===== */
.modal-box.interview-modal {
  max-height: none;
}
.modal-box.interview-modal .profile {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 3em 0;
}
.modal-box.interview-modal .profile .name {
  font-size: 28px;
  font-size: 1.75rem;
}
.modal-box.interview-modal .catch {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 45px;
}
.modal-box.interview-modal .catch + p {
  margin-bottom: 90px;
}
.modal-box.interview-modal .theme {
  margin-bottom: 80px;
}
.modal-box.interview-modal .theme h4 {
  display: flex;
  align-items: center;
  color: var(--color-blue);
  line-height: 1.5;
  margin-bottom: 20px;
}
.modal-box.interview-modal .theme h4 .en {
  font-family: var(--fontfamily-en);
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: 0.8em;
}
.modal-box.interview-modal .theme h4 .number {
  font-family: var(--fontfamily-en);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1em;
}
.modal-box.interview-modal .theme h4 .theme-title {
  font-weight: 700;
}
.modal-box.interview-modal .theme h4::before {
  content: "";
  height: 1px;
  width: 55px;
  background-color: var(--color-black);
  margin-right: 10px;
}
.modal-box.interview-modal .private {
  color: var(--color-blue);
  padding-top: 40px;
}
.modal-box.interview-modal .private h3 {
  line-height: 1.5;
  margin-bottom: 30px;
}
.modal-box.interview-modal .private h3 .en {
  font-family: var(--fontfamily-en);
  font-size: 48px;
  font-size: 3rem;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 0.5em;
}
.modal-box.interview-modal .private h3 .jp {
  font-weight: 700;
}
.modal-box.interview-modal .private img {
  max-width: 290px;
  margin-top: 30px;
}
.modal-box.interview-modal .private img.vertical {
  max-width: 200px;
}

@media screen and (max-width: 1200px) {
  .modal-box.interview-modal .catch {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .modal-box.interview-modal .in-wrap {
    align-items: flex-start;
  }
  .modal-box.interview-modal .img {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal-box.interview-modal .profile {
    margin: 25px 0;
  }
  .modal-box.interview-modal .profile .name {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .modal-box.interview-modal .catch {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .modal-box.interview-modal .catch + p {
    margin-bottom: 70px;
  }
  .modal-box.interview-modal .theme {
    margin-bottom: 60px;
  }
  .modal-box.interview-modal .private {
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .modal-box.interview-modal .catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .modal-box.interview-modal .theme h4 .number {
    margin-right: 1em;
  }
  .modal-box.interview-modal .theme h4::before {
    width: 30px;
  }
  .modal-box.interview-modal .private h3 .en {
    font-size: 36px;
    font-size: 2.25rem;
    display: block;
  }
  .modal-box.interview-modal .private h3 .jp {
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
  }
}
/*=== job-sales-modal ====*/
.job-sales-modal {
  padding-left: 0 !important;
}
.job-sales-modal .modal-wrap {
  padding: 20px 40px;
}
.job-sales-modal .left-padding {
  padding-left: 40px;
}
.job-sales-modal .top-area {
  display: flex;
  justify-content: space-between;
  padding: 0 0 80px;
}
.job-sales-modal .top-area .text {
  width: 40%;
}
.job-sales-modal .top-area .img {
  width: 50%;
}
.job-sales-modal .top-area .title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  margin: 0 0 120px;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.5rem;
}
.job-sales-modal .top-area .catch {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.8;
}
.job-sales-modal .band-title {
  position: relative;
  left: -80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 700;
  background: var(--color-blue);
  padding: 0.8em 2em 0.8em 7.5%;
  margin: 0 0 2em;
  border-radius: 0 1.3em 1.3em 0;
}
.job-sales-modal .work {
  padding: 0 0 100px;
}
.job-sales-modal .work .item-wrap {
  display: flex;
  justify-content: space-between;
}
.job-sales-modal .work .item {
  width: 30%;
}
.job-sales-modal .work .item .img {
  width: 80%;
  margin: 0 auto;
}
.job-sales-modal .work .item .text-wrap {
  width: 100%;
}
.job-sales-modal .work .item .title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
  margin: 0.3em 0 0.5em;
}
.job-sales-modal .work .item .text {
  line-height: 2;
  text-align: justify;
}
.job-sales-modal .schedule .item {
  position: relative;
  padding: 0 0 25px;
}
.job-sales-modal .schedule .item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-black);
}
.job-sales-modal .schedule .title {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--color-blue);
}
.job-sales-modal .schedule .title .time {
  display: flex;
  align-items: center;
  width: 100px;
}
.job-sales-modal .schedule .title .time .icon {
  display: block;
  width: 36px;
}
.job-sales-modal .schedule .title .time .number {
  display: block;
  margin: 0 0 0 1em;
}
.job-sales-modal .schedule .item-contents {
  padding: 0 0 0 100px;
  display: flex;
  justify-content: space-between;
}
.job-sales-modal .schedule .item-contents .text {
  width: calc(100% - 290px);
  line-height: 2;
}
.job-sales-modal .schedule .item-contents .img {
  width: 250px;
}
.job-sales-modal .link-area {
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .job-sales-modal .top-area {
    flex-direction: column;
  }
  .job-sales-modal .top-area .text {
    width: 100%;
  }
  .job-sales-modal .top-area .img {
    width: 100%;
    margin: 30px 0 0;
  }
  .job-sales-modal .top-area .title {
    margin: 0 0 1.5em;
  }
  .job-sales-modal .work .item-wrap {
    flex-direction: column;
    gap: 50px 0;
  }
  .job-sales-modal .work .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .job-sales-modal .work .item .img {
    width: 180px;
    margin: 0;
  }
  .job-sales-modal .work .item .text-wrap {
    width: calc(100% - 200px);
  }
  .job-sales-modal .work .item .title {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 0.5em;
  }
  .job-sales-modal .schedule .item-contents {
    flex-direction: column;
  }
  .job-sales-modal .schedule .item-contents .text {
    width: 100%;
  }
  .job-sales-modal .schedule .item-contents .img {
    width: 100%;
    max-width: 360px;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .job-sales-modal .modal-wrap {
    padding: 0 20px;
  }
  .job-sales-modal .left-padding {
    padding-left: 20px;
  }
  .job-sales-modal .band-title {
    left: -40px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .job-sales-modal .top-area .title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .job-sales-modal .top-area .catch {
    font-size: 16px;
    font-size: 1rem;
  }
  .job-sales-modal .work {
    padding: 0 0 80px;
  }
  .job-sales-modal .work .item-wrap {
    gap: 50px 0;
  }
  .job-sales-modal .work .item {
    flex-direction: column;
  }
  .job-sales-modal .work .item .img {
    width: 100%;
    max-width: 140px;
    margin: 0 auto 20px;
  }
  .job-sales-modal .work .item .text-wrap {
    width: 100%;
  }
  .job-sales-modal .work .item .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .job-sales-modal .schedule .item-contents {
    padding: 0 0 0 50px;
  }
}

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