@charset "UTF-8";
/* 共通CSS */

/* <!-- ★コンポーネントを調整または独自パーツ★ --> */
#rwd-content .lm-float-area {
  z-index: 20;
  width: fit-content;

  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  margin-bottom: -65px;

  display: flex;
  justify-content: flex-end;
  padding-right: 36px;

  transition: 0.3s ease-out;
  transition-property: top;
}

#rwd-content .lm-float-area.header-out {
  position: fixed;
  top: 3vh;

  margin-bottom: 0;
}

#rwd-content .lm-float-area.is-active .lm-float-contents .lm-float-btn  {
  touch-action: manipulation;
}
#rwd-content .lm-float-area.is-active .lm-float-contents .lm-float-btn .lines .line:nth-child(1) {
  rotate: 45deg;
  translate: 0 0;
}
#rwd-content .lm-float-area.is-active .lm-float-contents .lm-float-btn .lines .line:nth-child(2) {
  translate: 300px 0;
}
#rwd-content .lm-float-area.is-active .lm-float-contents .lm-float-btn .lines .line:nth-child(3) {
  rotate: -45deg;
  translate: 0 0;
}
#rwd-content .lm-float-area.is-active .lm-float-contents .lm-float-link-area {
  opacity: 1;
  pointer-events: initial;
  user-select: initial;
  touch-action: initial;
}

#rwd-content .lm-float-area .lm-float-contents {
  position: relative;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-btn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 90px;
  height: 90px;
  aspect-ratio: 1;

  border-radius: 50%;
  background: #22234C;
  border: 0;

  overflow: hidden;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines {
  width: 42px;
  height: 42px;
  aspect-ratio: 1;

  position: relative;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines .line {
  display: block;

  width: 100%;
  height: 2px;
  background-color: #fff;

  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;

  transition: 0.3s 0.4s ease-out;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines .line:nth-child(1) {
  translate: 0 -10px;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines .line:nth-child(3) {
  translate: 0 10px;
}

#rwd-content .lm-float-area .lm-float-contents .lm-float-link-area {
  position: absolute;
  top: 100%;
  right: 95%;

  overflow-y: auto;

  height: fit-content;
  max-height: 50vh;

  width: 70vw;
  max-width: 400px;

  background: #22234C;

  padding: 30px 50px;

  opacity: 0;
  pointer-events: none;
  user-select: none;
  touch-action: none;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link {
  display: flex;
  flex-direction: column;
  gap: 1em;

  font-size: 20px;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link > li::after {
  background: #fff;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link > li:last-child {
  margin-bottom: 0;
}
#rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link > li > a {
  display: inline-block;

  position: relative;
  color: #fff;
}

#rwd-content .lm-other-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#rwd-content .lm-other-links .lm-other-link {
  display: grid;
  grid-template-columns: min(30%, 280px) 1fr;
  gap: 10px 20px;
}
#rwd-content .lm-other-links .lm-other-link .lm-other-link-ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
#rwd-content .lm-other-links .lm-other-link .lm-other-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}

#scrollTarget .js--close-fixed_btn {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.6em;
  border-radius: 50%;
  border: 0;
  aspect-ratio: 1;
  width: 32px;
  height: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #rwd-content .lm-contents-btn-list.rwd-grid-unison.pc-grid2of12 > .rwd-grid-item {
    width: calc((100% - 8%) / 5);
  }
  #rwd-content .lm-other-links .lm-other-link .lm-other-link-list > li {
    margin-bottom: 0;
  }
  #rwd-content .lm-other-links .lm-other-link .lm-other-link-list > li::after {
    content: unset;
  }
}

