@charset "UTF-8";
/* ============================================ */
/* modal
/* ============================================ */
/* ===== 閉じるボタン ===== */
.closeModalBtn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 90px;
  cursor: pointer;
}
.closeModalBtn svg {
  pointer-events: none;
}
.closeModalBtn .close-icon {
  fill: none;
  stroke: #e50012;
  stroke-linecap: round;
  stroke-width: 2px;
}
.closeModalBtn .close-text {
  fill: #e50012;
}

/* ===== カーソル ===== */
.navBtn {
  position: absolute;
  bottom: 30px;
  cursor: pointer;
  z-index: 1002;
  width: 75px;
}
.navBtn .arrow-text {
  fill: none;
  stroke: #e50012;
  stroke-linecap: round;
  stroke-width: 2px;
}
.navBtn .arrow-icon {
  fill: #e50012;
}
.navBtn.prevBtn {
  left: 30px;
}
.navBtn.nextBtn {
  right: 30px;
}

/* ===== モーダル枠 ===== */
.modalContent {
  border-radius: 10px;
  background: var(--color-white);
  width: 90%;
  max-width: 1000px;
  height: 90svh;
  max-height: 650px;
}
.modalContent .modalBody {
  overflow-y: auto;
  position: absolute;
  left: 5%;
  top: 80px;
  width: 90%;
  height: calc(100% - 80px - 100px) !important;
}
.modalContent .modalBody::-webkit-scrollbar {
  width: 2px;
}
.modalContent .modalBody::-webkit-scrollbar-track {
  background: var(--color-gray);
}
.modalContent .modalBody::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 1px;
}

