@charset "UTF-8";


/*
* タグ再設定
*/
* {
  min-height: 0;
  min-width: 0;
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  text-align: justify;
  color: #465565;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  background-image: none;
}

ul, li {
  list-style: none;
}

a {
  color: #465565;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}


/*
* レイアウト
*/
.sp { display: none; }


.primaryWrap {
  margin: 0;
  padding: 80px 0 0 0;
  /* overflow: hidden; */
}
.columnWrap {
  display: flex;
  gap: 80px;
  margin: 0 auto;
  padding: 0;
}
.secondaryWrap {
  flex: 1;
  margin: 0 0 -1px 0;
  padding: 0;
  overflow: hidden;
}
.inner {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}
.inner1320 {
  width: calc(100% - 40px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}
.inner1200 {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.inner1080 {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
.inner1020 {
  width: calc(100% - 40px);
  max-width: 1020px;
  margin: 0 auto;
  padding: 0;
}
.inner960 {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.inner660 {
  width: calc(100% - 40px);
  max-width: 660px;
  margin: 0 auto;
  padding: 0;
}
.scrollStop {
  overflow: hidden;
}




/*
* 色
*/
.colorRed { color: #b00b0b; }
.colorGreen { color: #367b00; }

.wd10 { width: 10% !important; }
.wd20 { width: 20% !important; }
.wd30 { width: 30% !important; }
.wd40 { width: 40% !important; }
.wd50 { width: 50% !important; }
.wd60 { width: 60% !important; }
.wd70 { width: 70% !important; }
.wd80 { width: 80% !important; }
.wd90 { width: 90% !important; }
.wd100 { width: 100% !important; }

.b { font-weight: 700 !important; }
.c { text-align: center; }
.l { text-align: left; }
.r { text-align: right; }
.nowrap { white-space: nowrap; }

.fNotoSans {
  font-family: 'Noto Sans JP', sans-serif;
}
.fNotoSerif {
  font-family: 'Noto Serif JP', serif;
}
.fJost {
  font-family: 'Jost', sans-serif;
}
.fSen {
  font-family: 'Sen', sans-serif;
}
.fBely {
  font-family: "bely-display", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fUdshingo {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.fRedHatDisplay {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* フォントカラー */
.fcWhite { color: #FFFFFF; }
.fcOrange { color: #D7AE50; }
/* 背景色 */
.bcIvory { background-color: #FBF9F5; }



/*
* loader
*/
#pageloading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F5F9FF;
  z-index: 99999;
}
#pageloading img {
  width: 10vw;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg); /* 初期の回転角度 */
  }
  to {
    transform: rotate(360deg); /* 最終的な回転角度 */
  }
}



/*
* ブラインド
*/
#blind {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-blend-mode: screen;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 80000;
}
#blind.on { display: block; }


/*
* ヘッダー
*/
/* ロゴ */
#headerLogo {
  position: fixed;
  top: 0;
  left: 0;
  width: 304px;
  height: 100px;
  margin: 0;
  padding: 0;
  z-index: 95000;
}
#headerLogo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  border-radius: 0 0 20px 0;

}
#headerLogo img {
  display: block;
  width: 240px;
}
/* ヘッダー全体 */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 40px;
  width: 100vw;
  height: 100px;
  margin: 0;
  padding: 0;
  z-index: 80000;
}
/* メニュー */
#siteHeader .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0 0 10px 0;
}
#siteHeader ul.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
  margin: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
}
#siteHeader ul.nav li.cell {
  position: relative;
  margin: 0;
  padding: 0;
}
#siteHeader ul.nav li.cell > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#siteHeader ul.nav li.cell > a.parent::after {
  content: "";
  width: 8px;
  height: 4px;
  margin-left: 0;
  padding: 0;
  background-image: url(../img/arrowBlue01D.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#siteHeader ul.nav li.cell > a:hover {
  background-color: rgba(27, 116, 193, 0.2);
  border-radius: 9999px;
  opacity: 1;
}
#siteHeader ul.nav li.cell > a.parent:hover::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}
/* サブメニュー */
#siteHeader .smenu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  margin: 10px 0 0 0;
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.63);
  backdrop-filter: blur(5px);
  border-radius: 8px;
}
#siteHeader .smenu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  padding: 0;
}
#siteHeader .smenu li.head {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #7B97E2;
  font-size: 12px;
  font-weight: 500;
}
#siteHeader .smenu li.link {
  margin: 0;
  padding: 0;
}
#siteHeader .smenu li.link a {
  position: relative;
  margin: 0;
  padding: 0 0 0 12px;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 500;
}
#siteHeader .smenu li.link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 12px;
  margin: 0;
  padding: 0;
  border-top: #1B74C1 1px solid;
}
/* ボタン */
#siteHeader ul.button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#siteHeader ul.button li {
  margin: 0;
  padding: 0;
}
#siteHeader ul.button li a.entryMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin: 0;
  padding: 0 40px;
  font-family: 'red hat display', sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  background-color: #D8504C;
  border-radius: 9999px 0 0 9999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 追従ボタン */
#siteHeader ul.buttonFollow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: 0 20px 0 0;
  padding: 5px;
  background-color: rgb(27, 116, 193, 0.2);
  border-radius: 8px;
  z-index: 95000;
}
#siteHeader ul.buttonFollow li {
  margin: 0;
  padding: 0;
}
#siteHeader ul.buttonFollow li a.entryMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin: 0;
  padding: 0 40px;
  font-family: 'red hat display', sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  background-color: #D8504C;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#siteHeader ul.buttonFollow li a.menuToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 44px;
}
#siteHeader ul.buttonFollow li a.menuToggle img {
  display: block;
  width: auto;
  height: 44px;
}
@media screen and (max-width:1460px){
  
}


