﻿main section, main div, main p, main a, main thead, main tr, main td, main li, main label {
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1025px) {
  main section, main div, main p, main a, main thead, main tr, main td, main li, main label {
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
  }
}

a {
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.75;
}

.recruitWrapper {
  padding-top: 80px;
}
@media screen and (min-width: 1200px) {
  .recruitWrapper {
    padding-top: 96px;
  }
}

.pageMainContent {
  position: relative;
  padding: 24px 0 48px;
}
@media screen and (min-width: 1025px) {
  .pageMainContent {
    padding-bottom: 64px;
  }
}
.pageMainContent .pmcBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .pageMainContent .pmcBg {
    padding-top: 200px;
  }
}
.pageMainContent .pmcBg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent 0 25%, #FFF 100%);
}
.pageMainContent .pmcBg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.3;
}
.pageMainContent section, .pageMainContent div, .pageMainContent p, .pageMainContent a, .pageMainContent thead, .pageMainContent tr, .pageMainContent td, .pageMainContent li, .pageMainContent label {
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .pageMainContent section, .pageMainContent div, .pageMainContent p, .pageMainContent a, .pageMainContent thead, .pageMainContent tr, .pageMainContent td, .pageMainContent li, .pageMainContent label {
    line-height: 1.9;
  }
}
@media screen and (min-width: 1025px) {
  .pageMainContent section, .pageMainContent div, .pageMainContent p, .pageMainContent a, .pageMainContent thead, .pageMainContent tr, .pageMainContent td, .pageMainContent li, .pageMainContent label {
    line-height: 2;
  }
}

.recruitSection {
  padding: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .recruitSection {
    padding: 20px 32px;
  }
}
@media screen and (min-width: 1025px) {
  .recruitSection {
    padding: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .recruitSection:not(:last-child) {
    margin-bottom: 40px;
  }
}

.pagetop {
  display: none;
}

.textBlue {
  color: #0066B4;
}

.textBold {
  font-weight: 700;
}

.textSmall {
  font-size: 0.92em;
}

.textUnderline {
  background: linear-gradient(transparent 50%, rgba(255, 160, 0, 0.3) 50%, rgba(255, 160, 0, 0.3) 80%, transparent 80%);
}

@media screen and (min-width: 769px) {
  .onlySp {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .onlySpTb {
    display: none;
  }
}

.onlyTbPc {
  display: none;
}
@media screen and (min-width: 769px) {
  .onlyTbPc {
    display: block;
  }
}

.onlyPc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .onlyPc {
    display: block;
  }
}

.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadeUp.isShow {
  opacity: 1;
  transform: translateY(0);
}

.popUp {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popUp.isShow {
  opacity: 1;
  animation: popUpAnimation 0.8s ease forwards;
}

@keyframes popUpAnimation {
  0% {
    scale: 0 0;
  }
  50% {
    scale: 1.1 1.1;
  }
  100% {
    scale: 1 1;
  }
}
.fadeIn {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fadeIn.isShow {
  opacity: 1;
}

.slideIn {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.slideIn.isShow {
  opacity: 1;
  transform: translateX(0);
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  padding-block: 0;
  padding-inline: 0;
  font: inherit;
}

#bottomNav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  will-change: position;
}
@media screen and (max-width: 1024px) {
  #bottomNav {
    display: flex;
  }
}
#bottomNav .bottomNavBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50%;
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
}
#bottomNav .bottomNavBtn:nth-child(1) {
  background-color: #F8B500;
}
#bottomNav .bottomNavBtn:nth-child(2) {
  background-color: #0066B4;
}

.rsTitleLg {
  padding: 24px 12px 4px;
  border-left: solid 2px #0066B4;
  font-weight: 700;
  font-size: clamp(1.9rem, 1.606rem + 0.78vw, 2.4rem);
  line-height: 1.32;
}
@media screen and (min-width: 1025px) {
  .rsTitleLg {
    padding: 32px 32px 8px;
    font-size: clamp(3.8rem, 2.915rem + 0.86vw, 4.4rem);
  }
}

.rsTitleMd {
  padding: 12px 4px;
  border-bottom: solid 2px #DCDCDC;
  font-size: clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #0066B4;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .rsTitleMd {
    padding: 16px 12px;
    font-size: clamp(2.8rem, 2.21rem + 0.58vw, 3.2rem);
  }
}
.rsTitleMd:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 16px;
  background-color: #0066B4;
}
@media screen and (min-width: 769px) {
  .rsTitleMd:after {
    width: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .rsTitleMd:after {
    width: 32px;
  }
}

.rsTitleSm {
  display: inline-block;
  padding: 2px 8px;
  background-color: #E4EFF7;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  color: #0066B4;
}

.rsLinkButton,
.rsLinkButtonBlue {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  width: 100%;
  min-width: 150px;
  max-width: 250px;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 769px) {
  .rsLinkButton,
  .rsLinkButtonBlue {
    padding: 24px 20px;
    border-radius: 22px;
    max-width: 330px;
  }
}
@media screen and (min-width: 1025px) {
  .rsLinkButton,
  .rsLinkButtonBlue {
    padding: 32px 20px;
    border-radius: 30px;
    max-width: 440px;
    font-size: clamp(2.2rem, 1.61rem + 0.58vw, 2.6rem);
  }
}
.rsLinkButton:before, .rsLinkButton:after,
.rsLinkButtonBlue:before,
.rsLinkButtonBlue:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  width: 44px;
  transition: opacity 0.4s;
}
@media screen and (min-width: 1025px) {
  .rsLinkButton:before, .rsLinkButton:after,
  .rsLinkButtonBlue:before,
  .rsLinkButtonBlue:after {
    width: 60px;
  }
}

.rsLinkButton {
  color: #0066B4;
  border: solid 1px #0066B4;
  transition: color 0.4s, background-color 0.4s;
}
.rsLinkButton:before {
  content: url(/recruit/osakagas/files/img/common/link-arrow-blue-lg.svg);
  opacity: 1;
}
.rsLinkButton:after {
  content: url(/recruit/osakagas/files/img/common/link-arrow-white-lg.svg);
  opacity: 0;
}
@media (hover: hover) {
  .rsLinkButton:hover {
    opacity: 1;
    color: #fff;
    background-color: #0066B4;
  }
  .rsLinkButton:hover:before {
    opacity: 0;
  }
  .rsLinkButton:hover:after {
    opacity: 1;
  }
}

