@charset "UTF-8";
/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. 基本レイアウト
　02. ナビ
　03. モジュール
　04. JS用CSS

******************************************************************************* */
/* ==

　01. 基本レイアウト

=============================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
#main {
  position: relative;
  width: auto;
  min-width: 950px;
  padding: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  color: #000;
  font-weight: 400;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
}
#main a {
  color: #000;
}

#main * {
  box-sizing: border-box;
}

#main section,
#main section section {
  margin-top: 0;
  margin-bottom: 0;
}

#topicPath {
  background-color: #fff;
}
#topicPath .baseIn {
  box-sizing: border-box;
  width: 100%;
  min-width: 950px;
  max-width: 1140px;
  padding: 0 20px;
}

#topicPath,
.r3Header {
  z-index: 3;
  position: relative;
}

/* ==

　02. ナビ

=============================================================================== */
.rMenu {
  z-index: 2;
  position: absolute;
  top: 122px;
  left: 0;
  width: 100%;
  padding: 14px 0 0;
  font-weight: 500;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
}
.rMenu * {
  box-sizing: border-box;
}
.rMenu dl+dl{
  margin-top: 72px;
}
.rMenu_bg {
  visibility: hidden;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  opacity: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenu_overlay {
  visibility: hidden;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenu_in {
  z-index: 3;
  position: relative;
  min-width: 950px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.rMenu_list {
  display: table;
  width: 100%;
  height: 40px;
}
.rMenu_list > li {
  display: table-cell;
  height: 100%;
  font-size: clamp(13px, 1.35vw, 16px);
  line-height: 1;
}
.rMenu_list > li:last-child {
  width: 120px;
}
.rMenu_list > li > a, .rMenu_list > li > span {
  display: flex;
  position: relative;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.rMenu_list > li > a::after, .rMenu_list > li > span::after {
  -webkit-transform: scale(0);
  display: block;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
          transform: scale(0);
  border-radius: 100%;
  background-color: #fa0046;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rMenu_list > li:not(:first-child) > a, .rMenu_list > li:not(:first-child) > span {
  justify-content: center;
  padding: 0 0.4em;
}
.rMenu_list > li:nth-of-type(2) > a, .rMenu_list > li:nth-of-type(2) > span {
  padding-left: 0.8em;
}
.rMenu_list > li:nth-last-of-type(2) > a, .rMenu_list > li:nth-last-of-type(2) > span {
  padding-right: 1em;
}
.rMenu_list > li > span {
  cursor: default;
}
.rMenu_list .is-hover > a, .rMenu_list .is-hover > span {
  z-index: 1;
}
.rMenu_list .is-hover > a::after, .rMenu_list .is-hover > span::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.rMenu_list .is-hover .rMenuPanel {
  visibility: visible;
  opacity: 1;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenu_entry > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 999em;
  background-color: #fa0046;
  color: #fff !important;
  font-size: clamp(13px, 1.35vw, 16px);
  line-height: 1;
  text-decoration: none;
}
.rMenu_entry > span::after {
  content: none !important;
}
.rMenu_entry .rMenuPanel {
  color: #fff !important;
}
.rMenu_entry .rMenuPanel_tit {
  color: #fff !important;
}

.rMenuPanel {
  visibility: hidden;
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  padding: 42px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  transition: 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenuPanel_wrap {
  pointer-events: auto;
}
.rMenuPanel_in {
  min-width: 950px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 20px 100px;
}
.rMenuPanel_blc {
  margin-top: 77px;
}
.rMenuPanel_column {
  display: flex;
  gap: 20px;
}
.rMenuPanel_column > div {
  width: calc(50% - 10px);
}
.rMenuPanel_column02 {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.rMenuPanel_column02 ~ .rMenuPanel_column02{
  margin-top: 25px;
}
.rMenuPanel_column02 > div {
  /*
  width: calc((100% - 50px) / 3);
  */
  width: 37%;
}
.rMenuPanel_tit {
  position: relative;
  margin: 0 0 40px;
  color: #000;
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1;
  letter-spacing: 0.12em;
}
.rMenuPanel_subTit {
  position: relative;
  margin: 0 0 30px;
  font-weight: 700;
  font-size: clamp(26px, 2.45vw, 28px);
  line-height: 1;
  letter-spacing: 0.12em;
}
.rMenuPanel_subTit::before {
  display: inline-flex;
  position: relative;
  top: -0.1em;
  margin-right: 0.3em;
  content: "●";
  font-size: clamp(18px, 1.75vw, 20px);
  line-height: 1;
}
.rMenuPanel_list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.rMenuPanel_list01 > li {
  width: calc((100% - 60px) / 4);
  font-weight: 700;
  font-size: clamp(15px, 1.75vw, 20px);
  letter-spacing: 0.12em;
}
.rMenuPanel_list01 > li.w50p {
  width: calc(50% - 10px) !important;
}
.rMenuPanel_list01 > li > a {
  display: flex;
  position: relative;
  align-items: center;
  height: 70px;
  padding: 0 70px 0 8px;
  border-bottom: 2px solid #dcdcdc;
  color: #000;
  text-decoration: none;
}
.rMenuPanel_list01 > li > a::before, .rMenuPanel_list01 > li > a::after {
  position: absolute;
  right: 12px;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #fa0046 no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenuPanel_list01 > li > a::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}
.rMenuPanel_list01 + .rMenuPanel_list02 {
  margin: 77px 0 0;
}
.rMenuPanel_list02 {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.rMenuPanel_list02 > li {
  width: 390px;
  height: 88px;
  font-size: 133.33%;
}
.rMenuPanel_list02-01 > li {
  width: 460px;
}
.rMenuPanel_btn01 {
  height: 88px;
}
.rMenuPanel_btn01 > a {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 80px 0 33px;
  border-radius: 999em;
  background-color: #fa0046;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.rMenuPanel_list02 .rMenuPanel_btn01 > a {
  line-height: 1.43;
}
.rMenuPanel_btn01 > a::before, .rMenuPanel_btn01 > a::after {
  position: absolute;
  right: 20px;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.rMenuPanel_btn01 > a::after {
  border-color: transparent;
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
}
.rMenuPanel_btn01-01 {
  height: 100px;
}
.rMenuPanel_btn01-01 > a {
  padding: 0 100px 0 42px;
  font-size: 145.45%;
  line-height: 1.43;
  letter-spacing: 0.1em;
}
.rMenuPanel_btn01-01 > a::before, .rMenuPanel_btn01-01 > a::after {
  right: 25px;
  width: 48px;
  background-size: 20px;
}
.d_hover .rMenuPanel_list01 > li > a:hover::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}
.d_hover .rMenuPanel_btn01 > a:hover::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}

.rMenu.is-fixed {
  position: fixed;
  top: 0;
}
.rMenu.is-fixed .rMenu_bg {
  visibility: visible;
  height: 68px;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.rMenu.is-fixed .rMenuPanel {
  max-height: 100vh;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rMenu.is-fixed .rMenuPanel::-webkit-scrollbar {
  display: none;
}

html.is-rMenuOpen .rMenu_bg, html.is-rMenuOpen .rMenu_overlay {
  visibility: visible;
  opacity: 1;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
html.is-rMenuOpen .rMenu_bg {
  background-color: #fff !important;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}

html.is-rMenuOpen.is-rEntryMenuOpen .rMenu_bg {
  background-color: #d9003d !important;
}

/* ==

　03. モジュール

=============================================================================== */
/* 汎用
------------------------------------------------------------------------------- */
.wAuto {
  width: auto !important;
}

/* インナー
------------------------------------------------------------------------------- */
#main .rInner01 {
  min-width: 950px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 背景
------------------------------------------------------------------------------- */
#main .rBg-red {
  background-color: #d9003d;
}
#main .rBg-white {
  background-color: #fff;
}
#main .rBg-dBlue {
  background-color: #003978 !important;
}

/* セクション
------------------------------------------------------------------------------- */
#main .rSection01 {
  margin: 180px 0 200px;
}
#main .rSection01-p01 {
  padding: 168px 0 195px;
}
#main .rSection01-mt01, #main .rSection01-mt02 {
  margin-top: 104px;
}
#main .rSection02 {
  margin: 140px 0 160px;
}
#main .rSection03 {
  margin: 120px 0;
}
#main .rSection03-p01 {
  padding: 48px 0 48px;
}
#main .rSection04 {
  margin: 80px 0;
}
#main .rSection05 {
  margin: 60px 0 90px;
}
#main .rSection06 {
  margin: 60px 0;
}
#main .rSection07 {
  margin: 130px 0 160px;
}