@media screen and (max-width: 768px) {
  .modalContent {
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100svh;
    max-height: none;
  }
}
/* ============================================ */
/* modal（共通）
/* ============================================ */
#modal .modal-title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5;
  color: var(--color-red);
  margin: 0 0 1.2em;
}
#modal .modal-catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 1em;
}
#modal .modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#modal .modal-top .text {
  width: 55%;
  line-height: 2.2;
  text-align: justify;
}
#modal .modal-top .img {
  width: 40%;
}
#modal .modal-top.img-min .text {
  width: 60%;
}
#modal .modal-top.img-min .img {
  width: 35%;
}
#modal .modal-heading {
  display: flex;
  align-items: first baseline;
  gap: 25px;
  color: var(--color-red);
  margin: 0 0 20px;
}
#modal .modal-heading .en {
  font-family: var(--fontfamily-en);
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 300;
}
#modal .modal-heading .ja {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  #modal .modal-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #modal .modal-catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #modal .modal-top {
    flex-direction: column;
    gap: 30px;
  }
  #modal .modal-top .text {
    width: 100%;
  }
  #modal .modal-top .img {
    width: 100%;
  }
  #modal .modal-top.img-min .text {
    width: 100%;
  }
  #modal .modal-top.img-min .img {
    width: 100%;
  }
  #modal .modal-heading {
    gap: 15px;
    margin: 0 0 30px;
  }
  #modal .modal-heading .en {
    font-size: 28px;
    font-size: 1.75rem;
  }
  #modal .modal-heading .ja {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  #modal .modal-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #modal .modal-heading {
    flex-direction: column;
    gap: 10px;
  }
}
/* ============================================ */
/* modal（各コンテンツ）
/* ============================================ */
/* ===== group-index ===== */
#modal .group-index,
#modal .group-index02 {
  /* 実はすごい！森永乳業の秘密 */
  /* 私の好きな自社商品 */
}
#modal .group-index .modalBody,
#modal .group-index02 .modalBody {
  left: auto;
  width: 95%;
  padding: 0 80px;
  overflow-x: hidden;
}
#modal .group-index .text,
#modal .group-index02 .text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2;
}
#modal .group-index .secret-title,
#modal .group-index02 .secret-title {
  position: relative;
  left: -40px;
  width: 100%;
  max-width: 340px;
  margin: 0 0 20px;
}
#modal .group-index .secret-contents,
#modal .group-index02 .secret-contents {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#modal .group-index .secret-contents .text-wrap,
#modal .group-index02 .secret-contents .text-wrap {
  width: 60%;
}
#modal .group-index .secret-contents .img,
#modal .group-index02 .secret-contents .img {
  width: 32%;
}
#modal .group-index .secret-contents .img .note,
#modal .group-index02 .secret-contents .img .note {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.2;
  text-align: center;
  margin: 1em 0 0;
}
#modal .group-index .secret-contents .link,
#modal .group-index02 .secret-contents .link {
  margin: 45px 0 0;
}
#modal .group-index .favorite-title,
#modal .group-index02 .favorite-title {
  position: relative;
  left: -80px;
  width: 100%;
  max-width: 430px;
  min-width: 300px;
  margin: 0 0 45px;
}
#modal .group-index .favorite-contents,
#modal .group-index02 .favorite-contents {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
#modal .group-index .favorite-contents.reverse,
#modal .group-index02 .favorite-contents.reverse {
  flex-direction: row-reverse;
}
#modal .group-index .favorite-contents .text-wrap,
#modal .group-index02 .favorite-contents .text-wrap {
  width: 60%;
}
#modal .group-index .favorite-contents .img,
#modal .group-index02 .favorite-contents .img {
  display: flex;
  justify-content: center;
}
#modal .group-index .favorite-contents .people,
#modal .group-index02 .favorite-contents .people {
  width: 30%;
  min-width: 250px;
  flex-shrink: 0;
}
#modal .group-index .favorite-contents .products,
#modal .group-index02 .favorite-contents .products {
  width: 60%;
  min-width: 180px;
}
#modal .group-index .favorite-contents .profile,
#modal .group-index02 .favorite-contents .profile {
  margin: 40px 0 20px;
  line-height: 1.5;
}
#modal .group-index .favorite-contents .profile .department,
#modal .group-index02 .favorite-contents .profile .department {
  font-size: 15px;
  font-size: 0.9375rem;
}
#modal .group-index .favorite-contents .profile .name span,
#modal .group-index02 .favorite-contents .profile .name span {
  display: inline-block;
}
#modal .group-index .favorite-contents .profile .name .en,
#modal .group-index02 .favorite-contents .profile .name .en {
  color: var(--color-red);
  font-family: var(--fontfamily-en);
  font-size: 29px;
  font-size: 1.8125rem;
}
#modal .group-index .favorite-contents .profile .name .year,
#modal .group-index .favorite-contents .profile .name .from,
#modal .group-index02 .favorite-contents .profile .name .year,
#modal .group-index02 .favorite-contents .profile .name .from {
  font-size: 14px;
  font-size: 0.875rem;
}
#modal .group-index .favorite-contents .profile .name .year,
#modal .group-index02 .favorite-contents .profile .name .year {
  margin: 0 2em 0 0;
}
#modal .group-index .favorite-contents .link,
#modal .group-index02 .favorite-contents .link {
  margin: 70px 0 0;
}

@media screen and (max-width: 768px) {
  #modal .group-index,
#modal .group-index02 {
    /* 実はすごい！森永乳業の秘密 */
    /* 私の好きな自社商品 */
  }
  #modal .group-index .text,
#modal .group-index02 .text {
    font-size: 16px;
    font-size: 1rem;
  }
  #modal .group-index .secret-contents,
#modal .group-index02 .secret-contents {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #modal .group-index .secret-contents .text-wrap,
#modal .group-index02 .secret-contents .text-wrap {
    width: 100%;
  }
  #modal .group-index .secret-contents .img,
#modal .group-index02 .secret-contents .img {
    width: 100%;
    max-width: 240px;
  }
  #modal .group-index .secret-contents .img .note,