/*
* 開閉メニュー
*/
#drawerMenu {
  position: fixed;
  top: 0;
  right: 0;
  transition: ease-in-out 0.8s;
  display: block;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #1B74C1;
  z-index: -1;
  opacity: 0;
}
#drawerMenu.open {
  z-index: 90000;
  opacity: 1;
}
#drawerMenu .replaceFooter {
  width: 100vw;
  height: 100%;
  margin: -1px 0 0 0;
  padding: 0 0 60px 0;
  background-color: #F5F9FF;
  overflow: scroll;
}
/* 閉じるボタン */
#drawerMenu .button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 0;
}
#drawerMenu .button a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Red Hat Display', sans-serif;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}
/* 上部アーチ */
#drawerMenu .upperArch {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 120px;
  overflow: hidden;
}
#drawerMenu .upperArch::after {
  content: '';
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 360vw;
  height: 120vw;
  background-color: #F5F9FF;
  border-radius: 50%;
  z-index: 5;
}
/* プロフィール */
#drawerMenu .profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
}
#drawerMenu .profile .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#drawerMenu .profile .info .logo {
  width: 240px;
  margin: 0;
  padding: 0;
}
#drawerMenu .profile .info .address {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#drawerMenu .profile .info a.corporateSite {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 340px;
  max-width: 100%;
  margin: 0;
  padding: 10px 40px 10px 20px;
  color: #001B6F;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 4px;
  overflow: hidden;
}
#drawerMenu .profile .info a.corporateSite::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/arrowCircleBlue04R.svg);
  background-size: cover;
  z-index: 1;
}
#drawerMenu .profile .info a.corporateSite:hover {
  background-color: #E4EDF8;
}
#drawerMenu .profile .info a.corporateSite:hover::after {
  background-image: url(../img/arrowCircleRed03R.svg);
}
/* 採用リンク */
#drawerMenu .linkEntry {
  flex: 2;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 20px;
  margin: 0;
  padding: 0;
}
#drawerMenu .linkEntry li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#drawerMenu .linkEntry li a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 20px 60px 20px;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#drawerMenu .linkEntry li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#drawerMenu .linkEntry li a.newGraduate::after {
  background-image: url(../img/arrowCircleRed03R.svg);
}
#drawerMenu .linkEntry li a.midCareer::after {
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#drawerMenu .linkEntry img.dot {
  display: block;
  width: 24px;
  margin: 0;
}
#drawerMenu .linkEntry li a:hover.newGraduate {
  opacity: 1;
  color: #FFFFFF;
  background-color: #D8504C;
}
#drawerMenu .linkEntry li a:hover.midCareer {
  opacity: 1;
  color: #FFFFFF;
  background-color: #1B74C1;
}
#drawerMenu .linkEntry li a:hover.newGraduate::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#drawerMenu .linkEntry li a:hover.midCareer::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#drawerMenu .linkEntry h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#drawerMenu .linkEntry h4 en {
  font-family: 'Red Hat Display', sans-serif;
  color: #D8504C;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#drawerMenu .linkEntry li a.newGraduate h4 en {
  color: #D8504C;
}
#drawerMenu .linkEntry li a.midCareer h4 en {
  color: #1B74C1;
}
#drawerMenu .linkEntry li a:hover h4 en {
  color: #FFFFFF;
}
#drawerMenu .linkEntry li a.newGraduate h4::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  margin-bottom: 5px;
  background-image: url(../img/dotBlue02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#drawerMenu .linkEntry li a.midCareer h4::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  margin-bottom: 5px;
  background-image: url(../img/dotRed02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#drawerMenu .linkEntry li a:hover.newGraduate h4::before {
  background-image: url(../img/dotBlue01.svg);
}
#drawerMenu .linkEntry li a:hover.midCareer h4::before {
  background-image: url(../img/dotRed01.svg);
}
/* 区切り線 */
#drawerMenu hr {
  height: 1px;
  margin: 60px auto;
  padding: 0;
  border: none;
  background-color: #E4EDF8;
}
/* サイトマップ */
#drawerMenu .sitemap {
  margin: 0 auto;
  padding: 0;
}
#drawerMenu .sitemap .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#drawerMenu .sitemap ul.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#drawerMenu .sitemap ul.col li {
  width: 100%;
  margin: 0;
  padding: 0;
}
#drawerMenu .sitemap ul.col li a.link,
#drawerMenu .sitemap ul.col li span.link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
}
#drawerMenu .sitemap ul.col li a.link:hover {
  opacity: 1;
}
#drawerMenu .sitemap ul.col li a.link::before {
  content: "";
  width: 12px;
  height: 1px;
  margin: 0 -16px 0 0;
  padding: 0;
  background-color: #E4EDF8;
}
#drawerMenu .sitemap ul.col li a.link::after {
  content: "";
  display: block;
  width: 3px;
  height: 6px;
  background-image: url(../img/arrowBlue01R.svg);
  background-size: cover;
}
#drawerMenu .sitemap ul.col li a.link:hover::after {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#drawerMenu .sitemap ul.col li a.link en,
#drawerMenu .sitemap ul.col li span.link en {
  font-family: 'Red Hat Display', sans-serif;
  color: #1B74C1;
  font-size: 15px;
  font-weight: 500;
}
/* リンクボタン */
#drawerMenu .sitemap .linkButtonNormal {
  width: 100%;
}


/*
* エントリーメニュー
*/
#entryMenu {
  position: fixed;
  top: 0;
  right: 0;
  transition: ease-in-out 0.8s;
  display: block;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #F5F9FF;
  z-index: -1;
  opacity: 0;
}
#entryMenu.open {
  z-index: 90000;
  opacity: 1;
}
/* 閉じるボタン */
#entryMenu .button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 0;
}
#entryMenu .button a.drawerClose {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  text-align: center;
  font-family: 'Red Hat Display', sans-serif;
  color: #1B74C1;
  font-size: 12px;
  font-weight: 700;
}
/* 上部アーチ */
#entryMenu .upperArch {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 120px;
  overflow: hidden;
}
#entryMenu .upperArch::after {
  content: '';
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 360vw;
  height: 120vw;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 5;
}
/* コンテンツ */
#entryMenu .contentWrap {
  width: 100vw;
  height: 100%;
  margin: -1px 0 0 0;
  padding: 0 0 100px 0;
  background-color: #FFFFFF;
  overflow: scroll;
}
#entryMenu .inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  margin: 0 auto;
  padding: 40px 0;
}
/* タイトル */
#entryMenu .title {
  flex: 1;
  display: flex;
  align-items: last baseline;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 40px auto;
}
#entryMenu .title img.titlePict {
  transform: translateY(0px);
}
#entryMenu .title strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
#entryMenu .title strong span {
  color: #D8504C;
}
/* 採用リンク */
#entryMenu .linkEntry {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 20px;
  margin: 0;
  padding: 0;
}
#entryMenu .linkEntry li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#entryMenu .linkEntry li a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 20px 60px 20px;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#entryMenu .linkEntry li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#entryMenu .linkEntry li a.newGraduate::after {
  background-image: url(../img/arrowCircleRed03R.svg);
}
#entryMenu .linkEntry li a.midCareer::after {
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#entryMenu .linkEntry img.dot {
  display: block;
  width: 24px;
  margin: 0;
}
#entryMenu .linkEntry h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#entryMenu .linkEntry h4 en {
  font-family: 'Red Hat Display', sans-serif;
  color: #D8504C;
  font-size: 12px;
  font-weight: 700;
}
/* 閉じるボタンSP */
#entryMenu .button.sp {
  display: none;
}