/* タイトル
------------------------------------------------------------------------------- */
#main .rTitle01 {
  margin: 26px 0 56px;
  padding: 0;
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 433.33%;
  letter-spacing: 0.26em;
}
#main .rTitle01 span {
  display: inline-block;
  font-size: 76.92%;
  letter-spacing: 0.2em;
  text-indent: -0.5em;
}
#main .rTitle02 {
  margin: 0 0 57px;
}
#main .rTitle02-m01 {
  margin: 0 0 40px;
}
#main .rTitle02-m04 {
  margin: 0 0 92px;
}
#main .rTitle02-m05 {
  margin: 0 0 68px;
}
#main .rTitle02-m06 {
  margin: 0 0 20px;
}
#main .rTitle02-m07 {
  margin: 0 0 30px;
}
#main .rTitle02-m08 {
  margin: 0 0 78px;
}
#main .rTitle02-m09 {
  margin: 0 0 44px;
}
#main .rTitle02_en {
  display: inline-flex;
  position: relative;
  padding: 0 27px 0 0;
  background: none;
  font-weight: 700;
  font-size: 200%;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
}
#main .rTitle02_en::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 100%;
  background-color: #fa0046;
  content: "";
}
#main .rTitle02_ja {
  margin: 10px 0 0;
  padding: 0;
  background: none;
  color: #000;
  font-weight: 700;
  font-size: 333.33%;
  letter-spacing: 0.2em;
}
#main .rTitle02_ja-01 {
  letter-spacing: 0.08em;
}
#main .rTitle02_ja-02 {
  line-height: 1.5;
  letter-spacing: 0.08em;
}
#main .rTitle02_ja-02 span {
  font-size: 70%;
}
#main .rTitle02 + section {
  margin-top: -8px;
}
#main .rTitle03 {
  margin: 0 0 30px;
  padding: 0;
  border: none;
  background: none;
  color: #000;
  font-weight: 700;
  font-size: 233.33%;
  line-height: 2.14;
  letter-spacing: 0.16em;
}

#main .rBg-red .rTitle02_en,
#main .fnInviewChangeBg.is-inview .rTitle02_en {
  color: #fff;
}
#main .rBg-red .rTitle02_en::after,
#main .fnInviewChangeBg.is-inview .rTitle02_en::after {
  background-color: #fff;
}
#main .rBg-red .rTitle02_ja,
#main .fnInviewChangeBg.is-inview .rTitle02_ja {
  color: #fff;
}

/* タイトル数字
------------------------------------------------------------------------------- */
#main .rTitleNum01 {
  position: relative;
  margin: 0 0 33px;
  padding: 0 0 11px;
  font-weight: 700;
  font-size: 200%;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
}
#main .rTitleNum01::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: #000;
  content: "";
}
#main .rTitleNum01-m01 {
  margin-bottom: 2px;
}

/* リード
------------------------------------------------------------------------------- */
#main .rLead01 {
  font-weight: 700;
  font-size: 233.33%;
  line-height: 2;
  letter-spacing: 0.26em;
}

