:root {
  --colorWSBlue: #0079C1;
  --colorSGHBlue: #3B499F;
  --colorWht: #ffffff;
  --colorBlk: #333333;
  --colorGry: #939393;
  --colorBaseGry: #F8F8F8;
  --colorBaseBlu: #DFEFF8;
  --colorBaseWht: var(--colorWht);
  --colorPrimary: var(--colorWSBlue);
  --colorSecondary: var(--colorSGHBlue);
  --fontInter: "Inter", sans-serif;
  --roundSQ: 0.8rem;
  --roundR: 4.8rem;
  --pcPaddingBaseSet: 3.2rem;
  --pcPaddingMainWrapSet: 11.8rem 3.2rem 3.2rem 3.2rem;
  --spPaddingMainWrapSet: 8.8rem 0.8rem 0.8rem 0.8rem;
  --linkBtnFontSizeS: 1.3rem;
  --linkBtnFontSizeM: clamp(1.3rem, 1.35vw, 1.35rem);
  --linkBtnFontSizeL: clamp(1.4rem, 1.6vw, 1.6rem);
  --h1FontSize: clamp(2.8rem, 2.5vw, 3.8rem);
  --sectionTitleSizeL: clamp(2rem, 2.8vw, 2.6rem);
  --sectionTitleSizeML: clamp(1.8rem, 2.1vw, 2.1rem);
  --sectionTitleSizeM: clamp(1.6rem, 1.8vw, 1.8rem);
  --sectionShoulderSize: clamp(1rem, 1.35vw, 1.35rem);
  --ledeFontSize: clamp(1.425rem, 1.625vw, 1.625rem);
  --bodyTxtSize: clamp(1.425rem, 1.625vw, 1.625rem);
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}

.nowrap {
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  -o-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.reverse {
  -webkit-flex-flow: row-reverse wrap;
  -moz-flex-flow: row-reverse wrap;
  -ms-flex-flow: row-reverse wrap;
  -o-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
}

.column {
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  -o-flex-flow: column;
  flex-flow: column;
}

.flex-align-start {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  -o-align-items: baseline;
  align-items: baseline;
}

.flex-align-stretch {
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}

.flex-between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.flex-evenly {
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  -o-justify-content: space-evenly;
  justify-content: space-evenly;
}

.flex-justify-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.flex-justify-start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}

/*common-contents*/

html,
body {
  font-size: 62.5%;
  min-height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  color: var(--colorBlk);
}

img {
  width: 100%;
  height: auto;
  will-change: transform;
}

img.inview,svg.inview{
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  opacity: 0;
  will-change: transform;
}
img.lazyloaded,img.inview.loaded,svg.inview.loaded{
  opacity: 1;
}
.swp-img{
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;  
}

figure,
picture {
  position: relative;
  border-radius: var(--roundSQ);
  overflow: hidden;
  display: block;
}

figure.nor,
picture.nor {
  border-radius: 0;
}

figcaption.link,picture div.link{
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
}

.inter {
  font-family: var(--fontInter);
}

.center {
  text-align: center;
}

.linkBtn {
  /*padding: 1.6rem 4rem 1.6rem 2.4rem;*/
  padding: 1.4rem 3.4rem 1.4rem 1.8rem;
  line-height: 1;
  border-radius: var(--roundR);
  color: var(--colorPrimary);
  font-size: var(--linkBtnFontSizeS);
  transition: all 0.4s;
  width: max-content;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-indent: 0.45em;
}

.linkBtn.circle {
  padding: 2.4rem;
}

.linkBtn .material-symbols-rounded {
  font-size: 1.8rem;
  position: absolute;
  right: 1.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  height: max-content;
  width: max-content;
  text-indent: 0;
  transition: all 0.2s;
}

.linkBtn.circle .material-symbols-rounded {
  right: 0;
  left: 0;
}

.linkBtn.w {
  background: var(--colorWht);
}

.linkBtn.b {
  background: var(--colorSecondary);
  color: var(--colorWht);
}

.linkBtn.border {
  border: 1px solid;
}

a.linkBtn {
  margin-top: 6.4rem;
}

.linkBtn span.s {
  font-size: 1rem;
  line-height: 1.25;
}

.linkBtn .add,
.linkBtn .add::before {
  width: 1rem;
  height: 1px;
  background: var(--colorPrimary);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.25s;
}