/*
* フッター
*/
#siteFooter {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
}
/* プロフィール */
#siteFooter .profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
}
#siteFooter .profile .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#siteFooter .profile .info .logo {
  width: 240px;
  margin: 0;
  padding: 0;
}
#siteFooter .profile .info .address {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#siteFooter .profile .info a.corporateSite {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 340px;
  max-width: 100%;
  margin: 0;
  padding: 10px 40px 10px 20px;
  color: #001B6F;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 4px;
  overflow: hidden;
}
#siteFooter .profile .info a.corporateSite::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/arrowCircleBlue04R.svg);
  background-size: cover;
  z-index: 1;
}
#siteFooter .profile .info a.corporateSite:hover {
  background-color: #E4EDF8;
}
#siteFooter .profile .info a.corporateSite:hover::after {
  background-image: url(../img/arrowCircleRed03R.svg);
}
/* 採用リンク */
#siteFooter .linkEntry {
  flex: 2;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 20px;
  margin: 0;
  padding: 0;
}
#siteFooter .linkEntry li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#siteFooter .linkEntry li a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 20px 60px 20px;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#siteFooter .linkEntry li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#siteFooter .linkEntry li a.newGraduate::after {
  background-image: url(../img/arrowCircleRed03R.svg);
}
#siteFooter .linkEntry li a.midCareer::after {
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#siteFooter .linkEntry li a:hover.newGraduate {
  opacity: 1;
  color: #FFFFFF;
  background-color: #D8504C;
}
#siteFooter .linkEntry li a:hover.midCareer {
  opacity: 1;
  color: #FFFFFF;
  background-color: #1B74C1;
}
#siteFooter .linkEntry li a:hover.newGraduate::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#siteFooter .linkEntry li a:hover.midCareer::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#siteFooter .linkEntry h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#siteFooter .linkEntry h4 en {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#siteFooter .linkEntry li a.newGraduate h4 en {
  color: #D8504C;
}
#siteFooter .linkEntry li a.midCareer h4 en {
  color: #1B74C1;
}
#siteFooter .linkEntry li a:hover h4 en {
  color: #FFFFFF;
}
#siteFooter .linkEntry li a.newGraduate h4::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  margin-bottom: 5px;
  background-image: url(../img/dotBlue02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#siteFooter .linkEntry li a.midCareer h4::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  margin-bottom: 5px;
  background-image: url(../img/dotRed02.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#siteFooter .linkEntry li a:hover.newGraduate h4::before {
  background-image: url(../img/dotBlue01.svg);
}
#siteFooter .linkEntry li a:hover.midCareer h4::before {
  background-image: url(../img/dotRed01.svg);
}
/* 区切り線 */
#siteFooter hr {
  height: 1px;
  margin: 60px auto;
  padding: 0;
  border: none;
  background-color: #E4EDF8;
}
/* サイトマップ */
#siteFooter .sitemap {
  margin: 0 auto;
  padding: 0 0 60px 0;
}
#siteFooter .sitemap .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#siteFooter .sitemap ul.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#siteFooter .sitemap ul.col li {
  width: 100%;
  margin: 0;
  padding: 0;
}
#siteFooter .sitemap ul.col li a.link,
#siteFooter .sitemap ul.col li span.link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
}
#siteFooter .sitemap ul.col li a.link:hover {
  opacity: 1;
}
#siteFooter .sitemap ul.col li a.link::before {
  content: "";
  width: 12px;
  height: 1px;
  margin: 0 -16px 0 0;
  padding: 0;
  background-color: #E4EDF8;
}
#siteFooter .sitemap ul.col li a.link::after {
  content: "";
  display: block;
  width: 3px;
  height: 6px;
  background-image: url(../img/arrowBlue01R.svg);
  background-size: cover;
}
#siteFooter .sitemap ul.col li a.link:hover::after {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#siteFooter .sitemap ul.col li a.link en,
#siteFooter .sitemap ul.col li span.link en {
  font-family: 'Red Hat Display', sans-serif;
  color: #1B74C1;
  font-size: 15px;
  font-weight: 500;
}
/* リンクボタン */
#siteFooter .sitemap .linkButtonNormal {
  width: 100%;
}
/* copyright */
#siteFooter .copyright {
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  background-color: #1B74C1;
}
#siteFooter .copyright .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0
}
#siteFooter .copyright a {
  color: #FFFFFF;
}



/*
* サイドバー
*/
#sidebar {
  width: 340px;
  margin: 0;
  padding: 0;
}




/*
* パンくず
*/
#pankuzu {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 40px 80px auto;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}
#pankuzu .aioseo-breadcrumbs {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.primaryWrap > #pankuzu {
  margin-top: 20px;
  margin-bottom: 20px;
}



/*
* ページャー
*/
.pagination {
  margin: 0;
  padding: 0;
  font-family: 'Sen', sans-serif;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}
/* ARROW */
.pagination .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
}
.pagination .arrow img.icon {
  display: block;
  width: 50px;
}
/* ページ */
.pagination .pageNumbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #959EA7;
  margin: 0;
  padding: 0 20px;
  text-align: center;
}
.pagination .pageNumbers .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  background-color: #F5F9FF;
  border-radius: 9999px;
  cursor: pointer;
}
/* ボタン無効化 */
.pagination span.arrow {
  opacity: 0.5;
  cursor: default;
}
.pagination span.num.current {
  color: #FFFFFF;
  background-color: #1B74C1;
  cursor: auto;
}




/*
* 投稿リスト
*/
.postList {
  margin: 0 0 80px 0;
  padding: 0;
}
.postList ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  margin: 0px;
  padding: 0;
}
.postList li {
  width: 100%;
  margin: -1px 0 0 0;
  padding: 0;
}
.postList li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 20px 0;
  border-top: #DBE5F0 1px solid;
  border-bottom: #DBE5F0 1px solid;
}
.postList li a:first-child {
  border-top: none;
}
.postList li a::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../img/arrowCircleBlue02R.svg);
  background-size: cover;
}
.postList .date {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
.postList .catWrap {
  width: 120px;
}
.postList .cat {
  margin: 0;
  padding: 3px 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  background-color: #1B74C1;
  border-radius: 4px;
}
.postList h4 {
  flex: 1;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}










/*
* フォーム
*/
.formWrap {

}
.formWrap dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.formWrap dl + dl {
  margin-top: 30px;
}
.formWrap dl:last-of-type {
  margin-bottom: 60px;
}
.formWrap dt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 0 10px 0;
  font-size: 16px;
  font-weight: 400;
}
.formWrap dt.req::after {
  content: "必須";
  display: inline-block;
  margin: 0;
  padding: 6px 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background-color: #D8504C;
  border-radius: 4px;
}
.formWrap dt.any::after {
  content: "任意";
  display: inline-block;
  margin: 0;
  padding: 6px 8px;
  color: #465565;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background-color: #BECCDE;
  border-radius: 4px;
}
.formWrap dd {
  width: 100%;
  margin: 0;
  padding: 0;
}
.formWrap dd .wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 2px;
  font-weight: 400;
}
.formWrap dd .wrap p {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
/* 横並び */
.formWrap dl.horizontal {
  flex-direction: row;
  align-items: flex-start;
}
.formWrap dl.horizontal dt {
  width: 280px;
  max-width: 40%;
  padding: 0;
}
.formWrap dl.horizontal dd {
  flex: 1;
}
/* input */
.formWrap ::placeholder{
  color: #959EA7;
  font-weight: 400;
}
.formWrap span.error { font-size: 14px; }
.formWrap input[type='text'],
.formWrap input[type='tel'],
.formWrap input[type='email'],
.formWrap input[type='file'],
.formWrap input[type='password'],
.formWrap input[type='tel'],
.formWrap textarea,
.formWrap select {
  max-width: 100%;
  margin: 0;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2px;
  background-color: #F5F9FF;
  border: #BECCDE 1px solid;
  border-radius: 8px;
  line-height: 150%;
}
/* select */
.formWrap select {
  width: auto;
  -webkit-appearance:none;
  appearance:none;
  padding-right: 40px;
}
.formWrap .selectArrow {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.formWrap .selectArrow::after {
  content:"";
  display:block;
  width: 10px;
  height: 10px;
  position:absolute;
  right: 15px;
  top: calc(50% - 7px);
  border-bottom:#333 2px solid;
  border-right:#333 2px solid;
  transform:rotate(45deg);
  pointer-events: none;
}
/* radio */
.formWrap dd .radioGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.formWrap dd .radioGroup input[type="radio"]{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.formWrap dd .radioGroup label {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
  font-size: 16px;
  cursor: pointer;
}
.formWrap dd .radioGroup label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: #BECCDE 1px solid;
  border-radius: 9999px;
  background: #F5F9FF;
}
.formWrap dd .radioGroup label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(-50%, -50%);
  display: none;
  width: 12px;
  height: 12px;
  background-color: #1B74C1;
  border-radius: 9999px;
  
}
.formWrap dd .radioGroup input[type="radio"]:checked + label::after{
  display: block;
}
/* checkbox */
.formWrap .checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.formWrap .checkbox input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.formWrap .checkbox label {
  position: relative;
  margin: 0;
  padding: 0 0 0 30px;
  font-size: 16px;
  cursor: pointer;
}
.formWrap .checkbox label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: #BECCDE 1px solid;
  border-radius: 4px;
  background: #F5F9FF;
}
.formWrap .checkbox label::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  display: none;
  width: 6px;
  height: 12px;
  border-right: 3px solid #1B74C1;
  border-bottom: 3px solid #1B74C1;
}
.formWrap .checkbox input[type="checkbox"]:checked + label::after{
  display: block;
}
/* メディアアップロード */
.formWrap .dropArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 20px;
  text-align: center;
  color: #BECCDE;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  background-color: #F5F9FF;
  border: #BECCDE 1px solid;
  border-radius: 8px;
}
.formWrap .dropArea input[type='file'] {
  display: none;
}
.formWrap .dropArea input[type='file'] + label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 280px;
  max-width: 100%;
  margin: 0;
	padding: 3px 10px;
	text-align: center;
  color: #465565;
  font-size: 16px;
  font-weight: 400;
	background-color: #FFFFFF;
	border: #BECCDE 1px solid;
  border-radius: 8px;
	cursor: pointer;
}
.formWrap .dropArea.dragover {
  border: #094DB0 5px dashed;
  background-color: #F1F1F1;
}
.formWrap .dropArea .fileNames:empty {
  display: none;
}
.formWrap .dropArea .fileNames:not(:empty) {
  display: block;
  color: #BECCDE;
  font-size: 12px;
  font-weight: 400;
}
/* プライバシーポリシー */
.formWrap .ppAgree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0 0 100px 0;
  text-align: center;
  font-size: 14px;
}
.formWrap dl + .ppAgree {
  margin-top: 80px;
  gap: 40px;
  padding-bottom: 80px;
}
.formWrap .ppAgree p {
  margin: 0;
  padding: 32px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  border: #BECCDE 1px solid;
  border-radius: 4px;
}
.formWrap .ppAgree p a {
  color: #1B74C1;
  text-decoration: underline;
}