#modal .group-index02 .secret-contents .img .note {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #modal .group-index .secret-contents .link,
#modal .group-index02 .secret-contents .link {
    margin: 30px 0 0;
  }
  #modal .group-index .favorite-contents.reverse .img,
#modal .group-index02 .favorite-contents.reverse .img {
    flex-direction: row-reverse;
  }
  #modal .group-index .favorite-contents .text-wrap,
#modal .group-index02 .favorite-contents .text-wrap {
    width: 100%;
  }
  #modal .group-index .favorite-contents .img,
#modal .group-index02 .favorite-contents .img {
    align-items: center;
    justify-content: center;
  }
  #modal .group-index .favorite-contents .people,
#modal .group-index02 .favorite-contents .people {
    width: 40%;
    min-width: auto;
  }
  #modal .group-index .favorite-contents .products,
#modal .group-index02 .favorite-contents .products {
    width: 40%;
    min-width: auto;
  }
  #modal .group-index .favorite-contents .profile,
#modal .group-index02 .favorite-contents .profile {
    margin: 20px 0 15px;
  }
  #modal .group-index .favorite-contents .profile .department,
#modal .group-index02 .favorite-contents .profile .department {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #modal .group-index .favorite-contents .profile .name .en,
#modal .group-index02 .favorite-contents .profile .name .en {
    font-size: 27px;
    font-size: 1.6875rem;
  }
  #modal .group-index .favorite-contents .profile .name .year,
#modal .group-index .favorite-contents .profile .name .from,
#modal .group-index02 .favorite-contents .profile .name .year,
#modal .group-index02 .favorite-contents .profile .name .from {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #modal .group-index .favorite-contents .link,
#modal .group-index02 .favorite-contents .link {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #modal .group-index,
#modal .group-index02 {
    /* 私の好きな自社商品 */
  }
  #modal .group-index .modalBody,
#modal .group-index02 .modalBody {
    padding: 0 40px;
  }
  #modal .group-index .text,
#modal .group-index02 .text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #modal .group-index .favorite-title,
#modal .group-index02 .favorite-title {
    left: -60px;
    margin: 0 0 30px;
  }
  #modal .group-index .favorite-contents .people,
#modal .group-index02 .favorite-contents .people {
    width: 55%;
  }
  #modal .group-index .favorite-contents .products,
#modal .group-index02 .favorite-contents .products {
    width: 45%;
  }
}
/* ===== group-job ===== */
#modal .group-job .modalBody {
  padding: 0 20px;
}
#modal .group-job .interview {
  margin: 50px 0 0;
}
#modal .group-job .interview .link-list {
  display: flex;
  gap: 40px;
}
#modal .group-job .interview .link-list .item {
  position: relative;
  max-width: 340px;
}
#modal .group-job .interview .link-list .img-wrap {
  position: relative;
}
#modal .group-job .interview .link-list .img-wrap .catch {
  display: none;
}
#modal .group-job .interview .link-list .img-wrap .icon-department {
  position: absolute;
  bottom: -10px;
  right: 15px;
  display: block;
  width: 17%;
  z-index: 1;
}
#modal .group-job .interview .link-list .link-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  padding: 0.8em 0.5em 0 0.8em;
}
#modal .group-job .interview .link-list .profile .department {
  font-size: 14px;
  font-size: 0.875rem;
}
#modal .group-job .interview .link-list .profile .en {
  font-family: var(--fontfamily-en);
  font-size: 18px;
  font-size: 1.125rem;
}
#modal .group-job .interview .link-list .profile .year {
  font-size: 70%;
  margin-left: 1.5em;
}
#modal .group-job .interview .link-list .icon-arrow {
  stroke: var(--color-black);
}