.linkBtn .add::before {
  content: '';
  height: 1rem;
  width: 1px;
}

.on .linkBtn {
  background: var(--colorPrimary);
}

.on .linkBtn .add {
  background: white;
  ;
}

.on .linkBtn .add::before {
  height: 0;
  background: white;
  ;
}

.coverWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  z-index: 1;
  transition: all 0.4s;
  will-change: transform;
}
a.coverWrapTxt:hover .coverWrap, .coverWrap:hover {
  background: rgb(51 51 51 / 50%);
  mix-blend-mode: multiply;
}
a.coverWrapTxt:hover h6{
  opacity: 0.5;
}
figcaption.link.hvr, picture div.link.hvr{
  z-index: 2;
  pointer-events: none;
}

.hvr .linkBtn.w {
  background: var(--colorPrimary);
  color: var(--colorWht);
  pointer-events: none;
}

a.linkBtn.w:hover {
  background: var(--colorPrimary);
  color: var(--colorWht);
}

a.linkBtn.b:hover {
  background: var(--colorGry);
}

.hvr .linkBtn .material-symbols-rounded,
a.linkBtn.w:hover .material-symbols-rounded {
  right: 0.8rem;
}

.hvr .linkBtn.circle .material-symbols-rounded {
  right: -0.4rem;
}

figure:has(a):hover img, picture:has(a):hover img, a.coverWrapTxt:hover img{
  transform: scale(1.1);
}

.header-kv figure:hover img {
  transform: none;
}

.wrapper {
  padding: var(--pcPaddingMainWrapSet);
  overflow: hidden;
}

article.base {
  margin-bottom: 9.6rem;
}

article.base:last-of-type {
  margin-bottom: 0;
}

article.noMrgB {
  margin-bottom: 0;
}

article.banner picture,
article.banner figure {
  aspect-ratio: 16 / 4.8;
  position: relative;
}

article.banner picture::before {
  content: '';
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  background: var(--colorSecondary);
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 0;
}
article#future.banner picture::before{
z-index: 1;
}

article.banner img {
  height: 100%;
  object-fit: cover;
}

article.banner .lede {
  position: absolute;
  text-align: center;
  color: var(--colorWht);
}
article#future.banner .lede{
z-index: 1;
}

article.banner .lede h5 {
  font-size: var(--sectionTitleSizeL);
  margin-bottom: 1em;
}

article.banner .lede .txt {
  font-size: var(--ledeFontSize);
  line-height: 1.75;
  max-width: 48rem;
  text-align: left;
}

main {
  display: block;
}

main.open::before {
  content: "";
}

.inner {
  width: min(111.2rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  padding-bottom: 6.4rem;
}

.under .inner {
  width: min(98rem, 100%);
}

.contens.flex.col3:after {
  content: "";
  display: block;
  width: calc((100% / 3) - 1.6rem);
  height: 0;
}

/*header-nav*/

header {
  padding: 1.6rem 1.6rem 0 1.6rem;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
header.hide{
  top: -10rem;
}

nav#global-menu {
  background-color: var(--colorPrimary);
  padding: 0 2.4rem;
  height: 7rem;
  border-radius: var(--roundSQ);
  width: calc(100% - (14.5rem / 2));
  position: relative;
  filter: drop-shadow(0px 2px 2px gray);
  transition: 1s 0.25s;
}

nav#global-menu.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: 0s 0s;
}

header .linkBtn {
  background-color: var(--colorSecondary);
  color: var(--colorWht);
  font-size: var(--linkBtnFontSizeL);
  font-weight: 600;
  position: absolute;
  padding: 1.8rem 4.8rem 1.8rem 4.8rem;
  right: 1.6rem;
  top: 1.6rem;
  bottom: 0;
  margin: auto;
  height: max-content;
}

header .linkBtn.sp{
  display: none;
}

#ci,
#mega-menu,
#mega-menu .menu-list {
  height: 100%;
}
#ci a{
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
#ci a:hover{
  opacity: 0.5;
}

#ci img {
  width: 20rem;
  height: auto;
}

#ci span {
  font-size: 1.6rem;
  margin-left: 1.6rem;
  color: var(--colorWht);
}

#mega-menu {
  margin-left: auto;
  margin-right: 10rem;
}

#mega-menu .menu-list {
  padding: 0 1.6rem;
  font-size: var(--linkBtnFontSizeL);
  color: var(--colorWht);
}