/*
* 区切り
*/
.separateline {
  width: 100%;
  height: auto;
  padding: 80px 0;
  margin: 0;
}


/*
* sectionタイトル
*/
.sectionTitle {
  position: relative;
  margin: 0 0 40px 0;
  padding: 0 0 5px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  background-image: url(../img/line02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 2;
}


/*
* ボタン
*/
/* 通常ボタン */
.linkButtonNormal {
  position: relative;
  display: block;
  /* max-width: 280px; */
  margin: 0 auto;
  padding: 15px 50px 15px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 4px;
  overflow: hidden;
}
.linkButtonNormal span {
  position: relative;
  z-index: 1;
}
.linkButtonNormal::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
  width: 32px;
  height: 32px;
  background-image: url(../img/arrowCircleBlue02R.svg);
  background-size: cover;
  z-index: 1;
}
.linkButtonNormal:hover {
  background-color: #E4EDF8;
  opacity: 1;
}
.linkButtonNormal:hover::after {
  background-image: url(../img/arrowCircleBlue03R.svg);
}
/* アニメボタン */
.linkButtonArrow {
  position: relative;
  display: block;
  max-width: 280px;
  margin: 0 auto;
  padding: 10px 70px 10px 30px;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 9999px;
  overflow: hidden;
}
.linkButtonArrow.invert {
  padding: 10px 30px 10px 70px;
}
.linkButtonArrow span {
  position: relative;
  z-index: 1;
}
.linkButtonArrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
  transform-origin: 50% top;
  width: 40px;
  height: 40px;
  background-image: url(../img/linkButtonArrow01.svg);
  background-size: cover;
  z-index: 1;
  animation: arrowDeaction 1000ms;
  animation-fill-mode: forwards;
}
.linkButtonArrow.invert::after {
  left: 7px;
  right: auto;
  transform: translate(0, -50%) rotate(180deg);
}
/* ホバー時、背景を中心から変更 */
.linkButtonArrow:hover {
  position: relative;
  color: #1B74C1;
  opacity: 1;
}
.linkButtonArrow:hover::after {
  background-image: url(../img/linkButtonArrow02.svg);
  animation: arrowAction 1800ms cubic-bezier(.2,.9,.2,1);
  animation-fill-mode: forwards;
}
.linkButtonArrow.invert:hover::after {
  background-image: url(../img/linkButtonArrow02L.svg);
}
@keyframes arrowAction {
  0% {
    transform: scale(0.2) translate(0, -50%);
  }
  100% {
    transform: scale(1) translate(0, -50%);
  }
}
.linkButtonArrow:hover .center-fill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: #E4EDF8;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  animation: expandFill 1800ms cubic-bezier(.2,.9,.2,1);
  animation-fill-mode: forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes expandFill {
  0%   { transform: scale(0); }
  100%  { transform: scale(40); } /* 塗りつぶす */
}
/* ホバー解除時、背景を縮小 */
@keyframes arrowDeaction {
  0% {
    transform: scale(1) translate(0, -50%);
  }
  99% {
    transform: scale(0.2) translate(0, -50%);
  }
  100% {
    transform: scale(1) translate(0, -50%);
  }
}
.linkButtonArrow .center-fill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: #E4EDF8;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  animation: shrinkFill 1000ms;
  animation-fill-mode: forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes shrinkFill {
  0%   { transform: scale(40); }
  100%  { transform: scale(0); } /* 元に戻す */
}
/* LINEリンク */
.linkButtonLine {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
  padding: 10px 30px 10px 30px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  background-color: #54CB74;
  border-radius: 4px;
}
.linkButtonLine span::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../img/iconLine01.svg);
  background-size: cover;
  background-repeat: no-repeat;
}


/* 複数ボタン横並び */
.buttonWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.buttonWrap a {
  margin: 0;
}


/*
* 共通上部アーチ
*/
.commonUpperArch {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 120vw;
  height: 240px;
  background-color: #F5F9FF;
  border-radius: 50%;
  z-index: 1;
}
.commonUpperArch.white {
  background-color: #FFFFFF;
}


/*
* ページ上部アーチのみ
*/
#pageUpperArch {
  position: relative;
  z-index: 2;
}


/*
* 固定背景
*/
#fixedBack {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  backdrop-filter: blur(43%);
}  
/* 背景動画 */
#fixedBack .bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* iOS再生UI完全除去 */
#fixedBack .bgVideo::-webkit-media-controls,
#fixedBack .bgVideo::-webkit-media-controls-panel,
#fixedBack .bgVideo::-webkit-media-controls-play-button,
#fixedBack .bgVideo::-webkit-media-controls-start-playback-button {
  display: none !important;
}
/* 軌道周回アニメーション */
#animeOrbital {
  position: absolute;
  top: 65%;
  left: 78%;
  transform: scale(1) translate(-50%, -50%);
  z-index: 3;
}
#animeOrbital .orbit {
  width: 20vw;
  height: 20vw;
}
#animeOrbital #elipsePath {
  width: 100%;
}
/* 共通ページヘッダー背景用 */
#animeOrbital.commonVersion {
  top: 280px;
  left: calc(50% + 400px);
}
#animeOrbital.commonVersion .orbit {
  width: 390px;
  height: auto;
}
/* キャッチ */
#fixedBack .catch {
  display: none;
  position: absolute;
  top: 50%;
  left: calc(50% + 100px);
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}