/* テキスト
------------------------------------------------------------------------------- */
#main .rTxt01 {
  font-weight: 400;
  font-size: 150%;
  line-height: 2;
  letter-spacing: 0.04em;
}
#main .rTxt01 + .rTxt01 {
  margin-top: 2em;
}
#main .rTxt01 sup {
  display: inline-block;
  padding: 0.3em 0 0;
  font-size: 75%;
  vertical-align: top;
}

/* 注釈
------------------------------------------------------------------------------- */
#main .rNotes01 {
  margin: 24px 0 0;
}
#main .rNotes01 > li {
  padding: 0 0 0 1em;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.71;
  letter-spacing: 0.16em;
  text-indent: -1em;
}
#main .rNotes01-ls01 > li {
  letter-spacing: 0.06em;
}
#main .rNotes02 {
  font-size: 77.77%;
}

/* 写真キャプション
------------------------------------------------------------------------------- */
#main .rCaption01 {
  margin: 10px 0 0;
  font-weight: 400;
  font-size: 116.67%;
  line-height: 1.42;
  letter-spacing: 0.06em;
}

/* テーブル
------------------------------------------------------------------------------- */
#main .rTable01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
#main .rTable01 th, #main .rTable01 td {
  padding: 12px 12px 12px 25px;
  font-weight: 400;
  font-size: 150%;
  line-height: 2;
  letter-spacing: 0.06em;
}
#main .rTable01 th {
  background-color: #e6e6e6;
}
#main .rTable01 td {
  background-color: #fff;
}
#main .rTable01-01 th, #main .rTable01-01 td {
  padding: 12px !important;
  text-align: center;
  vertical-align: middle;
}
#main .rTable01-02 tbody th {
  width: 20%;
}
#main .rTable01-02 tbody td {
  width: 80%;
}
#main .rTable01-w01 {
  width: 860px;
}

/* リンクテキスト
------------------------------------------------------------------------------- */
#main .rLinkTxt01 {
  display: inline-flex;
  position: relative;
  padding: 0.1em 0 0.2em;
  color: #000;
  text-decoration: none;
}
#main .rLinkTxt01::before, #main .rLinkTxt01::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
}
#main .rLinkTxt01::before {
  background-color: #bfbfbf;
}
#main .rLinkTxt01::after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform: scale(0, 1);
          transform-origin: right top;
  background-color: #000;
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkTxt01 > span {
  display: block;
  position: relative;
  padding-right: 26px;
}
#main .rLinkTxt01 > span::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
}
#main .rLinkTxt01[target=_blank] > span::after {
  -webkit-transform: rotate(0);
  -webkit-filter: brightness(0);
  right: 0px;
  width: 16px;
  height: 16px;
          transform: rotate(0);
  border: none;
  background: url(/recruit/common/images/rn/ico_window.svg) no-repeat;
  background-size: contain;
          filter: brightness(0);
}
#main .rLinkTxt02 {
  color: #000;
  text-decoration: none;
}
#main .rLinkTxt03 {
  color: #000;
  text-decoration: underline !important;
  text-underline-offset: 0.5em;
}

.d_hover #main .rLinkTxt01:hover::after {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform: scale(1, 1);
          transform-origin: left top;
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* カラム
------------------------------------------------------------------------------- */
#main .rColumn01 {
  display: flex;
  align-items: center;
  gap: 40px;
}
#main .rColumn01 > div {
  width: calc(50% - 20px);
}
#main .rColumn01-aiStart {
  /* 上揃え */
  align-items: flex-start;
}
#main .rColumn01-gap01 {
  gap: 0 40px;
}
#main .rTitle02 + .rColumn01 {
  margin-top: 110px;
}

/* ボタン
------------------------------------------------------------------------------- */
#main .rBtn01 > a {
  display: flex;
  position: relative;
  align-items: center;
  width: 390px;
  height: 88px;
  padding: 0 80px 0 30px;
  border: 2px solid #bfbfbf;
  border-radius: 999em;
  color: #000;
  font-weight: 700;
  font-size: 200%;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rBtn01 > a::before, #main .rBtn01 > a::after {
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 52px;
  height: 52px;
  margin: auto;
  border-radius: 100%;
  background: #fa0046 no-repeat center center;
  background-size: 20px;
  content: "";
}
#main .rBtn01 > a::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}
#main .rBtn01-aCenter > a {
  margin: 0 auto;
}
#main .rBtn01-aRight > a {
  margin: 0 0 0 auto;
}
#main .rBtn01-bg-white > a {
  border-color: transparent;
  background-color: #fff;
}
#main .rBtn01-w01 > a {
  width: 410px;
}
#main .rBtn01-w02 > a {
  width: 480px;
}
#main .rBtn02 > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 88px;
  margin: 0 auto;
  padding: 0 0 0.2em;
  border-radius: 999em;
  background-color: #fa0046;
  color: #fff;
  font-weight: 700;
  font-size: 233.33%;
  letter-spacing: 0.06em;
  text-decoration: none;
}
#main .rBtn02 > a span {
  display: inline-block;
  margin: 0 0.5em 0 0;
  padding: 0.1em 0 0;
  font-size: 85.71%;
}
#main .rBtn02-m01 {
  margin-top: 100px;
}

.d_hover #main .rBtn01 > a:hover {
  border-color: transparent;
  background-color: #fa0046;
  color: #fff;
}
#main .rBg-red .rBtn01 > a {
  border-color: transparent;
  background-color: #fff;
}

/* イメージ
------------------------------------------------------------------------------- */
#main .rImg01 {
  text-align: center;
}
#main .rImg01 img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
#main .rImg01-m01 {
  margin: 100px 0 0;
}