@media screen and (max-width: 600px) {
  #modal .group-job .interview .link-list {
    flex-direction: column;
    align-items: center;
  }
}
/* コース別色設定 */
#modal .sales-management .modal-title {
  color: var(--color-green);
}
#modal .research-development .modal-title {
  color: var(--color-blue);
}
#modal .production-technology .modal-title {
  color: var(--color-yellow);
}
#modal .engineering .modal-title {
  color: var(--color-yellow);
}
#modal .dairy-farming .modal-title {
  color: var(--color-pink);
}

/* ===== group-place ===== */
#modal .group-place .modalBody,
#modal .group-place02 .modalBody {
  padding: 0 20px;
}
#modal .group-place .modal-title::before,
#modal .group-place02 .modal-title::before {
  content: "PICK UP";
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: var(--fontfamily-en);
  font-weight: 300;
  margin: 0 1em 0 0;
  white-space: nowrap;
}
#modal .group-place .data,
#modal .group-place02 .data {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 0;
}
#modal .group-place .data .address,
#modal .group-place .data .products,
#modal .group-place02 .data .address,
#modal .group-place02 .data .products {
  position: relative;
  display: flex;
  align-items: baseline;
  width: 48%;
  min-height: 160px;
}
#modal .group-place .data .address .data-title,
#modal .group-place .data .products .data-title,
#modal .group-place02 .data .address .data-title,
#modal .group-place02 .data .products .data-title {
  position: relative;
  width: 4em;
  font-size: 25px;
  font-size: 1.5625rem;
  color: var(--color-red);
  white-space: nowrap;
  z-index: 1;
}
#modal .group-place .data .address .text,
#modal .group-place .data .products .text,
#modal .group-place02 .data .address .text,
#modal .group-place02 .data .products .text {
  position: relative;
  line-height: 1.8;
  z-index: 1;
}
#modal .group-place .data .products .img,
#modal .group-place02 .data .products .img {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 200px;
}
#modal .group-place .topics,
#modal .group-place02 .topics {
  margin: 50px 0 0;
}
#modal .group-place .topics .img,
#modal .group-place02 .topics .img {
  display: flex;
  justify-content: space-between;
}
#modal .group-place .topics .img img,
#modal .group-place02 .topics .img img {
  display: block;
  width: 30%;
  border-radius: 5px;
}
#modal .group-place .topics .text,
#modal .group-place02 .topics .text {
  line-height: 1.8;
  margin: 20px 0 0;
}
#modal .group-place .photo-snap,
#modal .group-place02 .photo-snap {
  margin: 50px 0 0;
}
#modal .group-place .photo-snap .roll-img,
#modal .group-place02 .photo-snap .roll-img {
  margin: 0;
}
#modal .group-place .photo-snap .roll-img .roll-item,
#modal .group-place02 .photo-snap .roll-img .roll-item {
  width: 270px;
  margin: 0 1px;
}

@media screen and (max-width: 768px) {
  #modal .group-place .data,
#modal .group-place02 .data {
    flex-direction: column;
    gap: 30px;
  }
  #modal .group-place .data .address,
#modal .group-place .data .products,
#modal .group-place02 .data .address,
#modal .group-place02 .data .products {
    width: 100%;
  }
  #modal .group-place .data .address .data-title,
#modal .group-place .data .products .data-title,
#modal .group-place02 .data .address .data-title,
#modal .group-place02 .data .products .data-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #modal .group-place .data .address,
#modal .group-place02 .data .address {
    min-height: auto;
  }
  #modal .group-place .data .products .img,
#modal .group-place02 .data .products .img {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  #modal .group-place .data .address .data-title,
#modal .group-place .data .products .data-title,
#modal .group-place02 .data .address .data-title,
#modal .group-place02 .data .products .data-title {
    font-size: 16px;
    font-size: 1rem;
  }
  #modal .group-place .data .products .img,
#modal .group-place02 .data .products .img {
    width: 200px;
  }
  #modal .group-place .topics .img,
#modal .group-place02 .topics .img {
    flex-direction: column;
    gap: 10px;
  }
  #modal .group-place .topics .img img,