.menu-contents {
  background: var(--colorPrimary);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 3.2rem;
  border-radius: 0 0 0.8rem 0.8rem;
}

.menu-contents .container {}

.menu-contents .sub-menu {
  margin: auto;
  gap: 1.6rem;
}

.menu-contents .sub-menu.col2 {}

.menu-contents .sub-menu.col4 {}

.menu-contents .sub-menu .sub-title {
  width: 23.4rem;
}
.menu-contents .sub-menu .sub-title a:hover .lists{
  opacity: 0.5;
}

.sub-title .lists {
  font-size: 1.3rem;
  margin-top: 1em;
}

.sub-title .lists .linkBtn.circle {
  position: static;
  margin-right: 0;
  background: none;
  padding: 0.25rem;
}

.sub-title .lists .linkBtn.circle span {
  position: static;
  font-size: 1rem;
}

#mega-menu .menu-list .menu-title {
  cursor: pointer;
}

#mega-menu .menu-list .menu-title a.list {
  position: relative;
  margin-right: 0;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

#mega-menu .menu-list .menu-title a.list:hover{
  opacity: 0.5;
}

#mega-menu .menu-list .menu-title a.list::after {
  content: '';
  width: 0;
  height: 0.1rem;
  background: var(--colorWht);
  display: block;
  margin: auto;
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: .3s;
}

#mega-menu .menu-list.open .menu-title a.list::after{
  opacity: 1;
  width: 100%;
}

#introduction #mega-menu #menu-intro.menu-list .menu-title a.list::after,
#work-enviroment  #mega-menu #menu-work.menu-list .menu-title a.list::after,
#jobs-people  #mega-menu #menu-job.menu-list .menu-title a.list::after,
#training-welfare  #mega-menu #menu-welfare.menu-list .menu-title a.list::after,
#information  #mega-menu #menu-info.menu-list .menu-title a.list::after,
#recruitment  #mega-menu #menu-recruitment.menu-list .menu-title a.list::after{
  opacity: 1;
  width: 100%;
}

#breadcrumb {
  margin-top: 1.6rem;
}

#breadcrumb .inner {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

#breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
}

#breadcrumb li a.current {
  color: var(--colorPrimary);
}

#breadcrumb li:nth-child(2) {}

#breadcrumb li:nth-child(2)::before,
#breadcrumb li:nth-child(3)::before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  border-bottom: 1px solid;
  vertical-align: middle;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

footer {
  padding: 1.6rem 3.2rem 0 3.2rem;
}

#recruit-info {
  position: relative;
}

#recruit-info .head {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 10 / 1.5;
  border-radius: var(--roundSQ) var(--roundSQ) 0 0;
}

#recruit-info .head img {
  height: 100%;
  object-fit: cover;
}

#recruit-info .titles {
  position: relative;
  z-index: 1;
}

#recruit-info .link-box {
  background: var(--colorWht);
  position: relative;
  z-index: 1;
  padding: 4.8rem 6.4rem;
  border-radius: var(--roundSQ);
  margin-top: 9vw;
}

#recruit-info .link-box p {
  font-size: var(--ledeFontSize);
  line-height: 1.75;
}

#recruit-info .link-box .btn-box {
  margin: 3.2rem 0;
}

#recruit-info .link-box .linkBtn {
  width: 100%;
  padding: 2.4rem 4rem 2.4rem 2.4rem;
  margin-top: 0;
  font-size: var(--linkBtnFontSizeL);
}

#recruit-info .link-box .btn-box .linkBtn {
  width: calc(50% - 3.2rem);
  margin: 0;
}

#footer-menu {
  margin-top: 9.6rem;
}

#footer-menu ul {
  color: var(--colorWht);
  font-size: var(--linkBtnFontSizeS);
  line-height: 2.5;
}

#footer-menu ul li.title {
  font-size: var(--linkBtnFontSizeL);
  position: relative;
}
#footer-menu .sp-menu-box{
  display: none;
}
#footer-menu ul li.sub-menu a:hover,
#footer-menu ul li.title a:hover{
  opacity: 0.5;
}
#copyrights {
  width: 100%;
  color: var(--colorWht);
  margin-top: 6.4rem;
}

#copyrights .ci-jp {
  width: 17.5rem;
}