.rsLinkButtonBlue {
  color: #fff;
  background-color: #0066B4;
}
.rsLinkButtonBlue:before {
  content: url(/recruit/osakagas/files/img/common/link-arrow-white-lg.svg);
}

.rsLinkText {
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  color: #0066B4;
  font-weight: 700;
  display: inline-flex;
  justify-content: flex-start;
  padding: 4px 0;
}
@media screen and (min-width: 1025px) {
  .rsLinkText {
    font-size: clamp(1.8rem, 1.21rem + 0.58vw, 2.2rem);
    margin-left: 20px;
    margin-bottom: 0.1em;
  }
}
.rsLinkText img {
  width: 32px;
  margin: 0.6em 0.6em auto 0;
}
@media screen and (min-width: 1025px) {
  .rsLinkText img {
    font-size: clamp(1.8rem, 1.21rem + 0.58vw, 2.2rem);
    margin: 0.9em 0.9em auto 0;
  }
}

.rsTable .rsTableItem {
  padding: 16px 0;
  margin: 8px 0;
  border-bottom: solid 1px #DCDCDC;
}
@media screen and (min-width: 1025px) {
  .rsTable .rsTableItem {
    margin-top: 32px;
    padding: 20px 8px;
    display: flex;
    justify-content: flex-start;
    max-width: 1000px;
    margin-right: auto;
  }
}
.rsTable .rsTableItem .rsTableItemTitle {
  font-size: clamp(1.5rem, 1.147rem + 0.94vw, 2.1rem);
  font-weight: 700;
  color: #0066B4;
}
@media screen and (min-width: 1025px) {
  .rsTable .rsTableItem .rsTableItemTitle {
    width: 200px;
    font-size: clamp(1.8rem, 1.21rem + 0.58vw, 2.2rem);
  }
}
.rsTable .rsTableItem > *:not(.rsTableItemTitle) {
  margin-top: 16px;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
}
@media screen and (min-width: 1025px) {
  .rsTable .rsTableItem > *:not(.rsTableItemTitle) {
    width: calc(100% - 200px);
    margin-top: 0;
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
  }
}

.rsAnchorList {
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .rsAnchorList {
    justify-content: center;
    column-gap: 40px;
  }
}
.rsAnchorList .rsAnchorLink {
  display: inline-block;
  width: 100%;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  padding: 8px 24px;
  margin-bottom: 10px;
  border-bottom: solid 1px #D2D2D2;
  position: relative;
}
@media screen and (min-width: 769px) {
  .rsAnchorList .rsAnchorLink {
    width: auto;
    margin-bottom: 0;
    padding-right: 4px;
  }
}
@media screen and (min-width: 1025px) {
  .rsAnchorList .rsAnchorLink {
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
    padding: 16px 32px;
  }
}
.rsAnchorList .rsAnchorLink:before {
  content: url(/recruit/osakagas/files/img/common/link-arrow-v.svg);
  position: absolute;
  top: 50%;
  left: 0;
  height: 24px;
  width: 7px;
  transform: translateY(-25%);
}
@media screen and (min-width: 1025px) {
  .rsAnchorList .rsAnchorLink:before {
    height: 32px;
    width: 9px;
  }
}

.rsDotList {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .rsDotList {
    margin-top: 8px;
  }
}
.rsDotList > ul {
  padding-left: 18px;
}
@media screen and (min-width: 769px) {
  .rsDotList > ul {
    padding-left: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .rsDotList > ul {
    padding-left: 26px;
  }
}
.rsDotList > ul li {
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 2px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .rsDotList > ul li {
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
    margin-bottom: 8px;
  }
}
.rsDotList > ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 10px;
  height: 10px;
  background-color: #0066B4;
  border-radius: 50%;
  transform: translateY(0.45em);
}
@media screen and (min-width: 769px) {
  .rsDotList > ul li:before {
    left: -22px;
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .rsDotList > ul li:before {
    left: -26px;
    width: 15px;
    height: 15px;
  }
}

.rsTagList > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
}
@media screen and (min-width: 1025px) {
  .rsTagList > ul {
    gap: 24px 16px;
  }
}
.rsTagList > ul > li a {
  padding: 4px 10px;
  background-color: #F0F0F0;
  font-size: clamp(1.2rem, 0.965rem + 0.63vw, 1.6rem);
  font-weight: 700;
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .rsTagList > ul > li a {
    padding: 6px 20px;
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
  }
}
.rsTagList > ul > li a.active {
  background-color: #0066B4;
  color: #fff;
}