#modal .group-place02 .topics .img img {
    width: 100%;
  }
}
/* ===== group-business ===== */
#modal .group-business .modalBody {
  padding: 0 40px 50px;
}
#modal .group-business .modal-title {
  color: #FF9FB2;
  margin: 0 0 0.5em;
}
#modal .group-business .modal-title::before {
  content: "";
  display: inline-block;
  width: 120px;
  height: 100px;
  background-image: url(../img/about-us/business/modal01/icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 20px 0 0;
}
#modal .group-business .modal-top {
  display: block;
  padding: 0 0 0 140px;
  margin: 0 80px 0 0;
}
#modal .group-business .modal-top .text {
  width: 100%;
  line-height: 2.2;
  text-align: justify;
}
#modal .group-business .modal-detail {
  margin: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px 0;
  padding: 0 6.5% 0 140px;
}
#modal .group-business .modal-detail .detail-item {
  width: 45%;
}
#modal .group-business .modal-detail .detail-item .title {
  font-size: 24px;
  font-size: 1.5rem;
  padding: 10px 15px;
  text-align: center;
  color: var(--color-white);
  border-radius: 5px;
}
#modal .group-business .modal-detail .detail-item .text {
  margin: 15px 0 0;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  text-align: justify;
}

/*カラー・アイコンなど個別設定*/
#modal .group-business .business01 .products-loop {
  margin: 30px auto 0;
}
#modal .group-business .business01 .products-loop .roll-img {
  display: flex;
  overflow: hidden;
  width: 100%;
}
#modal .group-business .business01 .products-loop .roll-img .roll-wrap {
  -webkit-animation: roll-left 50s infinite linear both;
          animation: roll-left 50s infinite linear both;
  display: flex;
}
#modal .group-business .business01 .products-loop .roll-img .roll-item {
  width: 1200px;
  /*firefoxバグ対策*/
  margin: 0 0 0 -1px;
  background-color: var(--color-white);
  padding: 0 12px;
}
#modal .group-business .business02 .modal-title {
  color: var(--color-green);
}
#modal .group-business .business02 .modal-title::before {
  background-image: url(../img/about-us/business/modal02/icon.svg);
}
#modal .group-business .business02 .modal-top .item-wrap {
  width: 100%;
}
#modal .group-business .business02 .modal-detail .detail-item {
  width: 100%;
}
#modal .group-business .business02 .modal-detail .detail-item .title {
  width: 45%;
  background-color: var(--color-green);
}
#modal .group-business .business02 .modal-detail .detail-item .detail-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 40px 0 0;
  gap: 5%;
}
#modal .group-business .business02 .modal-detail .detail-item .detail-wrap .img {
  max-width: 190px;
  width: 35%;
}
#modal .group-business .business02 .modal-detail .detail-item .detail-wrap .text {
  margin: 0;
  width: 70%;
}
#modal .group-business .business02 .modal-detail .detail-item .detail-wrap .text .name {
  font-size: 20px;
  font-size: 1.25rem;
}
#modal .group-business .business03 .modal-title {
  color: var(--color-yellow);
}
#modal .group-business .business03 .modal-title::before {
  background-image: url(../img/about-us/business/modal03/icon.svg);
}
#modal .group-business .business03 .detail-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px 0;
}
#modal .group-business .business03 .detail-item .detail-wrap {
  width: 46%;
}
#modal .group-business .business04 .modal-title {
  color: var(--color-blue);
}
#modal .group-business .business04 .modal-title::before {
  background-image: url(../img/about-us/business/modal04/icon.svg);
}
#modal .group-business .business04 .modal-detail {
  padding: 0 6.5% 0 0;
}
#modal .group-business .business04 .modal-detail .detail-item .title {
  background-color: var(--color-blue);
}
#modal .group-business .business04 .modal-detail .detail-item.img {
  max-width: 300px;
  margin: 0 0 0 auto;
}
#modal .group-business .business04 .modal-detail .detail-item.img img {
  border-radius: 5px;
}
#modal .group-business .business04 .modal-detail .detail-item.img p {
  text-align: center;
  line-height: 1.5;
  margin: 0.5em 0 0;
}
#modal .group-business .business04 .modal-detail .detail-item .img {
  margin: 20px 0 0;
}
#modal .group-business .business04 .modal-detail .detail-item .img img + img {
  margin: 15px 0 0;
}
#modal .group-business .business04 .modal-detail .detail-item .img p {
  text-align: center;
  line-height: 1.5;
  margin: 0.5em 0 0;
}