#copyrights a {
  margin-left: 2em;
  font-size: 1.1rem;
}

#copyrights a span {
  font-size: 1rem;
}

#copyrights p {
  font-size: 1.2rem;
}

#end {
  padding: 3.2rem;
  position: relative;
  background: var(--colorWht);
}

#end a.scrl {
  position: absolute;
  right: 2.4rem;
  bottom: 3.8rem;
  margin: 0;
  padding: 3.7rem;
  border: 1px solid;
  opacity: 1;
  pointer-events: all;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;  
}

#end a.scrl.hide{
  opacity: 0;
  pointer-events: none;
}

#end a.scrl:hover .material-symbols-rounded {
  right: 0;
}

/*contents*/
.base {
  border-radius: var(--roundSQ);
}

.base {
  background: var(--colorBaseGry);
}

.base.blu {
  background: var(--colorBaseBlu);
}

.base.pblu {
  background: var(--colorPrimary);
}

.titles {
  margin-bottom: 4.8rem;
}

.titles.noMrgB {
  margin-bottom: 0;
}

.section-title {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  position: relative;
}

.section-title.blu {
  color: var(--colorSecondary);
}

.section-title.blu.ws{
  color: var(--colorPrimary);
}

.section-title.lg {
  font-size: var(--sectionTitleSizeL);
  top: -1.3rem;
}

.under .section-title.blu {
  color: var(--colorPrimary);
}

.under .section-title.blu.SGHBlue {
  color: var(--colorSecondary);
}

.section-title .shoulder,
.header-kv .shoulder,
.page-category .shoulder {
  font-size: var(--sectionShoulderSize);
  margin-right: 2.4rem;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.section-lede {
  margin-top: 1.75em;
  font-size: var(--ledeFontSize);
  line-height: 1.75;
  text-align: justify;
}

.section-lede.sub {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.section-subtitle {
  font-size: var(--sectionTitleSizeM);
  color: var(--colorPrimary);
}

#people .contents.top .titles {
  margin-bottom: 0;
}

#people .contents.top .titles {
  width: min(36%, 100%);
  padding-right: 3.2rem;
  margin-bottom: 0;
}

#people .contents.top figure {
  width: min(64%, 100%);
  top: -4rem;
}

.titles.sub .section-lede {
  margin-top: 1.4rem;
}

.contents.interview .flex .section-lede {
  width: calc(100% - 18rem);
}

.col3 .box {
  width: calc((100% / 3) - 1.6rem);
  height: max-content;
}

.col2 .box {
  width: calc((100% / 2) - 1.2rem);
  height: max-content;
}

.col2 {
  gap: 2.4rem;
}