/*
* 共通ページヘッダー
*/
#commonPageHeader {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 0;
  padding: 120px 0 220px 0;
  overflow: hidden;
}
#commonPageHeader .title {
  position: relative;
  display: flex;
  align-items:last baseline;
  gap: 110px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#commonPageHeader .title en {
  position: relative;
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#commonPageHeader .title en::before {
  content: '';
  position: absolute;
  top: calc(100% - 0.3em);
  left: -100px;
  transform: translate(0, -100%);
  display: inline-block;
  width: 80px;
  height: 1px;
  margin-right: 10px;
  background-color: #FFFFFF;
}
#commonPageHeader img.tower {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 40px;
  z-index: 10;
}


/*
* ブロック パンくずリスト
*/
#blockBreadcrumb {
  position: relative;
  width: 100vw;
  margin: 0;
  padding: 0 0 80px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
#blockBreadcrumb .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 10px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  background-image: url(../img/line03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
#blockBreadcrumb a {
  color: #1B74C1;
}
#blockBreadcrumb .aioseo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 5px;
}
#blockBreadcrumb .aioseo-breadcrumb-separator {
  color: #BECCDE;
}


/*
* ブロック 採用を知る
*/
#blockRecruit {
  position: relative;
  width: 100vw;
  margin: 0;
  padding: 0 0 120px 0;
  background-color: #FFFFFF;
}
/* タイトル */
#blockRecruit .topSectionTitle {
  display: flex;
  align-items: last baseline;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto 40px auto;
}
#blockRecruit .topSectionTitle img.titlePict {
  transform: translateY(0px);
}
#blockRecruit .topSectionTitle strong {
  display: block;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 400;
}
#blockRecruit .topSectionTitle strong span {
  color: #D8504C;
}
#blockRecruit p.comment {
  margin: 0 auto 40px auto;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
/* リンクリスト */
#blockRecruit .linkList {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
#blockRecruit .linkList li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#blockRecruit .linkList li a {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 20px 60px 20px;
  background-color: #FFFFFF;
  border: #E4EDF8 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#blockRecruit .linkList li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-image: url(../img/arrowCircleBlue02R.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#blockRecruit .linkList h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#blockRecruit .linkList h4 en {
  font-family: 'Red Hat Display', sans-serif;
  color: #D8504C;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#blockRecruit .linkList img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
}


/*
* ブロック 関連情報
*/
#blockRelatedContent {
  position: relative;
  width: 100vw;
  margin: 0;
  padding: 40px 0 120px 0;
  background-color: #F5F9FF;
  overflow: hidden;
}
#blockRelatedContent.white {
  background-color: #FFFFFF;
}
#blockRelatedContent .inner {
  position: relative;
  z-index: 1;
}
/* アーチ */
#blockRelatedContent::after {
  content: '';
  position: absolute;
  bottom: 450px;
  left: 80%;
  transform: translate(-50%, 100%);
  width: 500vw;
  height: 500vw;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 0;
}
/* タイトル */
#blockRelatedContent .customSectionTitle {
  display: flex;
  align-items: last baseline;
  gap: 20px;  
  width: 100%;
  margin: 0 auto 60px auto;
}
#blockRelatedContent .customSectionTitle img.titlePict {
  transform: translateY(0px);
}
#blockRelatedContent .customSectionTitle strong {
  display: block;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 400;
}
#blockRelatedContent .customSectionTitle strong span {
  color: #D8504C;
}
#blockRelatedContent .customSectionTitle .line {
  flex: 1;
  height: 24px;
  transform: translateY(20px);
  background-image: url(../img/line01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
/* バナー */
#blockRelatedContent ul.banner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 40px;
  margin: 0;
  padding: 0;
}
#blockRelatedContent ul.banner li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#blockRelatedContent ul.banner li a {
  position: relative;
  flex: 1;
  display: flex;
  height: 200px;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  border: #BECCDE 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#blockRelatedContent ul.banner img.pict {
  display: block;
  object-fit: contain;
  width: auto;
  height: 196px;
  object-position: -20px -10px;
}
#blockRelatedContent ul.banner h5 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px -30px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
#blockRelatedContent ul.banner h5 .dot {
  display: none;
}
#blockRelatedContent ul.banner h5::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background-image: url(../img/dot01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#blockRelatedContent ul.banner h5 en {
  font-family: 'Red Hat Display', sans-serif;
  color: #D8504C;
  font-size: 12px;
  font-weight: 700;
}
#blockRelatedContent ul.banner img.arrow {
  display: none;
}
#blockRelatedContent ul.banner li a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-image: url(../img/arrowCircleBlue02R.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ホバー */
#blockRelatedContent ul.banner li a:hover {
  background-color: #1B74C1;
  border: #1B74C1 1px solid;
  opacity: 1;
}
#blockRelatedContent ul.banner li a:hover img.pict {
  display: none;
}
#blockRelatedContent ul.banner li a:hover h5 {
  color: #FFFFFF;
}
#blockRelatedContent ul.banner li a:hover h5::before {
  background-image: url(../img/dotRed01.svg);
}
#blockRelatedContent ul.banner li a:hover h5 en {
  color: #FFFFFF;
}
#blockRelatedContent ul.banner li a:hover::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#blockRelatedContent ul.banner li a:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 30px);
  transform: translate(-50%, -50%);
  width: 120px;
  height: 112px;
  background-image: url(../img/partsRing02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width:1400px){
  #blockRelatedContent ul.banner li a {
    height: auto;
  }
  #blockRelatedContent ul.banner img.pict {
    max-width: 50%;
    height: auto;
  }
  #blockRelatedContent ul.banner li a::after {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}