/* MV
------------------------------------------------------------------------------- */
#main .rVisual01 {
  position: relative;
  height: 680px;
  margin: 0 0 95px;
  padding: 293px 0 0;
}
#main .rVisual01_blc {
  width: 49.09%;
}
#main .rVisual01_img {
  display: flex;
  position: absolute;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.1);
}
#main .rVisual01_img > img {
  width: 100%;
  height: auto;
}
#main .rVisual01_img01 {
  top: -400px;
  left: calc(50% - 60px);
  align-items: flex-end;
  width: 1080px;
  height: 1080px;
}
#main .rVisual01_img02 {
  top: -250px;
  left: calc(50% + 30px);
  align-items: flex-end;
  width: 900px;
  height: 900px;
}
#main .rVisual01_img-t01 {
  top: -375px;
}
#main .rVisual01_img-t04 {
  top: -380px;
}
#main .rVisual01-01 {
  height: 700px;
  margin: 0 0 170px;
  /* テキストあり　*/
  padding: 253px 0 0;
}
#main .rVisual01-01 .rVisual01_img01 {
  top: -380px;
  left: 50%;
}
#main .rVisual01-02 {
  /* 画像の位置　*/
  height: 705px;
  margin: 0 0 57px;
}
#main .rVisual01-02 .rVisual01_img01 {
  top: -375px;
}
#main .rVisual01-p01 {
  padding: 265px 0 0;
}
#main .rVisual01-p02 {
  padding: 234px 0 0;
}
#main .rVisual01-m02, #main .rVisual01-m03 {
  margin-bottom: 70px;
}
#main .rVisual01-m05 {
  margin-bottom: 140px;
}
#main .rVisual01-m06 {
  margin-bottom: 100px;
}

/* レイアウト
------------------------------------------------------------------------------- */
#main .rLayout01 {
  display: flex;
  flex-direction: column;
  gap: 85px 0;
}
#main .rLayout01_item {
  display: flex;
  align-items: center;
  gap: 40px;
}
#main .rLayout01_item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
#main .rLayout01_item > div {
  width: calc(50% - 20px);
}
#main .rLayout01_item-aiCenter {
  align-items: center !important;
}
#main .rLayout01_img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
#main .rLayout01-m {
  /* margin変更 */
}
#main .rLayout01-m02 {
  margin-top: 72px;
}
#main .rLayout01-01 {
  /* SPのみ */
}
#main .rLayout02 {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* タブリスト
------------------------------------------------------------------------------- */
#main .rTabList01 {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#main .rTabList01 > li {
  width: 430px;
}
#main .rTabList01 > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
  border-radius: 999em;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 171.43%;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rTabList01 > li > a.is-active {
  background-color: #fa0046;
  color: #fff;
}

.d_hover #main .rTabList01 > li > a:hover {
  background-color: #fa0046;
  color: #fff;
}

/* リンクリスト
------------------------------------------------------------------------------- */
#main .rLinkList01 {
  /* イメージなし・白背景赤矢印 */
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
#main .rLinkList01 > li {
  width: calc(50% - 30px);
  font-weight: 700;
  font-size: 200%;
  line-height: 1.71;
  letter-spacing: 0.2em;
}
#main .rLinkList01 > li > a {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 25% 44px 8.85%;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
#main .rLinkList01 > li > a::before, #main .rLinkList01 > li > a::after {
  position: absolute;
  top: 0;
  right: 8.85%;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 52px;
  height: 52px;
  margin: auto;
  border-radius: 100%;
  background: #fa0046 url(/recruit/common/images/rn/ico_arrow.svg) no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList01 > li > a::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}
#main .rLinkList01-01 > li {
  width: 100%;
  height: 180px;
}
#main .rLinkList01-01 > li > a {
  padding: 0 23.08% 0 8.85%;
}
#main .rLinkList01-01 > li > a::before, #main .rLinkList01-01 > li > a::after {
  right: 6.92%;
}
#main .rLinkList02 {
  /* 社員リスト */
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
#main .rLinkList02 > li {
  width: calc(50% - 30px);
}
#main .rLinkList02 > li > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
#main .rLinkList02_img img {
  width: 100%;
  height: auto;
}
#main .rLinkList02_blc {
  position: relative;
  height: 100%;
  padding: 18px 90px 22px 18px;
}
#main .rLinkList02_blc::before, #main .rLinkList02_blc::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 52px;
  height: 52px;
  margin: auto;
  border-radius: 100%;
  background: #fa0046 no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList02_blc::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}