/* スクロールアニメーション */
@-webkit-keyframes roll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes roll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  #modal .group-business .modalBody {
    padding: 0 30px 50px 30px;
  }
  #modal .group-business .modal-top {
    padding: 0;
    margin: 0;
  }
  #modal .group-business .modal-detail {
    padding: 0;
  }
  #modal .group-business .modal-detail .detail-item .title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  /*カラー・アイコンなど個別設定*/
  #modal .group-business .business04 .modal-detail {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  #modal .group-business .modalBody {
    padding: 0 20px 30px 20px;
  }
  #modal .group-business .modal-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #modal .group-business .modal-title::before {
    width: 80px;
    height: 60px;
    margin: 0 10px 0 0;
  }
  #modal .group-business .img p {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #modal .group-business .modal-detail {
    gap: 30px 0;
  }
  #modal .group-business .modal-detail .detail-item .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #modal .group-business .modal-detail .detail-item .text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  /*カラー・アイコンなど個別設定*/
  #modal .group-business .business01 .products-loop .roll-img .roll-item {
    width: 900px;
    padding: 0 10px;
  }
  #modal .group-business .business02 .modal-detail .detail-item .title {
    width: 100%;
  }
  #modal .group-business .business02 .modal-detail .detail-item .detail-wrap {
    margin: 30px 0 0;
  }
  #modal .group-business .business02 .modal-detail .detail-item .detail-wrap .text {
    width: 60%;
  }
  #modal .group-business .business02 .modal-detail .detail-item .detail-wrap .text .name {
    font-size: 16px;
    font-size: 1rem;
  }
  #modal .group-business .business03 .modal-detail .detail-item {
    gap: 30px 0;
  }
  #modal .group-business .business03 .modal-detail .detail-item .detail-wrap {
    width: 100%;
  }
  #modal .group-business .business03 .modal-detail .detail-item .detail-wrap .img img {
    width: 100%;
  }
  #modal .group-business .business04 .modal-top .img {
    gap: 5px 0;
  }
  #modal .group-business .business04 .modal-top .img img {
    width: 80%;
    padding: 0;
    margin: auto;
  }
  #modal .group-business .business04 .modal-top .img img:nth-of-type(2) {
    width: 100%;
    margin: 0;
  }
  #modal .group-business .business04 .modal-top .img p {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0px;
    width: 100%;
    text-align: center;
  }
  #modal .group-business .business04 .modal-detail .detail-item {
    width: 100%;
  }
  #modal .group-business .business04 .modal-detail .detail-item.img {
    max-width: 100%;
    margin: 0;
  }
  #modal .group-business .business04 .modal-detail .detail-item.img p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* ===== group-interview ===== */
#modal {
  /* 吹き出し */
}
#modal.lines {
  background-color: rgba(255, 255, 255, 0.6);
}
#modal.lines .modalContent {
  background: var(--color-red);
  color: var(--color-white);
  max-width: 730px;
  height: 90svh;
  max-height: 430px;
  box-shadow: none;
}
#modal.lines .closeModalBtn {
  top: auto;
  bottom: 50px;
  right: 70px;
}
#modal.lines .closeModalBtn .close-icon {
  stroke: var(--color-white);
}
#modal.lines .closeModalBtn .close-text {
  fill: var(--color-white);
}