/*
* ブロック 関連情報 採用
*/
#blockRelatedContentRecruit {
  position: relative;
  width: 100vw;
  margin: 0;
  padding: 40px 0 80px 0;
  background-color: #F5F9FF;
  overflow: hidden;
}
#blockRelatedContentRecruit .inner {
  position: relative;
  z-index: 1;
}
/* アーチ */
#blockRelatedContentRecruit::after {
  content: '';
  position: absolute;
  bottom: 300px;
  left: 80%;
  transform: translate(-50%, 100%);
  width: 500vw;
  height: 500vw;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 0;
}
/* タイトル */
#blockRelatedContentRecruit .customSectionTitle {
  display: flex;
  align-items: last baseline;
  gap: 20px;  
  width: 100%;
  margin: 0 auto 60px auto;
}
#blockRelatedContentRecruit .customSectionTitle img.titlePict {
  transform: translateY(0px);
}
#blockRelatedContentRecruit .customSectionTitle strong {
  display: block;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 400;
}
#blockRelatedContentRecruit .customSectionTitle strong span {
  color: #D8504C;
}
#blockRelatedContentRecruit .customSectionTitle .line {
  flex: 1;
  height: 24px;
  transform: translateY(20px);
  background-image: url(../img/line01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
/* バナー */
#blockRelatedContentRecruit ul.banner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 40px;
  margin: 0;
  padding: 0;
}
#blockRelatedContentRecruit ul.banner li {
  flex: 1;
  margin: 0;
  padding: 0;
}
#blockRelatedContentRecruit ul.banner li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 25px 40px 25px 60px;
  background-color: #FFFFFF;
  border: #BECCDE 1px solid;
  border-radius: 8px;
  overflow: hidden;
}
#blockRelatedContentRecruit ul.banner img.icon {
  display: block;
  width: 120px;
}
#blockRelatedContentRecruit ul.banner h5 {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
#blockRelatedContentRecruit ul.banner h5 en {
  font-family: 'Red Hat Display', sans-serif;
  color: #D8504C;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#blockRelatedContentRecruit ul.banner img.arrow {
  display: none;
}
#blockRelatedContentRecruit ul.banner li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background-image: url(../img/arrowCircleBlue02R.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ホバー */
#blockRelatedContentRecruit ul.banner li a:hover {
  background-color: #1B74C1;
  border: #1B74C1 1px solid;
  opacity: 1;
}
#blockRelatedContentRecruit ul.banner li a:hover img.pict {
  display: none;
}
#blockRelatedContentRecruit ul.banner li a:hover h5 {
  color: #FFFFFF;
}
#blockRelatedContentRecruit ul.banner li a:hover h5::before {
  background-image: url(../img/dotRed01.svg);
}
#blockRelatedContentRecruit ul.banner li a:hover h5 en {
  color: #FFFFFF;
}
#blockRelatedContentRecruit ul.banner li a:hover::after {
  background-image: url(../img/arrowCircleWhite01R.svg);
}
#blockRelatedContentRecruit ul.banner li a:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 30px);
  transform: translate(-50%, -50%);
  width: 120px;
  height: 112px;
  background-image: url(../img/partsRing02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/*
* ブロック インタビュー
*/
#blockInterview {
  position: relative;
  width: 100vw;
  margin: 0 0 -1px 0;
  padding: 0;
  background-color: #FFFFFF;
}
/* 上部アーチ */
#blockInterview .upperArch {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 400px;
  background-color: #F5F9FF;
  overflow: hidden;
}
#blockInterview .upperArch::after {
  content: '';
  position: absolute;
  bottom: 300px;
  left: 80%;
  transform: translate(-50%, 100%);
  width: 500vw;
  height: 500vw;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 5;
}
/* コンテンツ */
#blockInterview .contentWrap {
  position: relative;
  margin-top: -200px;
}
/* タイトル */
#blockInterview .topSectionTitle {
  display: flex;
  align-items: last baseline;
  gap: 20px;  
  width: 100%;
  margin: 0 auto 60px auto;
  color: #1B74C1;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
}
#blockInterview .topSectionTitle img.titlePict {
  transform: translateY(10px);
}
#blockInterview .topSectionTitle strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
#blockInterview .topSectionTitle strong span {
  color: #D8504C;
}
#blockInterview .topSectionTitle .line {
  flex: 1;
  height: 24px;
  transform: translateY(40px);
  background-image: url(../img/line01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
/* インタビュースライダー */
#blockInterview .swiper {
  position: relative;
  width: calc(50% + 720px);
  margin: 0 0 30px calc(50% - 720px);
  padding: 0;
}
#blockInterview .swiper .interviewList {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  transition-timing-function: linear;
}
#blockInterview .swiper .interviewList li {
  width: 464px;
  margin: 0;
  padding: 0;
}
#blockInterview .swiper .interviewList li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 20px 30px 20px;
  background-color: #E4EDF8;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.5s;
}
#blockInterview .swiper .interviewList li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-image: url(../img/arrowCircleWhite01R.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#blockInterview .swiper .interviewList li a:hover{
  opacity: 1;
}
#blockInterview .swiper .interviewList li a:hover::after {
  background-image: url(../img/arrowCircleBlue03R.svg);
}
#blockInterview .swiper .interviewList li .pict {
  position: relative;
  aspect-ratio: 416/430;
  width: 100%;
  overflow: hidden;
}
#blockInterview .swiper .interviewList li .pict img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
#blockInterview .swiper .interviewList li a:hover .pict img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
#blockInterview .swiper .interviewList li .pict p.position {
  position: absolute;
  bottom: -1px;
  left: -1px;
  margin: 0;
  padding: 5px 15px 5px 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #E4EDF8;
  border-radius: 0 4px 0 0;
}
#blockInterview .swiper .interviewList li img.dot {
  display: block;
  width: 30px;
  height: 5px;
  margin: 20px auto;
}
#blockInterview .swiper .interviewList li .comment {
  width: calc(100% - 60px);
  margin: 0 60px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
/* コントローラー */
#blockInterview .controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
  z-index: 10;
}
#blockInterview .controls .swiperPagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 60px;
    margin: 0 40px 0 0;
  }
#blockInterview .controls .swiperPrev,
#blockInterview .controls .swiperNext {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#blockInterview .controls .swiperPrev {
  background-image: url(../img/arrowCircleBlue02L.svg);
}
#blockInterview .controls .swiperNext {
  background-image: url(../img/arrowCircleBlue02R.svg);
}
#blockInterview .controls .swiperScrollbar {
  flex: 1;
  height: 8px;
  background-color: #E4EDF8;
}
#blockInterview .controls .swiper-scrollbar-drag {
  background-color: #1B74C1;
}
#blockInterview .controls .linkButtonArrow {
  width: 280px;
  max-width: 20%;
  padding-left: 40px;
}


/*
* ブロック 世界へ
*/
#toWorld {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 0;
  padding: 160px 0 200px 0;
  overflow: hidden;
  z-index: 10;
}
#toWorld .customSectionTitle {
  position: relative;
  display: flex;
  align-items:last baseline;
  gap: 210px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#toWorld .customSectionTitle en {
  position: relative;
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#toWorld .customSectionTitle en::before {
  content: '';
  position: absolute;
  top: calc(100% - 0.3em);
  right: -200px;
  transform: translate(0, -100%);
  display: inline-block;
  width: 170px;
  height: 1px;
  margin-right: 10px;
  background-color: #FFFFFF;
}
#toWorld .customSectionTitle strong {
  letter-spacing: 0.2em;
}
#toWorld a.scrollTop {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 120px;
  height: 100px;
}
#toWorld a.scrollTop img {
  display: block;
  width: 100%;
}
#toWorld .upperArch {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 120vw;
  height: 240px;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 5;
}
#toWorld .lowerArch {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 120vw;
  height: 240px;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 5;
}


/*
* フルページロール
*/
.sticky {
  position: -webkit-sticky; /* 古いiOS対策 */
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: visible; /* 子要素の overflow に注意 */
}
.mySwiper, .swiper-wrapper, .swiper-slide {
  width: 100%;
  height: 100%;
}


/*
* リンクホバー
*/
.linkHover:hover {
  opacity: 1;
  background-color: #E4EDF8 !important;
  transition: background-color 0.3s ease;
}
.linkHover:hover::after {
  background-image: url(../img/arrowCircleBlue03R.svg) !important;
}





/*
* スマホ用 
*/