#main .rLinkList02_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
#main .rLinkList02_tag > li {
  padding: 0.25em 0.4em;
  border: 2px solid #bfbfbf;
  border-radius: 5px;
  font-weight: 500;
  font-size: 109.09%;
  line-height: 1;
  letter-spacing: 0.06em;
}
#main .rLinkList02_txt {
  margin: 17px 0 0 0;
  font-weight: 700;
  font-size: 257.14%;
  line-height: 1;
  letter-spacing: 0.2em;
}
#main .rLinkList02-col3-1 {
  /* PC 3col / SP 1col */
  gap: 21px;
}
#main .rLinkList02-col3-1 > li {
  width: calc(33.33% - 14px);
}
#main .rLinkList02-col3-1 .rLinkList02_txt {
  font-size: 200%;
}
#main .rLinkList03 {
  /* 背景イメージ（テキスト・矢印 上下中央揃え・拡大hover） */
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#main .rLinkList03 > li {
  width: calc(50% - 20px);
  font-weight: 700;
  font-size: 200%;
  line-height: 1.42;
  letter-spacing: 0.08em;
}
#main .rLinkList03 > li > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
}
#main .rLinkList03 > li > a img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList03 > li > a > span {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 110px 0 48px;
  color: #fff;
}
#main .rLinkList03 > li > a > span::before, #main .rLinkList03 > li > a > span::after {
  position: absolute;
  top: 0;
  right: 45px;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 100%;
  background: no-repeat center center;
  background-size: 20px;
  content: "";
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList03 > li > a > span::after {
  border-color: transparent;
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
}
#main .rLinkList03 > li > a > span small {
  font-size: 80%;
}
#main .rLinkList03-col1-1 {
  /* PC 1col */
}
#main .rLinkList03-col1-1 > li {
  width: 100%;
  font-size: 314.29%;
}
#main .rLinkList03-gap01 {
  gap: 20px;
}
#main .rLinkList03-gap01 > li {
  width: calc(50% - 10px);
}
#main .rLinkList03-aCenter {
  justify-content: center;
}
#main .rLinkList03-01 > li {
  width: 100%;
  font-size: 285.71%;
  letter-spacing: 0.2em;
}
#main .rLinkList04 {
  /* 背景イメージ（テキスト 上下左右中央揃え・赤hover） */
  /* pc 2col / sp 1col */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#main .rLinkList04 > li {
  width: calc(50% - 10px);
  font-weight: 700;
  font-size: 200%;
  letter-spacing: 0.08em;
}
#main .rLinkList04 > li > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList04 > li > a img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList04 > li > a > span {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main .rLinkList04-col3-1 {
  /* pc 3col */
  gap: 21px;
}
#main .rLinkList04-col3-1 > li {
  width: calc(33.33% - 14px);
}
#main .rLinkList04-col3-2 {
  /* pc 3col */
  gap: 12px;
}
#main .rLinkList04-col3-2 > li {
  width: calc(33.33% - 8px);
}
#main .rLinkList04-col1-1 {
  /* pc 1col */
}
#main .rLinkList04-col1-1 > li {
  width: 100%;
  font-size: 285.71%;
}
#main .rLinkList04-01 > li > a > span {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}
#main .rLinkList04-aCenter {
  justify-content: center;
}
#main .rLinkList05 {
  /* 背景イメージ（テキスト 下揃え・拡大hover） */
  /* pc 2col / sp 1col */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#main .rLinkList05 > li {
  width: calc(50% - 10px);
  font-weight: 700;
  font-size: 200%;
  line-height: 1.42;
  letter-spacing: 0.08em;
}
#main .rLinkList05 > li > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
}
#main .rLinkList05 > li > a img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList05 > li > a > span {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  width: 100%;
  padding: 0 80px 22px 30px;
  color: #fff;
}
#main .rLinkList05 > li > a > span::before, #main .rLinkList05 > li > a > span::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: no-repeat center center;
  background-size: 20px;
  content: "";
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList05 > li > a > span::after {
  border-color: transparent;
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
}
#main .rLinkList05-col3-1 {
  /* pc 3col / sp 1col */
  gap: 21px;
}
#main .rLinkList05-col3-1 > li {
  width: calc(33.33% - 14px);
}
#main .rLinkList05-col2-2 {
  /* pc 2col / sp 2col */
}
#main .rLinkList05-col1-1 {
  /* pc 1col / sp 1col */
}
#main .rLinkList05-col1-1 > li {
  width: 100%;
}
#main .rLinkList05 + .rLinkList05 {
  margin-top: 20px;
}
#main .rLinkList06 {
  /* 背景イメージ（テキスト 上下中央揃え・一覧つき・拡大hover） */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#main .rLinkList06 > li {
  width: 100%;
  font-weight: 700;
  font-size: 314.29%;
  line-height: 1;
  letter-spacing: 0.08em;
}
#main .rLinkList06 > li > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
}
#main .rLinkList06 > li > a img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList06 > li > a > span {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main .rLinkList06 > li > a > span:nth-of-type(1) {
  padding: 0 0 0 80px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}
#main .rLinkList06 > li > a > span:nth-of-type(1)::before, #main .rLinkList06 > li > a > span:nth-of-type(1)::after {
  position: absolute;
  top: 0;
  right: 80px;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 100%;
  background: no-repeat center center;
  background-size: 20px;
  content: "";
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList06 > li > a > span:nth-of-type(1)::after {
  border-color: transparent;
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
}
#main .rLinkList06 > li > a > span:nth-of-type(2) {
  justify-content: flex-end;
  padding: 0 160px 0 0;
  font-size: 63.64%;
  line-height: 1;
}
#main .rLinkList06.rLinkList06-noshadow > li > a > span:nth-of-type(1) {
  text-shadow: none;
}
#main .rLinkList06-01 > li {
  line-height: 1.59;
}
#main .rLinkList06-01 > li > a > span:nth-of-type(1) {
  text-shadow: none;
}
#main .rLinkList07 {
  /* テキストリスト > */
}
#main .rLinkList07 li,
.rMenuPanel .rLinkList07 li {
  font-size: 128.57%;
}
#main .rLinkList07 li:not(:last-child),
.rMenuPanel .rLinkList07 li:not(:last-child) {
  margin: 0 0 11px;
}
#main .rLinkList07 li > ul,
.rMenuPanel .rLinkList07 li > ul {
  margin: 11px 0 0 30px;
}
#main .rLinkList07 li *,
.rMenuPanel .rLinkList07 li * {
  font-size: inherit;
}
#main .rLinkList07 > li,
.rMenuPanel .rLinkList07 > li {
  font-weight: 400;
}
#main .rLinkList07 > li a,
.rMenuPanel .rLinkList07 > li a {
  display: inline-flex;
  position: relative;
  padding: 0.1em 0 0.2em;
  color: #000;
  text-decoration: none;
}
#main .rLinkList07 > li a::before, #main .rLinkList07 > li a::after,
.rMenuPanel .rLinkList07 > li a::before, .rMenuPanel .rLinkList07 > li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
}
#main .rLinkList07 > li a::before,
.rMenuPanel .rLinkList07 > li a::before {
  background-color: #bfbfbf;
}
#main .rLinkList07 > li a::after,
.rMenuPanel .rLinkList07 > li a::after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform: scale(0, 1);
          transform-origin: right top;
  background-color: #000;
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList07 > li a > span,
.rMenuPanel .rLinkList07 > li a > span {
  display: block;
  position: relative;
  width: 100%;
  padding-right: 26px;
}
#main .rLinkList07 > li a > span::after,
.rMenuPanel .rLinkList07 > li a > span::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
}
#main .rLinkList07 > li a[target=_blank] > span::after,
.rMenuPanel .rLinkList07 > li a[target=_blank] > span::after {
  -webkit-transform: rotate(0);
  -webkit-filter: brightness(0);
  right: 0px;
  width: 16px;
  height: 16px;
          transform: rotate(0);
  border: none;
  background: url(/recruit/common/images/rn/ico_window.svg) no-repeat;
  background-size: contain;
          filter: brightness(0);
}
#main .rLinkList07-01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 15px 30px;
}
#main .rLinkList07-01 > li:not(:last-child) {
  margin: 0;
}
#main .rLinkList07-01 > li a > span::after {
  right: 4px;
}
#main .rLinkList07-02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 30px;
}
.rMenuPanel .rLinkList07-02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 30px;
}
#main .rLinkList07-gap01,
.rMenuPanel .rLinkList07-gap01 {
  gap: 80px;
}
#main .rLinkList07-02 > li:not(:last-child),
.rMenuPanel .rLinkList07-02 > li:not(:last-child) {
  margin: 0;
}
#main .rLinkList07-02 > li a > span::after,
.rMenuPanel .rLinkList07-02 > li a > span::after {
  right: 4px;
}