.rsPeopleList > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
}
@media screen and (min-width: 769px) {
  .rsPeopleList > ul {
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .rsPeopleList > ul {
    gap: 24px;
  }
}
.rsPeopleList > ul > li {
  width: calc((100% - 12px) / 2);
  display: flex;
  align-items: stretch;
}
@media screen and (min-width: 769px) {
  .rsPeopleList > ul > li {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (min-width: 1025px) {
  .rsPeopleList > ul > li {
    width: calc((100% - 48px) / 3);
  }
}

.rsPeoplePanel {
  position: relative;
  border: solid 1px #6AAFE2;
  margin-top: 10vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .rsPeoplePanel {
    border-width: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .rsPeoplePanel {
    margin-top: 100px;
    border-width: 3px;
  }
}
.rsPeoplePanel .rsppLink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.3;
  background-color: transparent;
  transition: background-color 0.4s;
}
@media (hover: hover) {
  .rsPeoplePanel .rsppLink:hover {
    background-color: #fff;
  }
}
.rsPeoplePanel .rsppSpeech {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -10vw;
  left: 50%;
  translate: -50% 0;
  width: 80%;
  max-width: 240px;
  z-index: 3;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .rsPeoplePanel .rsppSpeech {
    width: 85%;
    max-width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .rsPeoplePanel .rsppSpeech {
    width: 90%;
    top: -100px;
    max-width: 100%;
  }
}
.rsPeoplePanel .rsppImg {
  padding-top: 100%;
  position: relative;
}
.rsPeoplePanel .rsppImg img {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
}
.rsPeoplePanel .rsppContent {
  border-top: solid 1px #6AAFE2;
  padding: 8px;
}
@media screen and (min-width: 769px) {
  .rsPeoplePanel .rsppContent {
    border-width: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .rsPeoplePanel .rsppContent {
    border-width: 3px;
  }
}
.rsPeoplePanel .rsppContent .rsppName {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
}
.rsPeoplePanel .rsppContent .rsppName .rsppNameJp {
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0;
  line-height: 24px;
  margin-right: 6px;
}
.rsPeoplePanel .rsppContent .rsppName .rsppNameEn {
  font-size: clamp(1rem, 0.765rem + 0.63vw, 1.4rem);
  color: #959595;
  letter-spacing: 0;
  line-height: 1.2;
}
.rsPeoplePanel .rsppContent .rsppInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.rsPeoplePanel .rsppContent .rsppInfo .rsppInfoDepartment,
.rsPeoplePanel .rsppContent .rsppInfo .rsppInfoJoin {
  font-size: clamp(1.1rem, 0.865rem + 0.63vw, 1.5rem);
  color: #333333;
  letter-spacing: 0;
  line-height: 24px;
}
.rsPeoplePanel .rsppContent .rsppInfo .rsppInfoDepartment {
  margin-right: 6px;
}
.rsPeoplePanel .rsppContent .rsppInfo .rsppInfoJoin span {
  padding: 0 2px;
}
.rsPeoplePanel .rsppContent .rsppTag {
  padding: 8px 0;
}
.rsPeoplePanel .rsppContent .rsppTag ul {
  row-gap: 12px;
}
.rsPeoplePanel .rsppContent .rsppTag ul li a {
  font-size: clamp(1.1rem, 0.865rem + 0.63vw, 1.5rem);
  position: relative;
  z-index: 4;
}
.rsPeoplePanel .rsppContent .rsppComment {
  font-size: clamp(1.1rem, 0.865rem + 0.63vw, 1.5rem);
  line-height: 1.4;
}
.rsVideoContainer {
  padding: 10px;
  border: solid 1px #26BDE2;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .rsVideoContainer {
    border-width: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .rsVideoContainer {
    max-width: 1000px;
    padding: 20px;
    border-width: 3px;
  }
}
.rsVideoContainer > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.rsProcessList .rsProcessListItem {
  margin-top: 48px;
  padding: 24px 8%;
  background-color: #E4EFF7;
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(3, auto);
  position: relative;
}
@media screen and (min-width: 769px) {
  .rsProcessList .rsProcessListItem {
    padding: 32px 10%;
  }
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem {
    padding: 40px 24px;
    margin-top: 88px;
    grid-template-columns: 168px 1fr 360px;
    grid-template-rows: 24px auto;
  }
}
@media screen and (min-width: 1440px) {
  .rsProcessList .rsProcessListItem {
    grid-template-columns: 168px 1fr 440px;
  }
}
.rsProcessList .rsProcessListItem:not(:has(> .rsProcessListItemButton)) {
  grid-template-rows: repeat(2, auto);
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem:not(:has(> .rsProcessListItemButton)) {
    grid-template-columns: 168px 1fr;
  }
}
.rsProcessList .rsProcessListItem:not(:has(> .rsProcessListItemButton)):not(:has(> .rsProcessListItemText)) {
  grid-template-rows: 1fr;
}
.rsProcessList .rsProcessListItem:not(:last-child):after {
  content: url(/recruit/osakagas/files/img/common/down-arrow.svg);
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 22px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem:not(:last-child):after {
    bottom: -80px;
    width: 60px;
    height: 36px;
  }
}
.rsProcessList .rsProcessListItem.pseudoShow:after {
  opacity: 1;
}
.rsProcessList .rsProcessListItem .rsProcessListItemNum {
  grid-area: 1/1/2/2;
  display: flex;
  margin-right: 4vw;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemNum {
    grid-area: 1/1/3/2;
    flex-direction: column;
    justify-content: center;
    margin-top: -8px;
    margin-right: 0;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemNum span {
  display: flex;
  color: #0066B4;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemNum span {
    justify-content: center;
    padding-right: 8px;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemNum span:first-child {
  font-size: clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem);
  margin-right: 0.4em;
  margin-bottom: 0.15em;
  align-items: flex-end;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemNum span:first-child {
    font-size: clamp(2.4rem, 1.81rem + 0.58vw, 2.8rem);
    margin-right: 0;
    margin-bottom: 0;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemNum span:last-child {
  font-size: clamp(3.6rem, 3.365rem + 0.63vw, 4rem);
  margin-top: -0.15em;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemNum span:last-child {
    font-size: clamp(5.4rem, 4.958rem + 0.43vw, 5.7rem);
    margin-top: 0;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemTitle {
  grid-area: 1/2/2/3;
  display: flex;
  align-items: center;
  font-size: clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemTitle {
    grid-area: 1/2/2/3;
    font-size: clamp(2.4rem, 1.81rem + 0.58vw, 2.8rem);
    padding-left: 40px;
    border-left: solid 1px #0066B4;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemText {
  grid-area: 2/1/3/3;
  margin-top: 16px;
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemText {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemText {
    grid-area: 2/2/3/3;
    margin-top: 0;
    padding: 20px 40px 0;
    border-left: solid 1px #0066B4;
  }
}
.rsProcessList .rsProcessListItem .rsProcessListItemButton {
  grid-area: 3/1/4/3;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemButton {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemButton {
    grid-area: 1/3/3/4;
    margin-top: 0;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1440px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemButton {
    margin-top: -16px;
    margin-bottom: -16px;
  }
}
@media screen and (min-width: 1440px) {
  .rsProcessList .rsProcessListItem .rsProcessListItemButton .rsLinkButtonBlue {
    height: 100%;
  }
}

.rsBusinessMap {
  margin: 24px auto;
  height: min((100vw - 32px) * 3.2, 2212px);
  max-width: 690px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap {
    margin-top: 56px;
    max-width: 100%;
    height: auto;
  }
}
.rsBusinessMap .rsBusinessMapLink,
.rsBusinessMap .rsBusinessMapImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: min(23.5vw, 300px);
    padding: 0 20px;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox {
  position: absolute;
  border: solid 1px #B6B6B6;
  padding: 3% 5% 2.5% 3.5%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox {
    position: relative;
    padding: 10px 12px 14px;
    margin-top: 10px;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:before {
  content: "";
  position: absolute;
  background-image: url(../img/businesses/businesses_introduction_speech-tail.svg);
  bottom: 96%;
  left: 40%;
  width: min(3.5vw, 26px);
  height: min(9.6vw, 70px);
  background-repeat: no-repeat;
  background-size: contain;
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .rsTitleSm {
  font-size: min(4vw, 24px);
  margin-bottom: min(1.06vw, 6px);
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .rsTitleSm {
    font-size: min(1.06vw, 18px);
    line-height: 1.4;
  }
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink {
    line-height: 1;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: min(3.466vw, 20px);
  line-height: 1.5;
  padding: min(1.333vw, 8px) 0;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a {
    font-size: min(1vw, 15px);
    line-height: 1;
    letter-spacing: 0;
    padding: 4px 0;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a img {
  height: 0.75em;
  margin-top: 0.25em;
  padding: 0 0.5em;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a img {
    order: 3;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a .textSmall {
  width: 100%;
  margin-top: 4px;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .deptAnchorLink a .textSmall {
    font-size: 1em;
    width: auto;
    order: 2;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink {
  display: block;
  padding: min(1.06vw, 6px) 0;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink {
    line-height: 1;
    padding: 4px 0;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink a {
  display: inline;
  font-size: min(3.466vw, 20px);
  line-height: 1.5;
  letter-spacing: 0;
  padding: min(1.06vw, 6px) 0;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink a {
    font-size: min(1vw, 15px);
    line-height: 1;
    padding: 4px 0;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink a img {
  height: 1em;
  padding: 0 0.5em;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox .bisExternalLink a img {
    margin-bottom: -0.1em;
  }
}
.rsBusinessMap .rsBusinessMapImg {
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapImg {
    top: min(14vw, 172px);
    height: auto;
  }
}

.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(1) {
  top: min(27vw, 205px);
  left: 7%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(1) {
    top: auto;
    left: auto;
    width: calc((100% - 90px) * 0.24);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(1):before {
  transform: scale(-1, 1) rotate(-10deg);
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(1):before {
    bottom: -75px;
    left: 45%;
    transform: scaleY(1.3) rotate(175deg);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(2) {
  top: min(90vw, 650px);
  left: 20%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(2) {
    top: auto;
    left: auto;
    width: calc((100% - 90px) * 0.31);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(2):before {
  bottom: 98%;
  transform: scale(1, 1);
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(2):before {
    bottom: -64px;
    left: 28%;
    transform: scale(-1, 1) rotate(170deg);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(3) {
  bottom: min(119vw, 860px);
  left: 9.3%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(3) {
    bottom: auto;
    left: auto;
    width: calc((100% - 90px) * 0.21);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(3):before {
  bottom: max(-7vw, -54px);
  left: 60%;
  transform: scaleY(0.75) rotate(165deg);
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(3):before {
    bottom: -88px;
    left: 50%;
    transform: scale(1, 1.7) rotate(170deg);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(4) {
  bottom: min(48vw, 348px);
  left: 20%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(4) {
    bottom: auto;
    left: auto;
    width: calc((100% - 90px) * 0.24);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(4):before {
  bottom: max(-8.5vw, -64px);
  left: 35%;
  transform: rotate(170deg);
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:nth-child(4):before {
    bottom: -64px;
    left: 40%;
    transform: scale(-1, 1) rotate(170deg);
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:last-child {
  bottom: 0;
  left: 4.6%;
  right: 4.6%;
  translate: 0 112%;
}
@media screen and (min-width: 1025px) {
  .rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:last-child {
    bottom: auto;
    left: auto;
    right: auto;
    translate: 0 0;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: -10px;
  }
}
.rsBusinessMap .rsBusinessMapLink .rsBusinessMapLinkBox:last-child:before {
  display: none;
}

@media screen and (min-width: 1025px) {
  .rsCourseList > ul {
    padding: 0 20px;
  }
}

.rsCoursePanel {
  border: solid 1px #6AAFE2;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel {
    border-width: 2px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel {
    border-width: 3px;
    margin-bottom: 28px;
  }
}
.rsCoursePanel .rsCoursePanelTitle {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 481px) {
  .rsCoursePanel .rsCoursePanelTitle {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelTitle {
    padding: 24px 36px;
  }
}
.rsCoursePanel .rsCoursePanelSummary {
  padding: 4% 4% 0;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelSummary {
    padding: 24px 36px 0;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsTagContainer,
.rsCoursePanel .rsCoursePanelSummary .cpsImgContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer,
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer {
    flex-direction: row;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget,
.rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget,
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget {
    margin: 0 auto;
    flex: 1;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget > ul,
.rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget > ul {
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget > ul,
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget > ul {
    margin: 0 auto;
    gap: 24px;
    width: 88%;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget > ul li,
.rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget > ul li {
  padding: 8px;
  background-color: #26BDE2;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget > ul li,
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget > ul li {
    border-radius: 16px;
    padding: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTarget > ul li,
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsTarget > ul li {
    border-radius: 24px;
    padding: 24px;
  }
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTag {
    width: 35%;
    max-width: 380px;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTag .rsTagList > ul {
  margin-top: 12px;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTag .rsTagList > ul {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsTagContainer .cpsTag .rsTagList > ul {
    margin-top: 20px;
    gap: 20px 12px;
  }
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer {
    max-width: 1040px;
    margin: 0 auto;
    gap: 20px;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsImg {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsImg {
    width: calc(50% - 80px);
    display: flex;
    justify-content: right;
  }
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsImgContainer .cpsImg img {
    width: 100%;
    margin-left: auto;
    object-fit: cover;
  }
}
.rsCoursePanel .rsCoursePanelSummary .cpsText {
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelSummary .cpsText {
    margin-top: 24px;
  }
}
.rsCoursePanel .rsCoursePanelDetail {
  padding: 0;
}
.rsCoursePanel .rsCoursePanelDetail .tfbQuesBox {
  color: #0066B4;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .tfbQuesBox {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .tfbAnsBox {
  padding: 8px 4% 24px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .tfbAnsBox {
    padding: 8px 36px 36px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdSection {
  margin-top: 10px;
  padding: 8px 0;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSection .rsTitleSm {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSection .rsTitleSm {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSection .rsTitleSm {
    margin-bottom: 24px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle {
  display: flex;
  align-items: flex-start;
}
.rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle .cpdProgramTitleNum {
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  color: #0066B4;
  letter-spacing: 0;
  margin-top: -1em;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle .cpdProgramTitleNum {
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle .cpdProgramTitleNum span {
  font-size: 1.8em;
}
.rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle .cpdProgramTitleText {
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  margin-left: 8px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProgramContainer .cpdProgram .cpdProgramTitle .cpdProgramTitleText {
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider {
  padding-bottom: 64px;
}
@media screen and (min-width: 1200px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSlider {
    padding-bottom: 80px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-slider {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-list {
    margin: 0 -16px;
  }
}
@media screen and (min-width: 769px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-slide {
    margin: 0 16px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-slide img {
  width: 100%;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-prev,
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-next {
  top: auto;
  bottom: -80px;
  background-color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.4s;
  z-index: 2;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-prev:before,
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-next:before {
  display: inline-block;
  width: 24px;
  height: 28px;
  opacity: 1;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-prev:hover,
  .rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-next:hover {
    opacity: 0.75;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-prev {
  left: 0;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-prev:before {
  content: url(/recruit/osakagas/files/img/common/menu-arrow-r.svg);
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-next {
  right: 0;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-next:before {
  content: url(/recruit/osakagas/files/img/common/menu-arrow.svg);
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .slick-disabled {
  opacity: 0 !important;
  pointer-events: none;
}
.rsCoursePanel .rsCoursePanelDetail .cpdSlider .rsPeoplePanel .rsppSpeech.popUp {
  opacity: 1;
  animation: popUpAnimation 0.6s ease forwards;
}
.rsCoursePanel .rsCoursePanelDetail .cpdVoice {
  padding: 4%;
  border-radius: 15px;
  border: solid 1px #DCDCDC;
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  margin-bottom: 10px;
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem h5 {
  font-weight: 600;
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget {
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetMust,
  .rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetWant {
    width: calc(100% - 32px);
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetMust .cpdTargetTitle,
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetWant .cpdTargetTitle {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetMust .cpdTargetTitle,
  .rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetWant .cpdTargetTitle {
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetMust .cpdTargetBody,
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetWant .cpdTargetBody {
  margin-top: 0;
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetMust .cpdTargetBody > ul,
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .cpdTarget .cpdTargetWant .cpdTargetBody > ul {
  width: 100%;
}
.rsCoursePanel .rsCoursePanelDetail .cpdRequirement .cpdRequirementItem .rsAnchorLink {
  text-decoration: underline;
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdTable {
    margin-bottom: 32px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable table {
  width: 100%;
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable table tr {
  border-left: solid 1px #DCDCDC;
  border-right: solid 1px #DCDCDC;
  border-bottom: solid 1px #DCDCDC;
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable table tr:first-child {
  border-top: solid 1px #DCDCDC;
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable table th {
  padding: 4px 8px;
  background-color: rgba(33, 102, 178, 0.1);
}
.rsCoursePanel .rsCoursePanelDetail .cpdTable table td {
  padding: 6px 8px 8px;
  border-left: solid 1px #DCDCDC;
}
@media screen and (max-width: 768px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdTable.cpdTableV table tr {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdTable.cpdTableV table td {
    border-left: none;
    border-top: solid 1px #DCDCDC;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList {
  margin-top: -40px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList {
    margin-top: -80px;
  }
}
@media screen and (min-width: 481px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem {
    justify-content: center;
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem {
    justify-content: left;
    grid-template-columns: 168px 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem:not(:has(> .rsProcessListItemButton)) {
    grid-template-columns: 168px 1fr;
  }
}
@media screen and (min-width: 481px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem .rsProcessListItemTitle {
    min-width: 250px;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem .rsProcessListItemText {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdProcess .rsProcessList .rsProcessListItem .rsProcessListItemText {
    text-align: left;
  }
}
.rsCoursePanel .rsCoursePanelDetail .cpdLink {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
@media screen and (min-width: 1025px) {
  .rsCoursePanel .rsCoursePanelDetail .cpdLink {
    margin-top: 16px;
  }
}

.rmContent {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .rmContent {
    padding-left: 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .rmContent {
    padding-left: 3vw;
    max-width: 1360px;
  }
}
.rmContent .rmItem {
  width: 50%;
  color: #fff;
  padding: 0 4px;
  margin-bottom: 36px;
  border-left: solid 1px #fff;
}
@media screen and (min-width: 1025px) {
  .rmContent .rmItem {
    width: 20%;
    padding-left: 24px;
  }
}
.rmContent .rmItem .rmItemTitle {
  padding: 0 8px;
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem);
}
@media screen and (min-width: 1025px) {
  .rmContent .rmItem .rmItemTitle {
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.rmContent .rmSubItem {
  min-height: 100px;
}
.rmContent .rmSubItem .rmSubItemTitle {
  padding: 8px 0;
}
.rmContent .rmSubItem .rmSubItemTitle:before {
  display: none !important;
}
.rmContent .rmSubItem .rmSubItemTitle a {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1025px) {
  .rmContent .rmSubItem .rmSubItemTitle a {
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
  }
}
.rmContent .rmSubItem .rmSubItemTitle a img {
  width: 24px;
  margin: 0.5em 5px auto;
}
@media screen and (min-width: 1025px) {
  .rmContent .rmSubItem .rmSubItemTitle a img {
    width: 28px;
    margin-right: 8px;
  }
}

.pmcSpeech {
  display: flex;
  justify-content: center;
}
.pmcSpeech p {
  position: relative;
  display: inline-block;
  background: linear-gradient(25deg, #60DBCC, #5C8FDE 40%);
  color: white;
  padding: 10px 16px;
  margin-top: 16px;
  border-radius: 5px;
  font-size: clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  min-width: 260px;
}
@media screen and (min-width: 769px) {
  .pmcSpeech p {
    margin-top: 24px;
    margin-bottom: 12px;
    padding: 10px 22px;
    border-radius: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .pmcSpeech p {
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 10px 36px;
    border-radius: 10px;
    font-size: clamp(2.8rem, 2.21rem + 0.58vw, 3.2rem);
  }
}
.pmcSpeech p:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-70%);
  width: 14px;
  height: 12px;
  background: linear-gradient(135deg, #5C8FDE, #60DBCC 88%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .pmcSpeech p:after {
    bottom: -16px;
    width: 20px;
    height: 18px;
  }
}

.pmcSpeechWide {
  width: 75vw;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .pmcSpeechWide {
    width: 66vw;
    max-width: 640px;
  }
}
@media screen and (min-width: 1025px) {
  .pmcSpeechWide {
    width: 66vw;
    max-width: 920px;
  }
}
@media screen and (min-width: 1440px) {
  .pmcSpeechWide {
    width: 60vw;
    max-width: 920px;
  }
}
.pmcSpeechWide p {
  width: 100%;
}

.pmcText {
  padding: 0 16px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .pmcText {
    padding: 0 32px;
  }
}
@media screen and (min-width: 1025px) {
  .pmcText {
    padding: 0 40px;
    max-width: 1240px;
    margin: 24px auto 16px;
  }
}
.pmcText p:not(:first-child) {
  margin-top: 20px;
}

.pmcVideo {
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1025px) {
  .relatedSection {
    padding-bottom: 40px;
  }
}
.relatedSection .relatedList {
  margin: 40px auto 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .relatedSection .relatedList {
    margin: 48px auto 28px;
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .relatedSection .relatedList {
    margin: 64px auto 40px;
  }
}
.relatedSection .relatedList:has(> :nth-child(1):last-child) {
  max-width: 100%;
}
.relatedSection .relatedList:has(> :nth-child(1):last-child) .relatedListItem {
  width: 100%;
}
.relatedSection .relatedList:has(> :nth-child(2):last-child), .relatedSection .relatedList:has(> :nth-child(3):last-child), .relatedSection .relatedList:has(> :nth-child(4):last-child) {
  max-width: 452px;
}
@media screen and (min-width: 769px) {
  .relatedSection .relatedList:has(> :nth-child(2):last-child), .relatedSection .relatedList:has(> :nth-child(3):last-child), .relatedSection .relatedList:has(> :nth-child(4):last-child) {
    max-width: 684px;
  }
}
@media screen and (min-width: 1025px) {
  .relatedSection .relatedList:has(> :nth-child(2):last-child), .relatedSection .relatedList:has(> :nth-child(3):last-child), .relatedSection .relatedList:has(> :nth-child(4):last-child) {
    max-width: 100%;
  }
}
.relatedSection .relatedList:has(> :nth-child(2):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem {
  width: calc((100% - 12px) / 2);
}
@media screen and (min-width: 769px) {
  .relatedSection .relatedList:has(> :nth-child(2):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 374px) {
  .relatedSection .relatedList:has(> :nth-child(2):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem, .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem {
    width: 100%;
  }
}
.relatedSection .relatedList:has(> :nth-child(2):last-child) .relatedListItem:before, .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem:before, .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem:before {
  content: url(/recruit/osakagas/files/img/common/link-arrow-blue.svg);
  width: 28px;
}
@media screen and (min-width: 1025px) {
  .relatedSection .relatedList:has(> :nth-child(2):last-child) .relatedListItem:before, .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem:before, .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem:before {
    width: 40px;
  }
}
.relatedSection .relatedList:has(> :nth-child(3):last-child) {
  justify-content: flex-start;
}
@media screen and (max-width: 374px) {
  .relatedSection .relatedList:has(> :nth-child(3):last-child) {
    justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .relatedSection .relatedList:has(> :nth-child(3):last-child) .relatedListItem {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (min-width: 1025px) {
  .relatedSection .relatedList:has(> :nth-child(4):last-child) .relatedListItem {
    width: calc((100% - 72px) / 4);
  }
}

.tabPanel .tabPanelMenu {
  display: flex;
  color: #fff;
}
.tabPanel .tabPanelMenu .tabPanelMenuItem {
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #fff;
  transition: color 0.4s;
}
.tabPanel .tabPanelMenu .tabPanelMenuItem[data-active=true] {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
  border-bottom: none;
}
.tabPanel .tabPanelMenu .tabPanelMenuItem button {
  width: 100%;
  padding: 10px 0 8px;
  cursor: pointer;
  line-height: 1.25;
}
.tabPanel .tabPanelBody {
  padding: 12px 0;
}
.tabPanel .tabPanelBody .tabPanelContent {
  display: none;
}
.tabPanel .tabPanelBody .tabPanelContent[data-show=true] {
  display: block;
}
.tabPanel .tabPanelBody .tabPanelContent .tnbPostItem,
.tabPanel .tabPanelBody .tabPanelContent .tnbPostItemText {
  padding-bottom: 0;
}

.toggleFaqBlock {
  margin-top: 16px;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock {
    margin-top: 24px;
    padding: 0 20px;
  }
}
.toggleFaqBlock .tfbQuesBox {
  padding: 20px 40px 20px 20px;
  background-color: #E4EFF7;
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbQuesBox {
    padding: 36px 100px 36px 36px;
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.toggleFaqBlock .tfbQuesBox i {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  translate: 0 -50%;
  rotate: 0deg;
  transition: rotate 0.4s;
}
@media screen and (min-width: 769px) {
  .toggleFaqBlock .tfbQuesBox i {
    right: 24px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbQuesBox i {
    right: 38px;
    width: 24px;
    height: 24px;
  }
}
.toggleFaqBlock .tfbQuesBox i:before, .toggleFaqBlock .tfbQuesBox i:after {
  content: "";
  background-color: #0066B4;
  border-radius: 10px;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transform-origin: center center;
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbQuesBox i:before, .toggleFaqBlock .tfbQuesBox i:after {
    height: 3px;
  }
}
.toggleFaqBlock .tfbQuesBox i:before {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbQuesBox i:before {
    width: 3px;
  }
}
.toggleFaqBlock .tfbAnsBox {
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbAnsBox {
    padding: 48px;
  }
}
.toggleFaqBlock .tfbAnsBox p {
  font-size: clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem);
}
@media screen and (min-width: 1025px) {
  .toggleFaqBlock .tfbAnsBox p {
    font-size: clamp(1.6rem, 1.01rem + 0.58vw, 2rem);
  }
}

.toggleFaqBlock[data-open=false] .tfbAnsBox {
  padding-top: 0;
  padding-bottom: 0;
}

.toggleFaqBlock[data-open=true] .tfbQuesBox i {
  rotate: 180deg;
}
.toggleFaqBlock[data-open=true] .tfbQuesBox i:before {
  opacity: 0;
}

.lightBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  pointer-events: none;
}
.lightBox[data-open=true] {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightBox .lightBoxContainer {
  width: 90%;
  max-width: 640px;
  max-height: 80svh;
  padding: 24px 6.4% 6.4%;
  border-radius: 15px;
  background-color: #E4EFF7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  position: relative;
}
@media screen and (min-width: 769px) {
  .lightBox .lightBoxContainer {
    padding: 28px 4% 4%;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .lightBox .lightBoxContainer {
    max-width: 720px;
    padding: 28px 40px 40px;
    border-radius: 25px;
  }
}
.lightBox .lightBoxContainer .lightBoxSign {
  position: absolute;
  top: -48px;
  left: 50%;
  height: 48px;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .lightBox .lightBoxContainer .lightBoxSign {
    top: -56px;
    height: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .lightBox .lightBoxContainer .lightBoxSign {
    top: -64px;
    height: 64px;
  }
}
.lightBox .lightBoxContainer .lightBoxSign img {
  height: 100%;
}
.lightBox .lightBoxContainer .lightBoxContent {
  width: 100%;
  height: 100%;
}
.lightBox .lightBoxContainer .lightBoxContent .lightBoxTitle {
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  font-weight: 700;
  color: #0066B4;
  text-align: center;
  margin: -8px auto 16px;
}
@media screen and (min-width: 769px) {
  .lightBox .lightBoxContainer .lightBoxContent .lightBoxTitle {
    margin: -10px auto 20px;
  }
}
@media screen and (min-width: 1025px) {
  .lightBox .lightBoxContainer .lightBoxContent .lightBoxTitle {
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.lightBox .lightBoxContainer .lightBoxContent .lightBoxImg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightBox .lightBoxContainer .lightBoxContent .lightBoxImg img {
  max-height: calc(80svh - 180px);
}
.lightBox .lightBoxContainer .lightBoxContent .lightBoxImg .lightBoxSpeech {
  position: absolute;
  bottom: -10%;
  right: 10%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightBox .lightBoxContainer .lightBoxContent .lightBoxImg .lightBoxSpeech.isShow {
  opacity: 1;
  animation: popUpAnimation 0.8s ease forwards;
}
.lightBox .lightBoxContainer .lightBoxClose {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .lightBox .lightBoxContainer .lightBoxClose {
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1025px) {
  .lightBox .lightBoxContainer .lightBoxClose {
    top: -32px;
    right: -32px;
    width: 64px;
    height: 64px;
  }
}
.lightBox .lightBoxCover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 1200px) {
  #recruitHeaderWrap {
    top: 96px;
  }
}

#recruitHeader {
  background-color: rgba(0, 0, 0, 0.55);
  border: none;
  letter-spacing: 0;
  position: relative;
  z-index: 150;
}
#recruitHeader .rhTitle .groupName {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-weight: 500;
}
#recruitHeader .rhTitle .groupName img {
  height: clamp(2rem, 1.647rem + 0.94vw, 2.6rem);
  margin-right: 10px;
  vertical-align: middle;
}
#recruitHeader .rhTitle .groupName span {
  color: #fff;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
  vertical-align: middle;
}
#recruitHeader .rhNavBtn {
  align-items: center;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  #recruitHeader .rhNavBtn {
    display: flex;
  }
}
#recruitHeader .rhNavBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 32px;
  font-size: 2rem;
  color: #fff;
}
#recruitHeader .rhNavBtn a:nth-child(1) {
  background-color: #0066B4;
}
#recruitHeader .rhNavBtn a:nth-child(2) {
  background-color: #F8B500;
}
#recruitHeader .rhRight #thMenuBtn {
  background-color: #000;
  position: relative;
  border: none;
  height: 56px;
  line-height: 56px;
  width: 64px;
}
@media screen and (min-width: 769px) {
  #recruitHeader .rhRight #thMenuBtn {
    height: 70px;
    line-height: 70px;
    width: 80px;
  }
}
#recruitHeader .rhRight #thMenuBtn:after {
  content: "MENU";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.7s;
}
@media screen and (min-width: 1200px) {
  #recruitHeader .rhRight #thMenuBtn:after {
    display: none;
  }
}
#recruitHeader .rhRight #thMenuBtn span {
  position: absolute;
  left: 50%;
  width: 100%;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%) rotate(0deg);
  opacity: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 1200px) {
  #recruitHeader .rhRight #thMenuBtn span {
    width: 34px;
    opacity: 1;
  }
}
#recruitHeader .rhRight #thMenuBtn span:nth-child(1) {
  top: 20px;
}
@media screen and (min-width: 1200px) {
  #recruitHeader .rhRight #thMenuBtn span:nth-child(1) {
    top: 23px;
  }
}
#recruitHeader .rhRight #thMenuBtn span:nth-child(2) {
  top: 27px;
}
@media screen and (min-width: 1200px) {
  #recruitHeader .rhRight #thMenuBtn span:nth-child(2) {
    top: 34px;
  }
}
#recruitHeader .rhRight #thMenuBtn span:nth-child(3) {
  bottom: 20px;
}
@media screen and (min-width: 1200px) {
  #recruitHeader .rhRight #thMenuBtn span:nth-child(3) {
    bottom: 23px;
  }
}
#recruitHeader .rhRight #thMenuBtn.open:after {
  opacity: 0;
  transition: opacity 0.4s;
}
#recruitHeader .rhRight #thMenuBtn.open span {
  position: absolute;
  opacity: 1;
}
#recruitHeader .rhRight #thMenuBtn.open span:nth-child(1) {
  top: 27px;
  transform: translateX(-50%) rotate(315deg);
}
@media screen and (min-width: 769px) {
  #recruitHeader .rhRight #thMenuBtn.open span:nth-child(1) {
    top: 34px;
  }
}
#recruitHeader .rhRight #thMenuBtn.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) rotate(0deg);
}
#recruitHeader .rhRight #thMenuBtn.open span:nth-child(3) {
  bottom: 27px;
  transform: translateX(-50%) rotate(-315deg);
}
@media screen and (min-width: 769px) {
  #recruitHeader .rhRight #thMenuBtn.open span:nth-child(3) {
    bottom: 34px;
  }
}
#recruitHeader .rhRight #thMenuBtn.open span:before, #recruitHeader .rhRight #thMenuBtn.open span:after {
  display: none;
}

#recruitMenu {
  position: relative;
  z-index: 100;
  height: 100vh;
  background-color: #B4B4B4;
  margin-top: -58px !important;
}
@media screen and (min-width: 769px) {
  #recruitMenu {
    margin-top: -70px !important;
  }
}
@media screen and (min-width: 1025px) {
  #recruitMenu {
    height: auto;
    overflow-y: hidden;
  }
}
#recruitMenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/recruit/osakagas/files/img/common/rm_bg-sp.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 1025px) {
  #recruitMenu:before {
    background-image: url(/recruit/osakagas/files/img/common/rm_bg-pc.jpg);
  }
}
#recruitMenu .recruitMenuScroll {
  margin-top: max(60px, 16vw);
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  #recruitMenu .recruitMenuScroll {
    margin-top: 100px;
    padding: 40px;
  }
}

.recruitPageHeader {
  position: relative;
  height: 240px;
}
@media screen and (min-width: 1025px) {
  .recruitPageHeader {
    height: 320px;
  }
}
.recruitPageHeader picture,
.recruitPageHeader picture source,
.recruitPageHeader picture img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  z-index: -2;
}
.recruitPageHeader .rphCover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: -1;
}
.recruitPageHeader .rphInner {
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 1;
  padding: 56px 24px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .recruitPageHeader .rphInner {
    padding: 70px 40px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .recruitPageHeader .rphInner {
    max-width: calc(100vw - (100vw - 1200px) / 2);
    margin-left: auto;
  }
}
.recruitPageHeader .rphInner .rphTitleSub {
  font-size: clamp(1.5rem, 1.147rem + 0.94vw, 2.1rem);
  padding: 12px 2px;
  border-bottom: solid 1px #fff;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .recruitPageHeader .rphInner .rphTitleSub {
    border-bottom-width: 2px;
    font-size: clamp(2rem, 1.41rem + 0.58vw, 2.4rem);
  }
}
.recruitPageHeader .rphInner .rphTitle {
  font-size: clamp(3rem, 2.706rem + 0.78vw, 3.5rem);
  padding: 12px 2px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .recruitPageHeader .rphInner .rphTitle {
    font-size: clamp(4.4rem, 4.105rem + 0.29vw, 4.6rem);
  }
}
.recruitPageHeader .rphInner .rphTitleEn {
  position: absolute;
  top: 56px;
  right: 16px;
  font-size: clamp(5rem, 3.235rem + 4.71vw, 8rem);
  font-weight: 300;
  letter-spacing: 0;
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  .recruitPageHeader .rphInner .rphTitleEn {
    top: 70px;
    right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .recruitPageHeader .rphInner .rphTitleEn {
    top: 56px;
    right: 24px;
    font-size: clamp(14rem, 12.525rem + 1.44vw, 15rem);
  }
}

.footer {
  padding: 0;
  letter-spacing: 0;
  border: none;
}

#footerMenu {
  padding: 48px 20px;
  background-color: #0066B4;
}
#footerMenu .fmTitle {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  #footerMenu .fmTitle {
    max-width: 1360px;
    margin: 0 auto 64px;
    padding-left: 3vw;
    display: flex;
    justify-content: start;
  }
}
#footerMenu .fmTitle .groupName {
  display: block;
  height: 30px;
  line-height: 30px;
  font-weight: 500;
}
#footerMenu .fmTitle .groupName img {
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}
#footerMenu .fmTitle .groupName span {
  color: #fff;
  vertical-align: middle;
  font-size: clamp(1.4rem, 1.047rem + 0.94vw, 2rem);
}
#footerMenu .rmContent .rmItem .rmItemTitle {
  font-size: calc(clamp(1.6rem, 1.247rem + 0.94vw, 2.2rem) * 0.88);
  margin-left: -1.4rem;
}
@media screen and (min-width: 1025px) {
  #footerMenu .rmContent .rmItem .rmItemTitle {
    font-size: calc(clamp(2rem, 1.41rem + 0.58vw, 2.4rem) * 0.88);
  }
}
#footerMenu .rmContent .rmSubItem .rmSubItemTitle a {
  font-size: calc(clamp(1.3rem, 1.006rem + 0.78vw, 1.8rem) * 0.88);
}
@media screen and (min-width: 1025px) {
  #footerMenu .rmContent .rmSubItem .rmSubItemTitle a {
    font-size: calc(clamp(1.6rem, 1.01rem + 0.58vw, 2rem) * 0.88);
  }
}

.footerInner {
  padding: 60px 0px;
}/*# sourceMappingURL=style.css.map */