@charset "UTF-8";
.common-btns {
  gap: 0.75rem;
}
.common-btns__btns {
  flex-wrap: wrap;
}
@media print, screen and (min-width: 992px) {
  .common-btns {
    gap: 2.5rem;
  }
  .common-btns__btns {
    gap: 0.4rem;
  }
}

.common-btn {
  flex: 1;
  cursor: pointer;
}
.common-btn__text {
  font-size: 1rem;
}
@media print, screen and (min-width: 992px) {
  .common-btn__text {
    font-size: 1.1rem;
  }
}
.common-btn__text {
  letter-spacing: 0;
}
.common-btn__text--en {
  font-size: 1rem;
  letter-spacing: 0;
}
.common-btn__icon {
  font-size: 0;
}
.common-btn__icon img,
.common-btn__icon source {
  width: auto;
  height: 1rem;
}
.common-btn--contact {
  flex-grow: 1.5;
  background: #ff8307;
  gap: 0.5em;
}
@media print, screen and (min-width: 992px) {
  .common-btn--contact {
    gap: 3px;
  }
}
.common-btn__text--contact {
  position: relative;
}
.common-btn__text--contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1rem;
  transform: translate(75%, 0);
  display: inline-block;
  width: 2.7rem;
  aspect-ratio: 80/20;
  background: url(../assets/images/common/cursive-joinus.png) no-repeat center center/contain;
}
@media print, screen and (min-width: 992px) {
  .common-btn__text--contact::after {
    width: 4.1rem;
    right: 0;
  }
}
.common-btn--movie {
  background: #000000;
  order: 4;
}
.common-btn--job {
  background: #000000;
}
.common-btn--webexplanation {
  background: #ff8307;
  border-right: 1px solid #ddd;
  gap: 0.3em;
}
@media print, screen and (min-width: 992px) {
  .common-btn--webexplanation {
    border: none;
  }
}
.common-btn--meeting {
  background: #ff8307;
}
@media print, screen and (min-width: 992px) {
  .common-btn--meeting {
    border: none;
    gap: 3px;
  }
}
.common-btn--meeting .common-btn__icon img {
  height: 2rem;
}
@media print, screen and (min-width: 992px) {
  .common-btn {
    flex: initial;
    width: 8.1rem;
    height: 5.9rem;
    border-radius: 0.3rem;
  }
  .common-btn__text {
    font-size: 1.1rem;
  }
  .common-btn__text--en {
    font-size: 1.1rem;
  }
  .common-btn__icon img {
    height: 1.6rem;
  }
  .common-btn__text--contact::after {
    width: 3.6rem;
    transform: translate(24%, 24%);
  }
}

.sns-list {
  gap: 0.5rem;
  padding-right: 1.4rem;
}
.sns-list a picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sns-list a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media print, screen and (min-width: 992px) {
  .sns-list {
    gap: 0.9rem;
    padding-right: 0;
  }
}