#main .rLinkList07-02>li {
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19.4px);
  line-height: 2;
}
.rMenuPanel .rLinkList07-02>li {
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 19.4px);
  line-height: 2;
}


#main .rLinkList07-02>li>ul,
.rMenuPanel .rLinkList07-02>li>ul {
  gap: 15px 30px;
  display: flex;
  flex-wrap: wrap;
}

#main .rLinkList08 {
  /* 画像　画像下にテキストリンク > */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#main .rLinkList08 > li {
  width: calc(50% - 10px);
  font-weight: 400;
  font-size: 128.57%;
}
#main .rLinkList08 > li > a {
  color: #000;
  text-decoration: none;
}
#main .rLinkList08_txt {
  position: relative;
  margin: 8px 8px 0;
  padding: 0.1em 0 0.2em;
}
#main .rLinkList08_txt::before, #main .rLinkList08_txt::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
}
#main .rLinkList08_txt::before {
  background-color: #bfbfbf;
}
#main .rLinkList08_txt::after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform: scale(0, 1);
          transform-origin: right top;
  background-color: #000;
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList08_txt > span {
  display: block;
  position: relative;
  padding-right: 26px;
}
#main .rLinkList08_txt > span::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
}
#main .rLinkList08_img {
  overflow: hidden;
  border-radius: 10px;
}
#main .rLinkList08_img img {
  width: 100%;
  height: auto;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList08 > li > a[target=_blank] .rLinkList08_txt > span::after {
  -webkit-transform: rotate(0);
  -webkit-filter: brightness(0);
  right: 0px;
  width: 16px;
  height: 16px;
          transform: rotate(0);
  border: none;
  background: url(/recruit/common/images/rn/ico_window.svg) no-repeat;
  background-size: contain;
          filter: brightness(0);
}
#main .rLinkList08-col3-1 {
  /* PC 3col */
  gap: 21px;
}
#main .rLinkList08-col3-1 > li {
  width: calc(33.33% - 14px);
}
#main .rLinkList09 {
  /*  > テキストリスト */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#main .rLinkList09 > li {
  font-weight: 400;
  font-size: 128.57%;
  letter-spacing: 0.06em;
}
#main .rLinkList09 > li a {
  display: inline-flex;
  position: relative;
  padding: 0 0 0 17px;
  color: #000;
  text-decoration: none;
  text-underline-offset: 0.5em;
}
#main .rLinkList09 > li a::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
          transform: rotate(45deg);
  border-top: 1px solid #fa0046;
  border-right: 1px solid #fa0046;
  content: "";
}
#main .rLinkList09-m01 {
  margin-top: 0.5em;
}
#main .rLinkList09-m02 {
  margin-top: 2.4em;
}
#main .rLinkList10 {
  /*  社員紹介リスト */
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
#main .rLinkList10-m01 {
  margin: 56px 0 180px;
}
#main .rLinkList10 > li {
  width: calc(33.33% - 14px);
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}
#main .rLinkList10 > li > a {
  display: block;
  position: relative;
  height: 100%;
  color: #000;
  text-decoration: none;
}
#main .rLinkList10 > li > a::before, #main .rLinkList10 > li > a::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  aspect-ratio: 1/1;
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: #fa0046 no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rLinkList10 > li > a::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}
#main .rLinkList10 > li.is-disabled {
  position: relative;
}
#main .rLinkList10 > li.is-disabled::before, #main .rLinkList10 > li.is-disabled::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main .rLinkList10 > li.is-disabled::before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
}
#main .rLinkList10 > li.is-disabled::after {
  display: flex;
  top: -0.35em;
  align-items: center;
  justify-content: center;
  content: "COMING SOON";
  color: #fff;
  font-weight: 700;
  font-size: 200%;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
}
#main .rLinkList10_blc {
  padding: 10px 20px 20px 20px;
}
#main .rLinkList10_cate {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -10px;
  gap: 6px;
}
#main .rLinkList10_cate > li {
  padding: 0.25em 0.3em;
  border: 2px solid #bfbfbf;
  border-radius: 5px;
  font-weight: 700;
  font-size: 96.97%;
  line-height: 1;
  letter-spacing: 0.06em;
}
#main .rLinkList10_name {
  margin: 27px 0 0;
  font-weight: 700;
  font-size: 200%;
  line-height: 1;
  letter-spacing: 0.2em;
}
#main .rLinkList10_en {
  margin: 15px 0 0;
  color: #fa0046;
  font-weight: 700;
  font-size: 114.29%;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
}
#main .rLinkList10_tag {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
  padding: 0 80px 0 0;
  gap: 9px 6px;
}
#main .rLinkList10_tag > li {
  font-weight: 700;
  font-size: 96.97%;
  line-height: 1;
  letter-spacing: 0.06em;
}
#main .rLinkList10_img img {
  width: 100%;
  height: auto;
}