@media screen and (max-width: 767px) {
  #rwd-content .rwd-product-header {
    margin-bottom: 0;
  }
  #rwd-content .lm-float-area {
    margin-bottom: -15px;
    padding-right: 10px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-btn {
    width: 50px;
    height: 50px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines {
    width: 20px;
    height: 20px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines .line:nth-child(1) {
    translate: 0 -8px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-btn .lines .line:nth-child(3) {
    translate: 0 8px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-link-area {
    width: 50vw;
    padding: 20px;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link {
    gap: 1em;
  }
  #rwd-content .lm-float-area .lm-float-contents .lm-float-link-area .lm-float-link > li {
    margin-bottom: 0;
  }

  .btn_offer_link {
    padding: 1em 2em 1em 1em;
    font-size: 1em;
    margin: 10px;
    text-align: left;
  }
  #rwd-content .lm-other-links .lm-other-link {
    grid-template-columns: 100%;
  }
  #rwd-content .lm-other-links .lm-other-link .lm-other-link-list {
    flex-direction: column;
    gap: 0;
  }
  #rwd-content .lm-other-links .lm-other-link .lm-other-link-list > li a {
    font-weight: 400;
  }

  #scrollTarget .js--close-fixed_btn {
    right: 40px;
  }
  #scrollTarget .rwd-main-content-group {
    max-width: 240px;
    width: 100%;
  }
  #rwd-content .rwd-scroll-button {
    bottom: 20px !important;
  }
}

/* --------- TOP ---------- */
#rwd-content .lm-keyvisual-wrap {
  position: relative;
}
#rwd-content .lm-keyvisual {
  height: 550px;
}
#rwd-content .lm-keyvisual::after {
  position: absolute;
  content: '';
  z-index: 1;

  background: linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 50.29%);

  width: 100%;
  height: 100%;

  inset: 0;
  margin: auto;
}
#rwd-content .lm-keyvisual .lm-keyvisual-image {
  height: 100%;
  object-fit: cover;
  object-position: 70%;
}
#rwd-content .lm-keyvisual figcaption {
  position: absolute;
  z-index: 2;

  top: 160px;
  left: 7.8%;

  color: #fff;

  margin-top: 0;

  display: flex;
  flex-direction: column;
  row-gap: 20px;

  font-family: "A-OTF Ryumin Pro";
}
#rwd-content .lm-keyvisual figcaption .main-text {
  font-size: 6rem;
  font-weight: 550;
  line-height: 140%;
  text-shadow: none;
}

#rwd-content .lm-keyvisual figcaption .sub-text {
  font-size: 15px;
  font-weight: 550;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-shadow: none;
}

#rwd-content .lm-keyvisual-wrap .lm-anchor-btn-list {
  position: absolute;
  z-index: 3;

  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;

  padding-inline: 10px;
}

#rwd-content .lm-division-each {
  padding: 150px 0 110px;
}

#rwd-content .lm-division-each.rwd-bg-box-color {
  padding: 150px 0 110px;
}

#rwd-content .lm-division-each .lm-card-group {
  max-width: 1280px;
}

#rwd-content .lm-division-keyvisual figcaption {
  top: auto;
  bottom: 15%;
  z-index: 2;
}

#rwd-content .lm-division-keyvisual figcaption .main-text {
  margin-bottom: 0;
  text-shadow: none;
}

#rwd-content .lm-anchor-btn-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: min(65px);
  gap: 4px;
}

#rwd-content .lm-anchor-btn-list > li {
  display: flex;
  width: 100%;
  height: 100%;
}

#rwd-content .lm-anchor-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  padding: 10px;

  background: rgba(0, 0, 0, 0.70);
}
#rwd-content .lm-anchor-btn.arrow-up .inn-txt::before {
  rotate: 270deg;
}
#rwd-content .lm-anchor-btn:focus-visible {
  background: rgba(0, 0, 0, 1);
}
#rwd-content .lm-anchor-btn .inn-txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 125%;
  color: #fff;

  padding-left: 1.33em;

  position: relative;
}
#rwd-content .lm-anchor-btn .inn-txt::before {
  position: absolute;
  content: '';

  mask: url('/shared/img/icon_arrow_right01.svg') no-repeat center / contain;
  background: #FF0000;

  width: 0.66em;
  height: auto;
  aspect-ratio: 7 / 11;

  rotate: 90deg;

  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#rwd-content .lm-splide .splide__toggle {
  display: none;
  position: absolute;
  height: 0;
  width: 0;
  font-size: 0;
  pointer-events: none;

}
@media screen and (min-width: 768px) {
  #rwd-content .lm-keyvisual .lm-keyvisual-image.no-pc {
    display: none;
  }
  #rwd-content .lm-division-keyvisual .no-pc {
    display: none;
  }
}