/*
.col2 .box:nth-child(3),
.col2 .box:nth-child(4),
.col2 .box:nth-child(5),
.col2 .box:nth-child(6){
  margin-top: 2.4rem;
}
*/
.col3 .box figure,
.col3 .box picture,
.col2 .box figure,
.col2 .box picture {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.col2 .box figure,
.col2 .box picture {
  aspect-ratio: 3 / 2;
}

.col3 .box figure img,
.col3 .box picture img,
.col2 .box figure img,
.col2 .box picture img {
  height: 100%;
  object-fit: cover;
}

.cap {
  font-size: var(--linkBtnFontSizeS);
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
}

.tags {
  color: var(--colorPrimary);
}

.tag {
  border-radius: var(--roundSQ);
  border: 1px solid;
  padding: 0.6rem 2rem;
  margin-right: 1.6rem;
  font-size: 1.1rem;
}

.box .personal-info.tags .tag:has(.none){
  display: none;
}

.tag.round {
  border-radius: var(--roundR);
}

.tags .name,
.tags .date {
  color: var(--colorBlk);
}

.tags .name {
  font-size: var(--linkBtnFontSizeL);
  margin-right: 1em;
}

.contents.interview h6 {
  font-size: var(--bodyTxtSize);
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.contents.interview .personal-info .name {
  color: var(--colorPrimary);
  font-size: var(--linkBtnFontSizeM);
}

.contents.interview section:last-of-type {
  margin-top: 6.4rem;
}

.recent .lists li {
  border-bottom: 1px solid;
  padding-bottom: 2.4rem;
  padding-top: 2.4rem;
}

.recent .lists li .tags,
.recent .lists li time {
  flex-shrink: 0;
}

.recent .lists li .tags .tag {
  min-width: 12.4rem;
  text-align: center;
}

.recent .lists li time,
.recent .lists li p,
.tags .date,
.under.post time {
  font-size: var(--ledeFontSize);
}

.recent .lists li time,
.under.post time {
  margin-left: 1.6rem;
}

.under.post h1 {
  font-size: var(--sectionTitleSizeL);
  color: var(--colorPrimary);
  line-height: 1.5;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.recent .lists li p {
  margin-left: 3.2rem;
  margin-right: 4.2rem;
  line-height: 1.75;
  overflow: hidden;
  max-height: 3.5em;
}

.recent .lists li a:hover p,
.recent .lists li a:hover time{
  color: var(--colorGry);
}
.recent .lists li a:hover .linkBtn,
.recent .lists li a:hover .tags .tag{
  background: var(--colorPrimary);
  color: #fff;
}
.lists.anchor {
  background: var(--colorBaseWht);
  border-radius: var(--roundSQ);
  padding: 2.4rem;
  margin-bottom: 6.4rem;
}

.lists.anchor li {
  margin: 0 4em;
}

.lists.anchor li p {
  font-size: var(--linkBtnFontSizeS);
  color: var(--colorWSBlue);
  margin-right: 0.5em;
}

.lists .linkBtn.circle {
  padding: 1.25rem;
}

.lists.anchor li .linkBtn.circle {
  margin-left: 0;
  margin-right: 0;
  padding: 0.9rem;
}

.recent .lists .linkBtn.circle {
  margin-right: 0;
}

.lists.anchor li .linkBtn.circle .material-symbols-rounded {
  font-size: var(--linkBtnFontSizeM);
}

.header-kv {
  aspect-ratio: 16 / 3.8;
  height: auto;
  width: 100%;
  border-radius: var(--roundSQ);
}

.header-kv figure {
  height: 100%;
  width: 100%;
  overflow: visible;
}

.header-kv.col2 {
  aspect-ratio: 16 / 7;
  position: relative;
}

.header-kv.col2 figure {
  width: calc(50% - 1.2rem);
  position: relative;
  overflow: hidden;
}

#recruitment #info .header-kv.col2 figure{
  overflow: visible;
}

#recruitment #info .header-kv.col2 figure a.coverWrap{
  border-radius: 0.8rem;
}

.header-kv.col2 figure figcaption {
  left: inherit;
  top: inherit;
}

.header-kv figure img {
  height: 100%;
  border-radius: var(--roundSQ);
  object-fit: cover;
}

.header-kv.col2 figure h1.title {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: max-content;
  height: max-content;
  font-size: var(--sectionTitleSizeL);
  color: var(--colorWht);
}

.header-kv figure figcaption,
.page-category {
  position: absolute;
  left: 0;
  top: -0.5em;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 1;
  color: var(--colorSecondary);
  font-weight: 500;
  background: #fff;
  padding: 0.5em 1em 0.5em 0.5em;
  border-bottom-right-radius: var(--roundSQ);
}
#recruitment .header-kv figure figcaption{
  background: none;
  padding: 0;
}
#recruitment #faq .header-kv figure figcaption,
#recruitment #career .header-kv figure figcaption,
#recruitment #newgrads .header-kv figure figcaption{
  background: #fff;
  padding: 0.5em 1em 0.5em 0.5em;
  border-bottom-right-radius: var(--roundSQ);
}
.header-description {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}

.header-description .inner {
  padding-bottom: 4.8rem;
}

article.under {
  margin-bottom: 4.8rem;
}

article.under.post {
  position: relative;
}

.under .contents {
  padding-top: 6.4rem;
  width: 100%;
}

.under .contents.head {
  padding-top: 0;
  margin-bottom: 6.4rem;
}

.under .contents section.base {
  padding: 3.2rem;
  margin-bottom: 4.8rem;
}