.d_hover #main .rLinkList01 > li > a:hover::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}
.d_hover #main .rLinkList02 > li > a:hover .rLinkList02_blc::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}
.d_hover #main .rLinkList03 > li > a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.d_hover #main .rLinkList03 > li > a:hover > span::before {
  border-color: transparent;
  background-color: #fa0046;
}
.d_hover #main .rLinkList04 > li > a:hover {
  background-color: #fa0046;
}
.d_hover #main .rLinkList04 > li > a:hover img {
  opacity: 0.15;
}
.d_hover #main .rLinkList05 > li > a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.d_hover #main .rLinkList05 > li > a:hover > span::before {
  border-color: transparent;
  background-color: #fa0046;
}
.d_hover #main .rLinkList06 > li > a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.d_hover #main .rLinkList06 > li > a:hover > span:nth-of-type(1)::before {
  border-color: transparent;
  background-color: #fa0046;
}
.d_hover #main .rLinkList07 > li a:hover::after,
.d_hover .rMenuPanel .rLinkList07 > li a:hover::after {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform: scale(1, 1);
          transform-origin: left top;
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.d_hover #main .rLinkList08 > li > a:hover .rLinkList08_txt::after {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform: scale(1, 1);
          transform-origin: left top;
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.d_hover #main .rLinkList08 > li > a:hover .rLinkList08_img img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.d_hover #main .rLinkList09 > li > a:hover {
  text-decoration: none !important;
}
.d_hover #main .rLinkList10 > li > a:hover::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}

/* イメージリスト
------------------------------------------------------------------------------- */
#main .rImgList01 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#main .rImgList01 > div {
  width: calc(50% - 5px);
}
#main .rImgList01 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
#main .rImgList02 {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 0;
}
#main .rImgList02 > div:nth-of-type(1) {
  width: 100%;
}
#main .rImgList02 > div:nth-of-type(2) {
  position: relative;
  left: 43.02%;
  width: 75.47%;
}
#main .rImgList02 > div:nth-of-type(3) {
  width: 66.04%;
  margin: 0 0 0 11.32%;
}
#main .rImgList02 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* エントリーブロック
------------------------------------------------------------------------------- */
#main .rEntry01 {
  padding: 116px 0 115px;
}
#main .rEntry01-p01 {
  padding: 113px 0;
}
#main .rEntry01_blc {
  margin: 102px 0 0;
}
#main .rEntry01_list {
  display: flex;
  gap: 0 24px;
}
/* インターンシップENTRY無し */
#main .rEntry01-intern {
  padding: 40px 0;
}
/* インターンシップENTRYあり
#main .rEntry01-intern {
  padding: 200px 0;
}
*/
#main .rEntry01_list > li {
  position: relative;
  aspect-ratio: 1/1;
  width: calc(100% - 16px);
  font-weight: 700;
  font-size: clamp(32px, 3.63vw, 40px);
  line-height: 1.5;
  font-family: "Roboto", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
}
#main .rEntry01_list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #fa0046;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rEntry01_list > li > a {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20% 0 2.5em 16.57%;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
#main .rEntry01_list > li > a::after {
  position: absolute;
  right: 17.14%;
  bottom: 20%;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: url(/recruit/common/images/rn/ico_arrow.svg) no-repeat center center;
  background-size: 20px;
  content: "";
}
#main .rEntry01_list > li > a small {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(24px, 2.9vw, 32px);
  vertical-align: top;
}
#main .rEntry01_list-01 {
  position: relative;
  width: 69.17%;
  gap: 0;
}
#main .rEntry01_list-02 {
  width: 65.82%;
}
#main .rEntry01_list-03 {
  width: 72.73%;
  margin: 0 auto;
}
#main .rEntry01_list-04 {
  width: 65.82%;
  margin: 0 auto 24px;
}
#main .rEntry01_column2-1 {
  display: flex;
  align-items: center;
}
#main .rEntry01_column2-1 > div {
  width: 50%;
}
#main .rEntry01 .rTitle02 {
  margin-bottom: 50px;
}
.d_hover #main .rEntry01_list > li:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}


/* 新卒採用情報配下 2025/04追加 */
#main .rEntry01-freshers .rEntry01_list > li {
  font-size: clamp(30px, 3.15vw, 36px);
  line-height: 1.2;
}
#main .rEntry01-freshers .rEntry01_list > li > a::after {
  right: 16.14%;
  bottom: 17%;
}



/* ニュース
------------------------------------------------------------------------------- */
#main .rNews01 {
  margin: 60px 0 45px;
  padding: 25px 0 12px;
  border-radius: 10px;
  background-color: #fff;
}
#main .rNews01_column {
  display: flex;
}
#main .rNews01_column > div:nth-of-type(1) {
  width: 145px;
  text-align: center;
}
#main .rNews01_column > div:nth-of-type(2) {
  width: calc(100% - 375px);
  padding: 0 20px 0 0;
}
#main .rNews01_column > div:nth-of-type(3) {
  align-self: flex-end;
  width: 230px;
  padding: 0 20px 15px 0;
  text-align: right;
}
#main .rNews01_tit {
  margin: 0;
  padding: 0;
  background: none;
  font-weight: 700;
  font-size: 166.67%;
  line-height: 1.77;
  letter-spacing: 0.08em;
}
#main .rNews01_tit::after {
  display: inline-flex;
  position: relative;
  top: -0.25em;
  margin: 0 0 0 1em;
  content: "●";
  color: #fa0046;
  font-size: 12px;
}
#main .rNews01_list a {
  color: #000;
}
#main .rNews01_list a[href$='.pdf']::after {
	content: "";
	display: inline-block;
	width: 21px;
	height: 15px;
	margin: 0 0 0 10px;
	background: url(/common/images/rn04/svg/pdf_ico01.svg) left top no-repeat;
	background-size: contain;
	vertical-align: 0;
}
#main .rNews01_list dt, #main .rNews01_list dd {
  font-weight: 400;
  font-size: 150%;
  line-height: 1.77;
  letter-spacing: 0.04em;
}
#main .rNews01_list dt {
  color: #737373;
}
#main .rNews01_list dd {
  margin: -1.8em 0 0.6em 7em;
}