@media screen and (max-width: 960px) and (min-width: 768px) {
  #rwd-content .lm-keyvisual figcaption {
    position: absolute;
    top: 150px;
    height: fit-content;
    left: 2%;
  }
  #rwd-content .lm-keyvisual figcaption .main-text {
    color: #fff;
    font-size: 4.2rem;
  }
  #rwd-content .lm-anchor-btn-list {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  #rwd-content .lm-anchor-btn-list > li:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  #rwd-content .lm-anchor-btn-list > li:nth-child(2) {
    grid-area: 1 / 3 / 2 / 5;
  } 
  #rwd-content .lm-anchor-btn-list > li:nth-child(3) {
    grid-area: 1 / 5 / 2 / 7;
  }
  #rwd-content .lm-anchor-btn-list > li:nth-child(4) {
    grid-area: 2 / 2 / 3 / 4;
  }
  #rwd-content .lm-anchor-btn-list > li:nth-child(5) {
    grid-area: 2 / 4 / 3 / 6;
  }
}

@media screen and (max-width: 767px) {
  #rwd-content .lm-keyvisual {
    height: auto;
  }
  #rwd-content .lm-keyvisual::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 30%);
  }
  #rwd-content .lm-keyvisual .lm-keyvisual-image {
    height: auto;
    object-position: unset;
    object-fit: unset;
    /* height: 100%;
    object-fit: cover; */
    /* object-position: 70%; */
  }
  #rwd-content .lm-keyvisual .lm-keyvisual-image.no-sp {
    display: none;
  }
  #rwd-content .lm-keyvisual figcaption {
    position: absolute;
    /* top: 40%; */
    top: 34%;
    left: 2%;
    height: fit-content;
  }
  #rwd-content .lm-keyvisual figcaption .main-text {
    color: #fff;
    font-size: 2.8rem;
  }
  #rwd-content .lm-division-keyvisual .no-sp {
    display: none;
  }
  #rwd-content .lm-division-keyvisual figcaption {
    display: none;
  }
  #rwd-content .lm-division-each {
    padding: 40px 0 0;
  }
  #rwd-content .lm-division-each.rwd-bg-box-color {
    padding: 40px 0 0;
  }

  #rwd-content .lm-anchor-btn-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  #rwd-content .lm-anchor-btn-list > li:nth-child(5) {
    grid-column: 1 / 3;
    max-width: calc(100% / 2 - 4px);
    margin-inline: auto;
  }

  #rwd-content .lm-anchor-btn .inn-txt {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  #rwd-content .lm-anchor-btn:hover {
    background: rgba(0, 0, 0, 1);
  }
}
/* --------- TOP ---------- */


/* --------- インタビュー ---------- */

#rwd-content .rwd-main-content-group.wide.lm-interview-keyvisual {
  max-width: 1220px;
}

#rwd-content .lm-interview-lead-box > .rwd-text {
  line-height: 1.8 !important;
}

#rwd-content .lm-interview-lead-box > .lm-interview-lead-small-title {
  margin-bottom: 0;
}

#rwd-content .lm-interview-lead-box > .lm-interview-lead-small-title,
#rwd-content .lm-interview-lead-box > .lm-interview-lead-large-title,
#rwd-content .lm-interview-lead-box > .rwd-text {
  padding-inline: 20px;
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: content-box;
}

#rwd-content .lm-interview-article-wrap {
  max-width: 1000px;
}
#rwd-content .lm-interview-article-wrap > .rwd-subsection-headline.rwd-large {
  padding-left: 50px;
  position: relative;
}
#rwd-content .lm-interview-article-wrap > .rwd-subsection-headline.rwd-large::before {
  position: absolute;
  content: '';

  background: currentColor;

  width: 40px;
  height: 1px;

  top: calc(1.4em / 2);
  left: 0;
}
#rwd-content .lm-interview-article-wrap > .rwd-text {
  line-height: calc(32 / 16) !important;
}
#rwd-content .lm-interview-article-wrap > .rwd-text + .rwd-subsection-headline.rwd-large  {
  margin-top: 40px;
}
#rwd-content .lm-interview-article-wrap > .rwd-text + .rwd-section-group-headline.rwd-border-left.rwd-xlarge  {
  margin-top: 80px;
}

#rwd-content .lm-interview-article-wrap > .rwd-text + .rwd-section-headline.rwd-xlarge.rwd-border-thin {
  margin-top: 100px;
}

#rwd-content .lm-other-links {
  color: #fff;
}