.under .contents section.nopdg {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.under .contents section.base.wht {
  background: var(--colorWht);
}

.under .section-title.md {
  font-size: var(--sectionTitleSizeM);
  top: calc(-3.2rem - 0.5em);
  font-weight: 500;
}
.under .section-title span.br{
  line-height: 1.5;
  margin-top: -0.2em;
}
.under .section-title.blk {
  color: var(--colorBlk);
}

.under .contents section.base .w50 {
  width: calc(50% - 1.6rem);
}

.under .contents section.base .txt {
  font-size: var(--ledeFontSize);
  line-height: 1.75;
}

.under .contents section.base.message .txt {
  line-height: 2.25;
}

.section-lede.message{
  font-size: var(--sectionTitleSizeML);
}

.under .contents section.base.message h3.section-title,
.under .contents section.base.message h4.section-title {
  font-weight: 500;
  font-size: var(--sectionTitleSizeM);
  margin-top: 3em;
  margin-bottom: 1.5em;
}

.under .contents section.base.message figure {
  width: 50%;
  margin: 9.6rem auto 6.4rem auto;
  border-radius: none;
}

.under .contents section.base.message figure figcaption {
  font-size: var(--ledeFontSize);
  line-height: 1.75;
  margin-top: 1em;
}

.under .contents section.base.message figure figcaption span {
  display: block;
  font-size: var(--linkBtnFontSizeS);
}

.under .contents section.base.message figure img {
  border-radius: var(--roundSQ);
}

.under .contents section.base.message figure:hover img {
  transform: inherit;
}

.under.post .contents section.base .txt {
  font-size: var(--bodyTxtSize);
  line-height: 2;
  border-top: 1px solid;
  padding-top: 3.2rem;
}

.under.post .contents section.base .txt p,
.under .contents section.base.message .txt p {
  margin-bottom: 2em;
}

.under.post .contents section.base .txt p:last-of-type,
.under .contents section.base.message .txt p:last-of-type {
  margin-bottom: 0;
}

.under.post .contents section.base .txt a {
  color: var(--colorPrimary);
}

.under.post .contents section.base .txt a:hover {
  color: var(--colorGry);
}

.under.post .contents section.base .txt th,
.under.post .contents section.base .txt td {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

.under.post .contents section.base img,
.under.post .contents section.base picture,
.under.post .contents section.base figure,
.under.post .contents section.base iframe {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.under.post .contents section.base picture img,
.under.post .contents section.base figure img {
  width: 100%;
}

.under .contents section.base iframe {
  width: 80%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--roundSQ);
  display: block;
}

.under .contents section.base iframe:nth-child(2){
margin-top: 2.4rem;
}

.lists.anchor.sort li {
  margin-left: 0;
  margin-right: 1.2rem;
}

.lists.anchor.sort p {
  font-size: var(--ledeFontSize);
  color: var(--colorPrimary);
}

.lists.anchor.sort li.head {
  min-width: 7rem;
  font-size: var(--linkBtnFontSizeS);
}

.lists.anchor.sort li.block {
  width: calc(100% - 10rem);
}

.lists.anchor.sort li.block ul {
  margin: 0;
}

.lists.anchor.sort li.button {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  cursor: pointer;
}

.sort .linkBtn {
  margin-top: 0;
  padding: 1rem 2.4rem 1rem 2.4rem;
  text-indent: 0;
  font-size: var(--linkBtnFontSizeS);
}

.sort .linkBtn.mixitup-control-active {
  background-color: var(--colorPrimary);
  color: var(--colorWht);
}

.sort .sort-block ul {
  margin: 0.6rem 0;
}

header .sp-menu-btn {
  display: none;
}

header .sp-menu-btn .line {
  width: 1.6rem;
  height: 1px;
  background: white;
  margin: 2px 0;
  transition: all 0.25s;
}

br.sp{
  display: none;
}

@media screen and (max-width: 1280px) {
  #mega-menu {
    margin-right: 8rem;
  }

  #mega-menu .menu-list {
    padding: 0 1rem;
    font-size: var(--linkBtnFontSizeM);
  }

  header .linkBtn,
  #ci span {
    font-size: var(--linkBtnFontSizeM);
  }

  #ci img {
    width: 16rem;
  }

  .menu-contents .sub-menu .sub-title {
    width: 20rem;
  }

  .menu-contents .sub-title .lists {
    font-size: 1.2rem;
    margin-top: 0.75em;
  }
}