#modal .group-interview .modalBody {
  padding: 0 50px;
  top: 60px;
}
#modal .group-interview .modalBody::-webkit-scrollbar-thumb {
  background: var(--color-white);
}
#modal .group-interview .modal-title {
  color: var(--color-white);
  margin: 0 0 0.8em;
}
#modal .group-interview .modal-title .small {
  font-size: 25px;
  font-size: 1.5625rem;
}
#modal .group-interview p {
  line-height: 2.2;
  text-align: justify;
}
#modal .group-interview .text-wrap {
  padding: 0 0 0 20px;
}
#modal .group-interview .text-wrap + .text-wrap {
  margin-top: 30px;
}
#modal .group-interview .text-wrap h4 {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
}
#modal .group-interview .text-wrap h4::before {
  content: "●";
  position: absolute;
  top: 0;
  left: -20px;
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 769px) {
  #modal.lines .modalContent {
    margin-top: -90px;
  }
  #modal.lines .modalContent::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    border-style: solid;
    border-width: 90px 90px 0 0;
    border-color: var(--color-red) transparent transparent;
    translate: calc(-50% - 0.4px) 100%;
    transform: skew(-16deg);
    transform-origin: top;
  }
}
@media screen and (max-width: 768px) {
  #modal.lines .modalContent {
    max-width: none;
    height: 100svh;
    max-height: none;
  }
  #modal.lines .closeModalBtn {
    right: 30px;
  }
  #modal .group-interview .modalBody {
    padding: 0 30px;
  }
  #modal .group-interview .modal-title .small {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #modal .group-interview .text-wrap h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* ===== welfare ===== */
#modal {
  /* 吹き出し */
}
#modal.welfare {
  background-color: rgba(229, 0, 18, 0.6);
}
#modal.welfare .modalContent {
  background: transparent;
  max-width: 980px;
  max-height: 500px;
  box-shadow: none;
}
#modal.welfare .modalBody {
  top: 40px;
  left: 0%;
  width: 100%;
  height: auto !important;
}
#modal.welfare .modalBody::-webkit-scrollbar-thumb {
  background: var(--color-white);
}
#modal.welfare .closeModalBtn {
  top: auto;
}
#modal.welfare .closeModalBtn .close-icon {
  stroke: var(--color-white);
}
#modal.welfare .closeModalBtn .close-text {
  fill: var(--color-white);
}

#modal .comment-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 80px;
  padding: 55px 0 0;
  position: relative;
}
#modal .comment-wrap::before {
  content: "REAL VOICE";
  position: absolute;
  top: 0;
  left: 400px;
  font-family: var(--fontfamily-en);
  font-size: 43px;
  font-size: 2.6875rem;
  color: var(--color-white);
  font-weight: 300;
}
#modal .comment-wrap .person {
  width: 320px;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 170%;
  overflow: hidden;
  border-radius: 100%;
}
#modal .comment-wrap .fukidashi {
  position: relative;
  max-width: 580px;
  width: calc(90% - 320px);
  background-color: var(--color-white);
  padding: 50px;
  border-radius: 10px;
}
#modal .comment-wrap .fukidashi::after {
  content: "";
  position: absolute;
  top: 45%;
  left: -70px;
  border-style: solid;
  border-width: 35px 50px;
  border-color: var(--color-white) var(--color-white) transparent transparent;
}
#modal .comment-wrap .fukidashi .title {
  font-size: 26px;
  font-size: 1.625rem;
  color: var(--color-red);
}
#modal .comment-wrap .fukidashi .text {
  margin: 30px 0;
  line-height: 1.85;
  text-align: justify;
}
#modal .comment-wrap .fukidashi .name {
  margin: 80px 0 0;
}
#modal .comment-wrap .fukidashi .name span {
  font-size: 14px;
  font-size: 0.875rem;
}
#modal .comment-wrap .fukidashi .name .en {
  font-family: var(--fontfamily-en);
  font-size: 29px;
  font-size: 1.8125rem;
  color: var(--color-red);
  margin-left: 0.5em;
}
#modal .comment-wrap .fukidashi .name .year {
  margin-left: 1em;
}