.fixed-btn .common-btn--job {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .fixed-btn .common-btn--job {
    display: flex;
  }
}
.fixed-btn .common-btn--movie {
  border-left: 1px solid #fff;
}
@media print, screen and (min-width: 992px) {
  .fixed-btn .common-btn--movie {
    border: none;
  }
}
@media print, screen and (min-width: 992px) {
  .fixed-btn {
    right: 0.6rem;
  }
  .fixed-btn .common-btn--job {
    display: flex;
  }
  .fixed-btn[data-status=scrolled] {
    top: 4.6rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn {
    height: 5rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn__icon img {
    width: auto;
    height: 1.1rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn__icon--job img {
    height: 1.3rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn--contact {
    height: 5rem;
    flex-direction: column;
    gap: 3px 0;
  }
  .fixed-btn[data-status=scrolled] .common-btn__text--contact {
    font-size: 0.9375rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn__text--contact::after {
    width: 2.9rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn__icon--contact img {
    height: 1.1rem;
  }
  .fixed-btn[data-status=scrolled] .common-btn__icon--meeting img {
    height: 1.6rem !important;
  }
}

.movie-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s linear;
}
.movie-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.movie-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.movie-modal__wrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  max-height: 90%;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem 0 0;
}
.movie-modal__closeBtn {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.movie-modal__closeBtn::before {
  content: "×";
  font-size: 1.5rem;
  color: #fff;
}
.movie-modal__body {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.movie-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 992px) {
  .movie-modal__wrap {
    padding: 4rem 0 0;
  }
  .movie-modal__closeBtn {
    width: 4rem;
  }
  .movie-modal__closeBtn::before {
    font-size: 2rem;
  }
}

.pageTitleNews {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pageTitleNews::before {
  height: 6rem;
}
.pageTitleNews .pageTitle__en {
  top: 2.6rem;
  right: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-size: 4rem;
  text-transform: none;
  text-align: right;
}
.pageTitleNews .pageTitle__header {
  flex-direction: column;
  align-items: flex-start;
}
.pageTitleNews .pageTitle__title {
  color: #858585;
  font-size: 0.9rem;
  line-height: 1;
}
.pageTitleNews .pageTitle__mintitle {
  font-family: Lato, sans-serif;
  color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, #f4768e, #ff8307);
  -webkit-background-clip: text;
  background-clip: text;
}
.pageTitleNews .pageTitle__deco {
  width: 5rem;
  height: auto;
  aspect-ratio: 355/192;
  background-image: url(./images/common/confetti-news.png);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  transform: none;
}
@media print, screen and (min-width: 992px) {
  .pageTitleNews {
    padding-top: 8.1rem;
    padding-bottom: 8.1rem;
  }
  .pageTitleNews::before {
    height: 15.6rem;
  }
  .pageTitleNews .pageTitle__en {
    top: 5.1rem;
    font-size: 12.5rem;
  }
  .pageTitleNews .pageTitle__title {
    font-size: 2.2rem;
  }
  .pageTitleNews .pageTitle__mintitle {
    font-size: 7.5rem;
  }
  .pageTitleNews .pageTitle__deco {
    width: 11.3rem;
  }
}

.news-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid #f9bc91;
}
.news-archive__item {
  position: relative;
  border-bottom: 2px solid #f9bc91;
}
.news-archive__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem 5rem;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 1.4em 3em 1.4em 0.4em;
}
.news-archive__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6em;
  display: inline-block;
  width: 0.75em;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
.news-archive__date {
  flex-shrink: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
}
.news-archive__title {
  flex: 1;
  font-weight: 700;
}
.news-archive__footer {
  margin: 3.8rem 0 0;
}
@media print, screen and (min-width: 992px) {
  .news-archive__link {
    flex-direction: row;
    align-items: center;
    font-size: 1.4375rem;
    padding: 1em 3em 1em 0.4em;
  }
  .news-archive__link::after {
    width: 0.5em;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}

.news-pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.news-pager__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #000;
  text-decoration: none;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}
.news-pager__item.is-current {
  background: linear-gradient(to right, #eaac98, #e18c84);
  box-shadow: 0 0.5rem 1.6rem rgba(0, 0, 0, 0.35);
}
.news-pager__prev::before, .news-pager__next::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.news-pager__prev.is-disabled, .news-pager__next.is-disabled {
  visibility: hidden;
}
.news-pager__prev::before {
  transform: scale(-1, 1) rotate(45deg);
}
@media print, screen and (min-width: 992px) {
  .news-pager__item {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
  .news-pager__prev::before, .news-pager__next::before {
    border-top-width: 2px;
    border-right-width: 2px;
  }
}

.news-detail__header {
  border-bottom: 2px solid #f9bc91;
  padding: 0 0 0.75rem;
  margin: 0 0 2rem;
}
.news-detail__date {
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.news-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.news-detail__content {
  font-size: 1rem;
  line-height: 1.7;
}
.news-detail__content p span[style="color: #339966"] {
  color: #ff8307 !important;
}
.news-detail__content p img {
  width: 100%;
  height: auto;
}
.news-detail__content p + p {
  margin-top: 1.7em;
}
.news-detail__content p + p:has(img) {
  margin-top: 2.5rem;
}
.news-detail__content hr {
  border-top: 1px solid #f9bc91;
  margin: 1.5em 0;
}
.news-detail__content h2 span[style="color: #339966"],
.news-detail__content h3 span[style="color: #339966"],
.news-detail__content h4 span[style="color: #339966"],
.news-detail__content h5 span[style="color: #339966"] {
  color: #ff8307 !important;
}
.news-detail__content h2 {
  font-size: 1.4rem;
  color: #ff8307;
  font-weight: 700;
  line-height: 1.5;
  background-color: #f9f8f3;
  margin: 2em 0 1em;
  padding: 0.25em 1em;
}
.news-detail__content h3 {
  color: #ff8307;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  border-left: 3px solid #ff8307;
  margin: 2em 0 1em;
  padding: 0 0 0 1em;
}
.news-detail__content h4 {
  color: #ff8307;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1em 0;
}
.news-detail__content h5 {
  color: #ff8307;
  font-weight: 700;
  font-size: 1rem;
  margin: 1em 0;
}
.news-detail__footer {
  border-top: 2px solid #f9bc91;
  padding: 2rem 0 0;
  margin: 2rem 0 0;
}
.news-detail__back {
  flex-direction: row-reverse;
}
.news-detail__back .btn__arrow {
  transform: scale(-1, 1);
}
@media print, screen and (min-width: 992px) {
  .news-detail__header {
    padding: 0 0 1.3rem;
    margin: 0 0 3.8rem;
    border-bottom-width: 0.3rem;
  }
  .news-detail__date {
    font-size: 1.6rem;
  }
  .news-detail__title {
    font-size: 2.5rem;
  }
  .news-detail__content {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .news-detail__content p + p {
    margin-top: 1.4em;
  }
  .news-detail__content p + p:has(img) {
    margin-top: 6.3rem;
  }
  .news-detail__content h2 {
    font-size: 1.9rem;
  }
  .news-detail__content h3 {
    font-size: 1.8rem;
    border-left-width: 0.3rem;
  }
  .news-detail__content h4 {
    font-size: 1.6rem;
  }
  .news-detail__content h5 {
    font-size: 1.6rem;
  }
  .news-detail__content hr {
    border-top-width: 2px;
  }
  .news-detail__footer {
    padding: 3.8rem 0 0;
    margin: 4.4rem 0 0;
  }
  .news-detail__back {
    width: auto;
  }
}

.top-kv__banner {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .top-kv__scroll {
    right: 3.4rem;
  }
  .top-kv__banner {
    display: block;
  }
}

.kv-arrow {
  width: 6em;
  height: 6em;
}

.kv-banners__item {
  width: auto;
  flex: 1;
}
@media print, screen and (min-width: 992px) {
  .kv-banners__item:nth-child(3) a {
    width: 88%;
  }
}
.kv-banners__item:nth-child(3) a img {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .kv-banners__item {
    flex: initial;
    width: 17rem;
  }
  .kv-banners__item img {
    width: 100%;
    background-color: #fff;
  }
  .kv-banners__item:nth-child(3) img {
    width: 85%;
  }
}

.top-banner {
  display: block;
  max-width: 600px;
  margin: 1rem auto 0;
}
.top-banner__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media print, screen and (min-width: 992px) {
  .top-banner {
    display: none;
  }
}
.top-banner .kv-banners {
  flex-direction: column !important;
}
@media print, screen and (min-width: 992px) {
  .top-banner .kv-banners {
    flex-direction: row !important;
  }
}
.top-banner .kv-banners__item {
  width: 70%;
  margin: 0 auto;
}
.top-banner .kv-banners__item img {
  width: 100%;
}

.top-news__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.top-news__title {
  position: relative;
  width: fit-content;
  margin: 0 0 1.3rem;
}
.top-news__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 5rem;
  aspect-ratio: 355/192;
  background-image: url(./images/common/confetti-news.png);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
}
.top-news__title .top-h2__ja {
  font-size: 0.9rem;
}
.top-news__title .top-h2__en {
  font-size: 2.5rem;
  text-transform: none;
}
.top-news__btnWrap {
  width: fit-content;
  margin: 3.1rem auto 0;
}
@media print, screen and (min-width: 992px) {
  .top-news__container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 72.5rem;
  }
  .top-news__title {
    margin: 0 0 2.8rem;
  }
  .top-news__title::before {
    width: 11.3rem;
  }
  .top-news__title .top-h2__ja {
    font-size: 1.6rem;
  }
  .top-news__title .top-h2__en {
    font-size: 5.6rem;
  }
}

@media print, screen and (min-width: 992px) {
  .job-list {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    font-size: 0.9rem;
    gap: 2em;
  }
  .job-list__item {
    width: fit-content;
    max-width: 100%;
  }
}

.job-link {
  gap: 0.5em;
}

.mynabi-link {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 16px;
  max-width: 500px;
}
@media print, screen and (min-width: 992px) {
  .mynabi-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 500px;
  }
}
.mynabi-link a,
.mynabi-link img {
  display: block;
  width: 100%;
  height: auto;
}

.meeting .form-table__head {
  font-size: 1.16rem;
}
.meeting .form-table__row {
  align-items: start;
}
.meeting .form-table__row .form-adornments {
  align-items: center;
}
.meeting .form-table__row .form-adornments .form-control:first-child {
  margin-bottom: 10px;
}
.meeting .form-table__row .form-adornments select {
  padding-right: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><path fill="%23333" d="M0 3l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.global-list__item-none {
  display: none !important;
}
@media print, screen and (min-width: 992px) {
  .global-list__item-none {
    display: flex !important;
  }
}

.global-list__item_sp {
  display: flex;
}
@media print, screen and (min-width: 992px) {
  .global-list__item_sp {
    display: none !important;
  }
}

.common-btns__btns .common-btn--contact {
  order: 0;
  border-right: 1px solid #fff;
}
@media print, screen and (min-width: 992px) {
  .common-btns__btns .common-btn--contact {
    order: 0;
    border: none;
  }
}

.global-nav__sub .common-btn--contact {
  flex: initial;
  width: 100%;
}
.global-nav__sub .common-btns .common-btns__btns {
  display: flex !important;
}
.global-nav__sub .common-btns .common-btns__btns .common-btn--movie {
  display: flex !important;
  border-left: 1px solid #fff;
  border-right: none;
}
.global-nav__sub .common-btns .common-btns__btns .common-btn__text {
  font-size: 0.9rem;
}
.global-nav .common-btn--movie {
  order: 3;
}

.common-btns .common-btns__btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (min-width: 992px) {
  .common-btns .common-btns__btns {
    display: flex;
  }
}
.common-btns .common-btn--contact {
  display: none !important;
}
@media print, screen and (min-width: 992px) {
  .common-btns .common-btn--contact {
    display: flex;
  }
}

.form-table__content-check .wpcf7-list-item {
  margin: 0;
}
.form-table__content-check .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-table__content-check label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: fit-content;
}
.form-table__content-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #999999;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.form-table__content-check input[type=checkbox]:checked {
  background-color: #4a90d9;
  border-color: #4a90d9;
}
.form-table__content-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.news-detail__video {
  width: 100%;
  max-width: 500px !important;
  aspect-ratio: 500/281;
  margin-top: 2em;
}
.news-detail__video iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=0427add.css.map */