@media screen and (max-width: 1024px) {
  header .sp-menu-btn.circle {
    display: flex;
    padding: 0;
    right: 0.8rem;
    width: 4.8rem;
    height: 4.8rem;
    top: 0.8rem;
  }

  nav#global-menu.open {
    border-bottom-left-radius: var(--roundSQ);
    border-bottom-right-radius: var(--roundSQ);
  }

  header .sp-menu-btn.on {}

  header .sp-menu-btn.on .line:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }

  header .sp-menu-btn.on .line:nth-child(2) {
    width: 0;
  }

  header .sp-menu-btn.on .line:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }

  #mega-menu,
  .linkBtn.enter {
    display: none;
  }

  .linkBtn.enter.sp{
    display: block;
    position: static;
    width: 100%;
    background: var(--colorSecondary);
    color: var(--colorWht);
    text-align: center;
  }

  #mega-menu {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  nav#global-menu {
    width: calc(100% - (4.5rem / 2));
  }

  header {
    padding: 0.8rem 0.8rem 0 0.8rem;
  }

  #mega-menu.on {
    display: block;
    position: fixed;
    width: calc(100vw - 1.6rem);
    height: 94vh;
    left: 0;
    right: 0;
    top: 0;
    background: var(--colorPrimary);
    z-index: 100;
    margin-top: 82px;
    margin-left: auto;
    margin-right: auto;
    overflow: scroll;
    border-radius: var(--roundSQ);
  }

  #mega-menu.on .menu-list {
    position: relative;
    margin: 0;
    height: auto;
    padding: 1.6rem 0;
  }

  #mega-menu.on .menu-list {
    border-top: 1px solid white;
  }

  #mega-menu.on .menu-list:first-of-type {
    border-top: none;
  }

  #mega-menu.on .menu-contents {
    position: static;
    padding: 0;
  }

  #mega-menu .menu-list .menu-title {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
  }

  .sp-menu-box {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1.8rem;
    height: 1.8rem;
    background: white;
    border-radius: 1.5rem;
  }
  #menu-info .sp-menu-box{
    display: none;
  }
  #mega-menu .menu-list.open .menu-title a.list::after{
    display: none;
  }

  .sp-menu-box .line {
    width: 0.8rem;
    height: 1px;
    background: var(--colorPrimary);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .sp-menu-box .line.top {}

  .sp-menu-box .line.middle {
    transform: rotate(90deg);
  }

  #mega-menu .menu-list.open .sp-menu-box,
  #footer-menu .title.open .sp-menu-box{
    background: var(--colorSecondary);
    transform: rotate(45deg);
  }

  #mega-menu .menu-list.open .sp-menu-box .line,
  #footer-menu .title.open .sp-menu-box .line{
    background: var(--colorWht);
  }
  #footer-menu ul {
    width: 100%;
  }
  #footer-menu .sp-menu-box{
    display: block
  }
  #footer-menu ul li.sub-menu{
    display: none;
  }
  #footer-menu nav ul,
  #footer-menu nav li.border{
    border-bottom: 1px solid;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
  }
  #footer-menu nav ul:last-child li:first-of-type{

  }
  #footer-menu nav ul .sub-menu ul{
    border-bottom: none;
  }
  #copyrights {
    margin-top: 2.4rem;
    flex-flow: column;
    line-height: 3;
  }

  #copyrights .flex {
    flex-flow: column;
  }

  #copyrights a {
    margin-left: 0;
  }
  .col2 {
    gap: 1.6rem;
  }

}