@media screen and (max-width:992px){

  /*
  * タグ再設定
  */
  body, html {
    font-size: 14px;
  }

  img {
    max-width: 100%;
  }


  /*
  * レイアウト
  */
  .pc { display: none !important; }
  .sp { display: block; }
  .primaryWrap {
    padding: 60px 0 0 0;
    z-index: -1;
  }
  .columnWrap {
    gap: 40px;
    padding: 0 0 40px 0;
  }
  .secondaryWrap {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .columnWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
  }


  /*
  * ヘッダー
  */
  /* ロゴ */
  #headerLogo {
    width: 50vw;
    height: auto;
  }
  #headerLogo a {
    padding: 4vw;
    border-radius: 0 0 2vw 0;
  }
  #headerLogo img {
    width: 100%;
  }
  /* ヘッダー全体 */
  #siteHeader {
    gap: 0 40px;
    width: 100vw;
    height: 18vw;
  }
  /* ボタン */
  #siteHeader ul.button {
    margin: 0;
    padding: 0 10px 0 0;
  }
  #siteHeader ul.button li.toggle {
    display: flex;
    align-items: center;
    height: 18vw;
  }


  /*
  * エントリー追従ボタン
  */
  #followEntryButton {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 80000;
    overflow: hidden;
  }
  #followEntryButton a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-family: 'Red Hat Display', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    background-color: #D8504C;
    border-radius: 8px 8px 0 0;
  }


  /*
  * 開閉メニュー
  */
  #drawerMenu.open {
    transform: none;
  }
  /* 閉じるボタン */
  #drawerMenu .button {
    justify-content: flex-end;
    margin: 0;
    padding: 10px 10px 40px 10px;
  }
  /* 上部アーチ */
  #drawerMenu .upperArch {
    position: relative;
    width: 100vw;
    height: 50px;
    overflow: hidden;
  }
  #drawerMenu .upperArch::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 120vw;
    height: 100px;
    background-color: #F5F9FF;
    border-radius: 50%;
    z-index: 5;
  }
  /* プロフィール */
  #drawerMenu .profile {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
  }
  #drawerMenu .profile .info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  #drawerMenu .profile .info .logo {
    width: 100%;
  }
  /* 採用リンク */
  #drawerMenu .linkEntry {
    flex: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  /* 区切り線 */
  #drawerMenu hr {
    margin: 60px auto;
  }
  /* サイトマップ */
  #drawerMenu .sitemap {
    margin: 0 auto;
    padding: 0;
  }
  #drawerMenu .sitemap .row {
    flex-direction: column;
    gap: 30px;
  }
  #drawerMenu .sitemap ul.col {
    width: 100%;
    gap: 10px;
    margin: 0;
    padding: 0;
  }


  /*
  * エントリーメニュー
  */
  #entryMenu {
    padding-top: 20vw;
  }
  /* 閉じるボタンPC */
  #entryMenu .button.pc {
    display: none;
  }
  /* 上部アーチ */
  #entryMenu .upperArch {
    height: 80px;
  }
  #entryMenu .upperArch::after {
    bottom: 80px;
    width: 150vw;
    height: 160px;
  }
  /* コンテンツ */
  #entryMenu .inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    margin: 0 auto;
    padding: 0;
  }
  /* タイトル */
  #entryMenu .title {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }
  #entryMenu .title img.titlePict {
    transform: translateY(0px);
  }
  #entryMenu .title strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
  /* 採用リンク */
  #entryMenu .linkEntry {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  #entryMenu .linkEntry li {
    flex: 1;
    margin: 0;
    padding: 0;
  }
  #entryMenu .linkEntry li a {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px 20px 60px 20px;
    background-color: #FFFFFF;
    border: #E4EDF8 1px solid;
    border-radius: 8px;
    overflow: hidden;
  }
  #entryMenu .linkEntry li a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #entryMenu .linkEntry li a.newGraduate::after {
    background-image: url(../img/arrowCircleRed03R.svg);
  }
  #entryMenu .linkEntry li a.midCareer::after {
    background-image: url(../img/arrowCircleBlue03R.svg);
  }
  #entryMenu .linkEntry img.dot {
    display: block;
    width: 24px;
    margin: 0;
  }
  #entryMenu .linkEntry h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
  }
  #entryMenu .linkEntry h4 en {
    font-family: 'Red Hat Display', sans-serif;
    color: #D8504C;
    font-size: 12px;
    font-weight: 700;
  }
  /* 閉じるボタンSP */
  #entryMenu .button.sp {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 30px 20px;
  }
  

  /*
  * フッター
  */
  #siteFooter {
    position: relative;
    margin: 0;
    padding: 40px 0 0 0;
    background-color: #FFFFFF;
  }
  /* プロフィール */
  #siteFooter .profile {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
  }
  #siteFooter .profile .info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  #siteFooter .profile .info .logo {
    width: 100%;
  }
  /* 採用リンク */
  #siteFooter .linkEntry {
    flex: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  /* 区切り線 */
  #siteFooter hr {
    margin: 30px auto;
  }
  /* サイトマップ */
  #siteFooter .sitemap {
    margin: 0 auto;
    padding: 0 0 60px 0;
  }
  #siteFooter .sitemap .row {
    flex-direction: column;
    gap: 30px;
  }
  #siteFooter .sitemap ul.col {
    width: 100%;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  /* copyright */
  #siteFooter .copyright {
    margin: 0;
    padding: 20px 20px 80px 20px;
  }
  #siteFooter .copyright .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  




  



  /*
  * サイドバー
  */
  #sidebar{
    order: 2;
    width: 100%;
    margin: 0;
    padding: 0;
  }


  



  /*
  * ページャー
  */
  .pagination {
    margin: 0;
    padding: 0;
  }
  .pagination .nav-links {
    gap: 5px;
  }
  /* ARROW */
  .pagination .arrow {
    gap: 5px;
    font-size: 15px;
  }
  .pagination .arrow img.icon {
    width: 32px;
  }
  /* ページ */
  .pagination .pageNumbers {
    gap: 50px;
    padding: 0 5px;
  }
  .pagination .pageNumbers .num {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }


  /*
  * 投稿リスト
  */
  .postList {
    margin: 0 0 60px 0;
    padding: 0;
  }
  .postList ul {
    gap: 20px;
  }
  .postList li {
    margin: -1px 0 0 0;
  }
  .postList li a {
    position: relative;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    padding: 10px 50px 10px 0;
  }
  .postList li a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    width: 32px;
    height: 32px;
  }
  .postList .date {
    font-size: 15px;
  }
  .postList .cat {
    padding: 2px 12px;
    font-size: 12px;
  }
  .postList h4 {
    flex: none;
    width: 100%;
    font-size: 15px;
  }


  /*
  * 区切り
  */
  .separateline {
    width: 100%;
    height: auto;
    padding: 60px 0;
    margin: 0;
  }


  /*
  * 固定背景
  */
  #fixedBack {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }  
  /* 背景動画 */
  /* 軌道周回アニメーション */
  #animeOrbital {
    top: auto;
    left: 50vw;
    bottom: 10vh;
    transform: translate(0, 0);
  }
  #animeOrbital .orbit {
    width: 80vw;
    height: 80vw;
  }
  #animeOrbital #elipsePath {
    width: 100%;
  }
  /* 共通ページヘッダー背景用 */
  #animeOrbital.commonVersion {
    top: 200px;
    bottom: auto;
    left: 60vw;
  }
  #animeOrbital.commonVersion .orbit {
    width: 50vw;
    height: auto;
  }


  /*
  * sectionタイトル
  */
  .sectionTitle {
    margin: 0 0 20px 0;
    padding: 0 0 5px 0;
    font-size: 18px;
  }


  /*
  * 共通上部アーチ
  */
  .commonUpperArch {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 120vw;
    height: 100px;
    background-color: #F5F9FF;
    border-radius: 50%;
    z-index: 1;
  }


  /*
  * 共通ページヘッダー
  */
  #commonPageHeader {
    justify-content: flex-start;
    padding: 100px 20px 180px 20px;
  }
  #commonPageHeader .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 auto;
    font-size: 24px;
  }
  #commonPageHeader .title en {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    transform: translateX(60px);
  }
  #commonPageHeader .title en::before {
    content: '';
    position: absolute;
    top: calc(100% - 0.3em);
    left: -60px;
    transform: translate(0, -100%);
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-right: 10px;
    background-color: #FFFFFF;
  }
  #commonPageHeader img.tower {
    bottom: 50px;
    transform: translate(-50%, 0);
    width: 40px;
  }



  /*
  * ブロック 採用を知る
  */
  #blockRecruit {
    width: 100vw;
    margin: 0;
    padding: 0 0 60px 0;
  }
  /* タイトル */
  #blockRecruit .topSectionTitle {
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0 20px 40px 20px;
  }
  #blockRecruit .topSectionTitle img.titlePict {
    width: 45vw;
    transform: translateY(0px);
  }
  #blockRecruit .topSectionTitle strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
  #blockRecruit p.comment {
    margin: 0 auto 40px auto;
    text-align: justify;
  }
  /* リンクリスト */
  #blockRecruit .linkList {
    flex-direction: column;
    gap: 20px;
  }
  #blockRecruit .linkList li a {
    padding: 10px 20px 20px 20px;
  }
  #blockRecruit .linkList li a::after {
    width: 40px;
    height: 40px;
  }
  #blockRecruit .linkList h4 {
    margin: 0;
  }
  #blockRecruit .linkList img {
    width: 20vw;
    height: 20vw;
    margin: 0 auto;
  }


  /*
  * ブロック 関連情報
  */
  #blockRelatedContent {
    width: 100vw;
    margin: 0;
    padding: 40px 0 80px 0;
  }
  /* アーチ */
  #blockRelatedContent::after {
    content: '';
    position: absolute;
    bottom: 400px;
    left: 80%;
    transform: translate(-50%, 100%);
    width: 500vw;
    height: 500vw;
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 0;
  }
  /* タイトル */
  #blockRelatedContent .customSectionTitle {
    flex-direction: column;
    align-items: center;
    gap: 20px;  
    width: 100%;
    margin: 0 auto 40px auto;
  }
  #blockRelatedContent .customSectionTitle img.titlePict {
    transform: translateY(0px);
  }
  #blockRelatedContent .customSectionTitle strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
  #blockRelatedContent .customSectionTitle .line {
    display: none;
  }
  /* バナー */
  #blockRelatedContent ul.banner {
    flex-direction: column;
    gap: 20px;
  }
  #blockRelatedContent ul.banner li a {
    height: 160px;
  }
  #blockRelatedContent ul.banner img.pict {
    display: block;
    object-fit: contain;
    width: auto;
    max-width: 100%;
    height: 156px;
    object-position: -20px -10px;
  }
  #blockRelatedContent ul.banner h5 {
    margin: 0 0 20px 0;
    font-size: 15px;
  }
  #blockRelatedContent ul.banner h5 .dot {
    width: 25px;
  }
  #blockRelatedContent ul.banner h5 en {
    font-size: 12px;
  }
  #blockRelatedContent ul.banner li a::after {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }


  /*
  * ブロック 関連情報 採用
  */
  #blockRelatedContentRecruit {
    width: 100vw;
    margin: 0;
    padding: 40px 0 80px 0;
  }
  /* アーチ */
  #blockRelatedContentRecruit::after {
    content: '';
    position: absolute;
    bottom: 400px;
    left: 80%;
    transform: translate(-50%, 100%);
    width: 500vw;
    height: 500vw;
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 0;
  }
  /* タイトル */
  #blockRelatedContentRecruit .customSectionTitle {
    flex-direction: column;
    align-items: center;
    gap: 20px;  
    width: 100%;
    margin: 0 auto 40px auto;
  }
  #blockRelatedContentRecruit .customSectionTitle img.titlePict {
    transform: translateY(0px);
  }
  #blockRelatedContentRecruit .customSectionTitle strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
  #blockRelatedContentRecruit .customSectionTitle .line {
    display: none;
  }
  /* バナー */
  #blockRelatedContentRecruit ul.banner {
    flex-direction: column;
    gap: 20px;
  }
  #blockRelatedContentRecruit ul.banner li a {
    gap: 20px;
    padding: 20px 20px 20px 30px;
  }
  #blockRelatedContentRecruit ul.banner img.icon {
    width: 60px;
  }
  #blockRelatedContentRecruit ul.banner h5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
  }
  #blockRelatedContentRecruit ul.banner h5 en {
    font-size: 12px;
  }
  #blockRelatedContentRecruit ul.banner img.arrow {
    width: 32px;
  }


  /*
  * ブロック インタビュー
  */
  #blockInterview {
    position: relative;
    width: 100vw;
    margin: 0 0 -1px 0;
    padding: 0;
  }
  /* タイトル */
  #blockInterview .topSectionTitle {
    gap: 20px;  
    width: 100%;
    margin: 0;
    padding: 0 20px 30px 20px;
    font-size: 32px;
  }
  #blockInterview .topSectionTitle img.titlePict {
    max-width: 55vw; 
    transform: translateY(0vw);
  }
  #blockInterview .topSectionTitle strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
  }
  #blockInterview .topSectionTitle .line {
    display: none;
  }
  /* インタビュースライダー */
  #blockInterview .swiper {
    width: 100vw;
    margin: 0 0 30px 0;
  }
  /* コントローラー */
  #blockInterview .controls {
    flex-direction: column;
    gap: 20px;
    height: auto;
    z-index: 10;
  }
  #blockInterview .controls .swiperPrev,
  #blockInterview .controls .swiperNext {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #blockInterview .controls .swiperScrollbar {
    flex: none;
    width: 100%;
  }
  #blockInterview .controls a.linkButtonArrow {
  width: 280px;
  max-width: 100%;
  padding-right: 0;
}


  /*
  * ブロック 世界へ
  */
  #toWorld {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100vw;
    margin: 0 0 -1px 0;
    padding: 120px 0;
    overflow: hidden;
    z-index: 10;
  }
  #toWorld .customSectionTitle {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }
  #toWorld .customSectionTitle en {
    position: relative;
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
  }
  #toWorld .customSectionTitle en::before {
    content: '';
    position: absolute;
    top: calc(100% - 0.3em);
    right: -200px;
    transform: translate(0, -100%);
    display: inline-block;
    width: 170px;
    height: 1px;
    margin-right: 10px;
    background-color: #FFFFFF;
  }
  #toWorld .customSectionTitle strong {
    position: relative;
    transform: translateX(5em);
  }
  #toWorld .customSectionTitle strong::before {
    content: '';
    position: absolute;
    top: calc(100% - 0.3em);
    left: -10px;
    transform: translate(-100%, -100%);
    display: inline-block;
    width: 100vw;
    height: 1px;
    margin-right: 10px;
    background-color: #FFFFFF;
  }
  #toWorld a.scrollTop {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 120px;
    height: 100px;
  }
  #toWorld a.scrollTop img {
    display: block;
    width: 100%;
  }
  #toWorld .upperArch {
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 120vw;
    height: 80px;
  }
  #toWorld .lowerArch {
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 120vw;
    height: 80px;
  }


  /*
  * フルページロール
  */
  .sticky {
    position: relative;
    top: 0;
    height: auto !important;
    width: auto !important;
  }
  .myPhilosophySwiper,
  .myPhilosophySwiper .swiper-wrapper,
  .myPhilosophySwiper .swiper-slide {
    display: block !important;
    width: auto !important;
    height: auto !important;
  }
  
  








}