#main .rNews01_list dd.new{
  display: flex;
  align-items: flex-start;
}
#main .rNews01_list dd.new::before {
  content: "NEW";
  margin: 0.6em 0.75em 0 0;
  padding: 4px 5px;
  border-radius: 4px;
  background-color: #fa0046;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

#main .rNews01_btn {
  font-weight: 700;
  font-size: 150%;
  letter-spacing: 0.08em;
}
#main .rNews01_btn > a {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 0 76px 0 0;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
#main .rNews01_btn > a::before, #main .rNews01_btn > a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 100%;
  background: #fa0046 no-repeat center center;
  background-size: 20px;
  content: "";
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rNews01_btn > a::after {
  background-image: url(/recruit/common/images/rn/ico_arrow.svg);
  background-color: transparent;
}

.d_hover #main .rNews01_list a:hover {
  opacity: 0.7;
}
.d_hover #main .rNews01_btn > a:hover::before {
  -webkit-transform: scale(1.125);
          transform: scale(1.125);
}

/* VOICE
------------------------------------------------------------------------------- */
#main .rVoiceList01 > li {
  position: relative;
  padding: 0 0 0 31.82%;
  font-weight: 700;
  font-size: clamp(24px, 2.36vw, 28px);
  line-height: 1.85;
  letter-spacing: 0.12em;
  text-align: left;
}
#main .rVoiceList01 > li b {
  color: #fa0046;
  font-weight: 700;
}
#main .rVoiceList01 > li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.09%;
  aspect-ratio: 1/1;
  width: 16.36%;
  margin: auto;
  overflow: hidden;
  border-radius: 100%;
  background: #5693d6 url("/recruit/common/images/rn/ico_person01.svg") no-repeat center center;
  background-size: contain;
  box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.1);
  content: "";
}
#main .rVoiceList01 > li > span {
  display: block;
  position: relative;
  padding: 48px 2% 48px 5.33%;
  border-radius: 10px;
  background-color: #fff;
}
#main .rVoiceList01 > li > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -36px;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 18px 36px 18px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  content: "";
}
#main .rVoiceList01 > li:nth-of-type(3n-1)::before {
  background-image: url("/recruit/common/images/rn/ico_person02.svg");
  background-color: #fde230;
}
#main .rVoiceList01 > li:nth-of-type(3n)::before {
  background-image: url("/recruit/common/images/rn/ico_person03.svg");
  background-color: #80c269;
}
#main .rVoiceList01 > li:nth-of-type(2n) {
  padding: 0 31.82% 0 0;
}
#main .rVoiceList01 > li:nth-of-type(2n)::before {
  right: 6.09%;
  left: auto;
}
#main .rVoiceList01 > li:nth-of-type(2n) > span::before {
  -webkit-transform: scale(-1, 1);
  right: -36px;
  left: auto;
          transform: scale(-1, 1);
}
#main .rVoiceList01 > li:not(:last-child) {
  margin: 0 0 60px;
}
#main .rVoiceList01-01 {
  margin: 60px 0 0;
}
#main .rVoiceList01-01 > li {
  font-weight: 400;
  font-size: 128.57%;
  letter-spacing: 0.02em;
}
#main .rVoiceList01-01 > li > span {
  padding: 20px 40px;
}

/* MORE INFO
------------------------------------------------------------------------------- */
#main .rMoreInfo01 {
  display: flex;
  margin: 80px 0 0;
}
#main .rMoreInfo01_tit {
  width: 150px;
  padding: 9px 0 0;
  font-weight: 700;
  font-size: 166.67%;
  letter-spacing: 0.08em;
}
#main .rMoreInfo01_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#main .rMoreInfo01_list > li {
  font-size: 128.57%;
  letter-spacing: 0.04em;
}
#main .rMoreInfo01_list > li > a {
  display: flex;
  position: relative;
  align-items: center;
  height: 48px;
  padding: 0 50px 0 20px;
  border: 1px solid #bfbfbf;
  border-radius: 999em;
  background-color: #fff;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  transition: border 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#main .rMoreInfo01_list > li > a[target=_blank]::after {
  -webkit-transform: rotate(0);
  position: absolute;
  right: 22px;
  width: 16px;
  height: 16px;
          transform: rotate(0);
  border: none;
  background: url(/recruit/common/images/rn/ico_window.svg) no-repeat;
  background-size: contain;
  content: "";
}

.rBg-red .rMoreInfo01_tit {
  color: #fff !important;
}

.d_hover #main .rMoreInfo01_list > li > a:hover {
  border-color: #fa0046;
}

/* 汎用追加
------------------------------------------------------------------------------- */
.w22p {
  width: 22% !important;
}

.w26p {
  width: 26% !important;
}

.ffsPalt {
  -webkit-font-feature-settings: "palt" !important;
          font-feature-settings: "palt" !important;
}

.ls00 {
  letter-spacing: 0 !important;
}

.ls60 {
  letter-spacing: 0.06em !important;
}

.ls40-pc {
  letter-spacing: 0.04em !important;
}

.ls160-pc {
  letter-spacing: 0.16em !important;
}

.opc100 {
  opacity: 100 !important;
}

/* ==

　04. JS用CSS

=============================================================================== */
.fnInviewChangeBg {
  background-color: #ddd;
  transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fnInviewChangeBg.is-inview {
  background-color: #fa0046;
  color: #fff;
}