@media screen and (max-width: 912px) {
  br.pc{
    display: none;
  }
  br.sp{
    display: block;
  }
  .under .contents{
    padding-top: 2.4rem;
  }
  .under .contents.col3{
    gap: 1.6rem;
  }
  .under .contents section.base{
    padding: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .under .section-title.md{
    top: calc(-2.4rem - 0.5em);
  }
  .under .section-title{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25em;
  }
  .under #recruit-info .section-title,
  .under .section-title.blu.SGHBlue{
    flex-direction: row;
  }
  .menu-contents .sub-menu .sub-title picture {
    display: none;
  }

  .menu-contents .sub-menu .sub-title,
  .menu-contents .sub-menu {
    width: 100%;
  }

  .menu-contents .sub-menu {
    margin-top: 1em;
  }

  .wrapper {
    padding: var(--spPaddingMainWrapSet);
  }

  #end a.scrl {
    padding: 2.3rem;
    right: 0.8rem;
    bottom: 6rem;
  }

#introduction #mega-menu #menu-intro.menu-list .menu-title a.list::after,
#work-enviroment  #mega-menu #menu-work.menu-list .menu-title a.list::after,
#jobs-people  #mega-menu #menu-job.menu-list .menu-title a.list::after,
#training-welfare  #mega-menu #menu-welfare.menu-list .menu-title a.list::after,
#information  #mega-menu #menu-info.menu-list .menu-title a.list::after,
#recruitment  #mega-menu #menu-recruitment.menu-list .menu-title a.list::after{
  display: none;
}

  .header-kv {
    margin-top: 0.8rem;
    /*aspect-ratio: 16 / 6.5;*/
  }

  .header-kv figure {
    display: flex;
    flex-flow: column-reverse;
    height: auto;
    aspect-ratio: 16 / 6.5;
  }

  .header-kv figure figcaption,
  .page-category,#recruitment #faq .header-kv figure figcaption{
    margin-bottom: 1em;
    position: static;
    padding: 0 0 0 0.8rem;
  }

  .header-kv.col2{
    aspect-ratio: auto;
    gap: 0.8rem;
  }

  .header-kv.col2 figure{
    width: 100%;
    aspect-ratio: 4 / 3;
    order: 2;
  }
  
  .header-kv.col2 figure figcaption{
    position: absolute;
    margin-bottom: 0;
  }

  .header-description .inner{
    padding-bottom: 2.4rem;
  }

  #footer-menu{
    margin-top: 3.2rem;
  }

  .section-lede{
    margin-top: 0.5em;
  }

  .section-lede.message{
    font-size: var(--ledeFontSize);
  }

  .section-title .shoulder,
  .header-kv .shoulder,
  .page-category .shoulder {
    margin-right: 0.8rem;
  }

  .col2 .box,
  .col3 .box {
    width: 100%;
  }

  .col3 .box figure,
  .col3 .box picture,
  .col2 .box figure,
  .col2 .box picture,
  .col2 .box figure,
  .col2 .box picture {
    aspect-ratio: 3 / 2;
  }

  .under .contents.head {
    gap: 1.6rem 0;
    margin-bottom: 1.6rem;
  }

  #breadcrumb .inner {
    white-space: nowrap;
    overflow: scroll;
    width: 95%;
  }

  .recent .lists li a.nowrap {
    flex-flow: wrap;
  }

  .recent .lists li p {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1em;
    width: calc(100% - 3rem);
  }

  a.linkBtn {
    margin-top: 3.2rem
  }

  .inner {
    padding-bottom: 3.2rem;
  }

  footer {
    padding: 1.6rem 0.8rem 0 0.8rem;
  }

  #recruit-info .head {
    aspect-ratio: 16 / 6;
  }

  #recruit-info .link-box {
    padding: 1.6rem 2.4em;
    margin-top: 18.5vw;
  }

  #recruit-info .link-box .btn-box .linkBtn {
    width: 100%;
  }

  #recruit-info .link-box .btn-box {
    margin: 2.4rem 0;
  }

  #recruit-info .link-box .btn-box .linkBtn:first-of-type {
    margin-bottom: 1.6rem;
  }

  #recruit-info .link-box .linkBtn {
    padding: 1.6rem 3.2rem 1.6rem 1.4rem;
  }

  .under .contents section.base .w50{
    width: 100%;
  }
  .under .contents section.base .txt {
    margin-top: 1.5em;
  }
  .under .contents section.base.message .txt{
    padding: 0;
  }
  .under .contents section.base.message figure{
    width: 90%;
    margin: 3.2rem auto 3.2rem auto;
  }
  #people .contents.top .titles{
    width: 100%;
    padding-right: 0;
    margin-bottom: 2.4rem;
  }
  #people .contents.top figure{
    width: 100%;
    top: inherit;
  }
  article.base{
    margin-bottom: 6.4rem;
  }
  article.banner picture, article.banner figure{
    aspect-ratio: 1 / 1.25;
  }
  article.banner .lede .txt{
    max-width: 78vw;
  }
  article.banner picture, article.banner figure{
    aspect-ratio: 1 / 1;
  }
  .lists.anchor{
    overflow-x: scroll;
    margin-bottom: 2.4rem;
  }
  .lists.anchor ul.flex{
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .lists.anchor.sort p{
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
  }
  #recruit-info .link-box p{
    text-align: justify;
  }
}

@media screen and (max-width: 430px) {
  #ci img {
    width: 40vw;
  }

  #ci span {
    font-size: 3vw;
    margin-left: 2vw;
  }
}