/* ===== welfare 社員個別設定 ===== */
#modal .life01 .person {
  background-image: url(../img/job-people/interview/im/index.jpg);
  background-position: top -20px left -70px;
}
#modal .life02 .person {
  background-image: url(../img/job-people/interview/hh/index.jpg);
  background-position: top -20px left -90px;
}
#modal .life03 .person {
  background-image: url(../img/job-people/interview/kk/index.jpg);
  background-position: top right -40px;
}
#modal .childcare01 .person {
  background-image: url(../img/job-people/interview/fy/index.jpg);
  background-position: top left -100px;
}
#modal .other01 .person {
  background-image: url(../img/job-people/interview/km/index.jpg);
  background-position: top left -130px;
}

@media screen and (max-width: 1024px) {
  #modal .comment-wrap {
    gap: 0 60px;
    padding: 45px 0 0;
  }
  #modal .comment-wrap::before {
    left: 340px;
    font-size: 36px;
    font-size: 2.25rem;
  }
  #modal .comment-wrap .person {
    width: 280px;
    height: 280px;
  }
  #modal .comment-wrap .fukidashi {
    width: calc(90% - 280px);
    padding: 40px 30px;
  }
  #modal .comment-wrap .fukidashi::after {
    top: 45%;
    left: -50px;
    border-width: 20px 30px;
  }
  #modal .comment-wrap .fukidashi .name {
    margin: 50px 0 0;
  }
  #modal .comment-wrap .fukidashi .name .department {
    display: block;
    margin-bottom: 5px;
  }
  #modal .comment-wrap .fukidashi .name .en {
    font-size: 22px;
    font-size: 1.375rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #modal.welfare .modalContent {
    max-height: none;
  }
  #modal.welfare .modalBody {
    top: 80px;
    left: 5%;
    width: 90%;
  }
  #modal.welfare .closeModalBtn {
    top: 30px;
  }
  #modal .comment-wrap::before {
    left: 0;
    font-size: 32px;
    font-size: 2rem;
  }
  #modal .comment-wrap .person {
    width: 230px;
    height: 230px;
    background-size: 190%;
    margin: auto;
  }
  #modal .comment-wrap .fukidashi {
    max-width: 100%;
    width: 100%;
    margin: 50px 0 0;
  }
  #modal .comment-wrap .fukidashi::after {
    width: 30px;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    border-width: 0px 30px 50px 30px;
    border-color: transparent transparent var(--color-white);
  }
  #modal .comment-wrap .fukidashi .title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #modal .comment-wrap .fukidashi .name {
    margin: 30px 0 0;
  }
  #modal .comment-wrap .fukidashi .name .en {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  #modal.welfare .modalBody {
    padding: 0 20px;
    max-height: calc(100% - 80px - 100px) !important;
  }
  #modal .comment-wrap .person {
    width: 160px;
    height: 160px;
    background-size: 200%;
  }
  #modal .comment-wrap .fukidashi {
    padding: 30px;
  }
  #modal .comment-wrap .fukidashi::after {
    top: -30px;
    border-width: 0px 15px 30px 15px;
  }
  #modal .comment-wrap .fukidashi .title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #modal .comment-wrap .fukidashi .name span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  /* ===== welfare 社員個別設定 ===== */
  #modal .life01 .person {
    background-position: top -15px left -55px;
  }
  #modal .life02 .person {
    background-position: top -15px left -70px;
  }
  #modal .childcare01 .person {
    background-position: top left -80px;
  }
  #modal .other01 .person {
    background-position: top left -100px;
  }
}

/*# sourceMappingURL=modal.css.map */