#rwd-content .lm-other-links a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  #rwd-content .lm-interview-article-wrap > .rwd-text:not(.rwd-xsmall) {
    padding-left: 50px;
  }
  #rwd-content .lm-interview-keyvisual .no-pc {
    display: none;
  }
  #rwd-content .lm-interview-keyvisual figcaption.pc-right {
    left: auto;
    right: 4.5%;
  }
}

@media screen and (max-width: 767px) {
  #rwd-content .lm-interview-article-wrap > .rwd-subsection-headline.rwd-large {
    padding-left: 44px;
  }
  #rwd-content .lm-interview-article-wrap > .rwd-subsection-headline.rwd-large::before {
    width: 36px;
  }
  #rwd-content .lm-interview-article-wrap > .rwd-text {
    line-height: 1.8 !important;
  }
  #rwd-content .lm-interview-keyvisual .no-sp {
    display: none;
  }
}

/* --------- インタビュー ---------- */

/* --------- 職種を知るページ ---------- */
#rwd-content .rwd-dark-blue .lm-list {
  padding: 12px 10px 13px;
}
#rwd-content .rwd-dark-blue .lm-list li::after {
  background-color: #fff;
}
#rwd-content .rwd-dark-blue .check li {
  padding-left: 30px;
}
#rwd-content .rwd-dark-blue .check li::after {
  content: "";
  display: block;
  height: 5px;
  width: 10px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
  background-color: inherit;
  border-radius: 0;
  top: 4px;
}
#rwd-content .lm-cont-wrap p {
  line-height: 1.8 !important;
}
/* --------- 職種を知るページ ---------- */

/* --------- 事業部を知るページ ---------- */
@media screen and (min-width: 768px) {
  #rwd-content .rwd-grid-adj-6of12 {
  gap: 30px;
  }
  #rwd-content .rwd-grid-adj-6of12 figure {
    width: calc(50% - 15px);
  }
  #rwd-content .rwd-grid-adj-6of12 img {
    width: 100%;
  }
}
/* --------- 事業部を知るページ ---------- */



/* --------- 勤務地ページ ---------- */
#rwd-content .rwd-grid-unison .rwd-pc-margin-bottom0 {
  margin-bottom: 0;
}

#rwd-content .rwd-grid-unison .rwd-text-bold {
  font-weight: bold;
}

#rwd-content .lm-width-adj {
  width: 100%;
  max-width: 744px;
}
#rwd-content .lm-width-adj .rwd-subpage-keyvisual img {
  width: 100%;
}
#rwd-content .location-address {
  padding: 10px;
  max-width: 580px;
  margin-inline: auto;
}
#rwd-content .location-address.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
#rwd-content .location-address.jobs-list > li {
  background: #111273;
  border-radius: 8px;
  padding: 8px 2px;
  color: #fff;
  text-align: center;

  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
#rwd-content .location-address.jobs-list > li.gr {
  background: #CECECE;
  color: #000;
}
#rwd-content .location-address iframe {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  #rwd-content .location-address {
    padding: 0 10px 10px;
  }
  #rwd-content .location-address.jobs-list > li {
    padding: 8px;

    font-size: 16px;
  }
}


/* --------- 勤務地ページ ---------- */


/* --------- 本部長メッセージ ---------- */
.pf_txt {
  text-align: left;
  line-height: 1.8em;
  font-size: 1.6rem;
  max-width: 768px;
  margin: auto;
}
.pf_txt .name {
  font-size: 30px;
}
.pf_txt p {
  margin-bottom: 1em;
}
.pf_txt900 {
  text-align: left;
  line-height: 1.8em;
  font-size: 1.6rem;
  max-width: 900px;
  margin: auto;
}
.pf_txt900 p {
  margin-bottom: 1em;
}
.pf_txt1000 {
  text-align: left;
  line-height: 1.8em;
  font-size: 1.6rem;
  max-width: 1000px;
  margin: auto;
}
.pf_txt1000 p {
  margin-bottom: 1em;
}
/* --------- 本部長メッセージ ---------- */


/* --------- キャリアパス ---------- */
.lm-careerpath-title img {
  max-height: 144px;
  width: auto;
}
/* --------- キャリアパス ---------- */

/* <!-- /★コンポーネントを調整または独自パーツ★ --> */