@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  vertical-align: top;
}

img {
  border: none;
  vertical-align: top;
}

/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:link, a:visited {
  color: #00348c;
}

a:hover {
  opacity: 0.7;
}

a[data-rel=external]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: transparent url("../image/icon-external.png") no-repeat scroll center center;
  background-size: contain;
  margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-container {
  overflow: hidden;
}

.l-limit {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-limit {
    box-sizing: border-box;
    max-width: 1600px;
  }
}

.l-frame {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame {
    width: 87.5%;
  }
}
.l-frame--s {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame--s {
    width: 84.375%;
  }
}

@media screen and (min-width: 769px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
.l-column-both {
  display: flex;
  justify-content: space-between;
}
.l-column--wrap {
  flex-wrap: wrap;
}
.l-column--reverse {
  flex-direction: row-reverse;
}

.job .l-container,
.story .l-container {
  overflow: visible;
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .l-header {
    padding: 30px 0;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 89.3333333333%;
}
@media screen and (min-width: 769px) {
  .l-header__inner {
    width: 93.75%;
  }
}
.l-headerLogo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .l-headerLogo {
    gap: 20px;
  }
}
.l-headerLogo a {
  max-width: 70px;
  display: grid;
  place-items: center;
  padding: 8px 0;
}
@media screen and (min-width: 769px) {
  .l-headerLogo a {
    max-width: 160px;
    margin-top: -8px;
  }
}
.l-headerLogo a img {
  transition: all 0.4s;
}
.l-headerLogo p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #00348c;
  font-size: 10px;
  line-height: 1;
  position: relative;
  padding-left: 22px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) {
  .l-headerLogo p {
    padding-left: 112px;
    font-size: 14px;
  }
}
.l-headerLogo p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #00348c;
  height: 1px;
  width: 15px;
}
@media screen and (min-width: 769px) {
  .l-headerLogo p::before {
    width: 100px;
  }
}
.l-headerButtons {
  cursor: pointer;
  display: flex;
}
.l-headerButtons__entry {
  display: grid;
  place-items: center;
  height: 40px;
  width: 70px;
  opacity: 1;
  border: solid 1px #00348c;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) {
  .l-headerButtons__entry {
    height: 60px;
    width: 160px;
  }
}
.l-headerButtons__entry span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #00348c;
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .l-headerButtons__entry span {
    font-size: 18px;
  }
}
.l-headerButtons__burger {
  aspect-ratio: 1/1;
  background-color: #00348c;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 769px) {
  .l-headerButtons__burger {
    width: 60px;
    height: 60px;
  }
}
.l-headerButtons__burger span {
  position: relative;
  display: block;
  width: 14px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.35s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .l-headerButtons__burger span {
    width: 20px;
  }
}
.l-headerButtons__burger span::before, .l-headerButtons__burger span::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  transition: all 0.35s ease-out 0s;
}
.l-headerButtons__burger span::before {
  top: -5px;
}
.l-headerButtons__burger span::after {
  top: 5px;
}
.l-headerButtons__burger.is-active span {
  background-color: transparent;
}
.l-headerButtons__burger.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.l-headerButtons__burger.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}
.l-headerButtons .l-headerButtons__entry:has(+ .l-headerButtons__burger.is-active) {
  opacity: 0;
}
.l-header .l-headerGnav {
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  transition: all 0.4s;
  padding: 64px 0;
  overflow: scroll;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav {
    padding: 140px 0 80px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav {
    padding: 200px 0 80px;
  }
}
.l-header .l-headerGnav.is-active {
  opacity: 1;
  pointer-events: all;
}
.l-header .l-headerGnav .l-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav .l-nav {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav .l-nav {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    justify-content: space-between;
    max-width: 1080px;
    gap: 40px;
  }
}
.l-header .l-headerGnav .l-nav > ul {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav .l-nav > ul {
    width: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav .l-nav > ul {
    width: 100%;
  }
}
.l-header .l-headerGnav .l-nav > .l-headerGnav__entry {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav .l-nav > .l-headerGnav__entry {
    display: none;
  }
}
.l-header .l-headerGnav > ul:nth-child(2) ul li + li {
  margin-top: 4px;
}
.l-header .l-headerGnav ul + ul {
  margin-top: 28px;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav ul + ul {
    margin-top: 0;
  }
}
.l-header .l-headerGnav ul .l-headerGnav__entry {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav ul .l-headerGnav__entry {
    display: grid;
    max-width: 270px;
  }
}
.l-header .l-headerGnav__entry {
  display: grid;
  place-items: center;
  padding: 0 5% 0 0;
  width: 100%;
  height: 60px;
  margin-bottom: 24px;
}
.l-header .l-headerGnav__entry::after {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav__entry {
    width: 92%;
    margin-bottom: 0;
  }
}
.l-header .l-headerGnav__entry span {
  font-size: 18px;
}
.l-header .l-headerGnav__item {
  box-sizing: border-box;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav__item {
    min-height: 180px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav__item {
    min-height: 220px;
  }
}
.l-header .l-headerGnav__item + .l-headerGnav__item {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav__item + .l-headerGnav__item {
    margin-top: inherit;
  }
}
.l-header .l-headerGnav__item ul {
  margin-top: 20px;
  gap: 10px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav__item ul {
    margin-top: 24px;
    flex-direction: column;
    gap: 15px;
  }
}
.l-header .l-headerGnav__item li {
  width: 32%;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav__item li {
    width: 100%;
  }
}
.l-header .l-headerGnav__item li:last-child {
  width: 100%;
}
.l-header .l-headerGnav__item a {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  white-space: nowrap;
  position: relative;
  padding-right: 28px;
}
.l-header .l-headerGnav__item a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 1px #00348c;
  background: transparent url(../image/common/icon_arrow_s.svg) no-repeat scroll center center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav__item a {
    font-size: 18px;
    padding-right: 32px;
  }
}
.l-header .l-headerGnav__item a.--comingsoon {
  pointer-events: none;
  opacity: 0.3;
}
.l-header .l-headerGnav strong {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  padding-bottom: 14px;
  color: #00348c;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .l-header .l-headerGnav strong {
    font-size: 26px;
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header .l-headerGnav strong {
    font-size: 28px;
  }
}
.l-header .l-headerGnav strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 1px;
  background-color: #00348c;
}
.l-header.is-white .l-headerLogo a img {
  filter: brightness(0) invert(1);
}
.l-header.is-white .l-headerLogo p {
  color: #fff;
}
.l-header.is-white .l-headerLogo p::before {
  background-color: #ffffff;
}

/*----------------------------------------
	Footer
----------------------------------------*/
.l-footer {
  color: #00348c;
  padding: 24px 0;
  position: relative;
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00348c;
  background: linear-gradient(90deg, #00348c 0%, #397cf0 100%);
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 60px 0;
  }
}
.l-footer__inner {
  gap: 0 10%;
}
@media screen and (min-width: 769px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
  }
}
.l-footer__wrap .l-footerLogo {
  display: flex;
  align-items: baseline;
}
@media screen and (min-width: 769px) {
  .l-footer__wrap .l-footerLogo {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer__wrap .l-footerLogo img {
  max-width: 120px;
}
@media screen and (min-width: 769px) {
  .l-footer__wrap .l-footerLogo img {
    max-width: 180px;
  }
}
.l-footer__wrap .l-footerLogo p {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  margin-left: 24px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .l-footer__wrap .l-footerLogo p {
    margin: 20px 0 0;
    font-size: 13px;
  }
}
.l-footer__wrap .l-footer__btn {
  display: block;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 32px;
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .l-footer__wrap .l-footer__btn {
    padding-right: 50px;
    font-size: 12px;
    margin-top: 40px;
  }
}
.l-footer__wrap .l-footer__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 1px #00348c;
  background: transparent url(../image/common/icon_arrow_s.svg) no-repeat scroll center center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .l-footer__wrap .l-footer__btn::after {
    width: 30px;
    height: 30px;
  }
}
.l-footerGnav {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: end;
  margin-top: 24px;
}
@media screen and (min-width: 480px) {
  .l-footerGnav {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}
@media screen and (min-width: 1000px) {
  .l-footerGnav {
    margin-top: 0;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6%;
    max-width: 724px;
  }
}
@media screen and (min-width: 1280px) {
  .l-footerGnav {
    gap: 9.5%;
  }
}
@media screen and (min-width: 480px) {
  .l-footerGnav ul:nth-child(3) {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 1000px) {
  .l-footerGnav ul:nth-child(3) {
    grid-area: inherit;
  }
}
.l-footerGnav > ul:nth-child(2) ul li + li {
  margin-top: 4px;
}
.l-footerGnav > ul + ul {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .l-footerGnav > ul + ul {
    margin-top: 0;
  }
}
.l-footerGnav__item {
  box-sizing: border-box;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.l-footerGnav__item + .l-footerGnav__item {
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .l-footerGnav__item + .l-footerGnav__item {
    margin-top: 36px;
  }
}
.l-footerGnav__item ul {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .l-footerGnav__item ul {
    margin-top: 12px;
    gap: 0;
  }
  .l-footerGnav__item ul li + li {
    margin-top: 5px;
    width: 100%;
  }
}
.l-footerGnav strong {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding-bottom: 6px;
}
@media screen and (min-width: 1000px) {
  .l-footerGnav strong {
    padding-bottom: 8px;
    white-space: nowrap;
  }
}
.l-footerGnav strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 1px;
  background-color: #00348c;
}
.l-footerGnav a {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  white-space: nowrap;
  line-height: 20px;
}
@media screen and (min-width: 1000px) {
  .l-footerGnav a {
    font-size: 15px;
    line-height: 26px;
  }
}
.l-footerGnav a.--comingsoon {
  pointer-events: none;
  opacity: 0.3;
}
.l-footerCopyright {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  text-transform: inherit;
  font-size: 12px;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .l-footerCopyright {
    margin-top: 30px;
  }
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-h1 {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .c-h1 {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-btn {
  display: grid;
  place-items: center;
  background-color: #00348c;
  box-sizing: border-box;
}
.c-btn span {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .c-btn span {
    font-size: 14px;
  }
}
.c-btn--arrow {
  min-height: 40px;
  width: 160px;
  position: relative;
  place-items: center start;
  padding-left: 20px;
}
@media screen and (min-width: 769px) {
  .c-btn--arrow {
    font-size: 16px;
    min-height: 60px;
    padding-left: 30px;
    min-width: 240px;
  }
}
.c-btn--arrow::after {
  content: url(../image/common/icon_arrow_s.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 8px;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .c-btn--arrow::after {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.c-btn--entry {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 12px 0 0;
}
.c-btn--entry span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .c-btn--entry span {
    font-size: 18px;
  }
}

.c-loop {
  display: flex;
}
.c-loop__wrap {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}
.c-loop__wrap picture {
  display: block;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
}

.js-fv-fade .c-hero__cat,
.js-fv-fade .c-messageHero__cat {
  overflow: hidden;
  opacity: 1;
}
.js-fv-fade .c-hero__cat span,
.js-fv-fade .c-messageHero__cat span {
  display: inline-block;
  transform: translateY(100%);
}
.js-fv-fade .c-hero__wrap__lead,
.js-fv-fade .c-hero__wrap__tax,
.js-fv-fade .c-hero__wrap__heading,
.js-fv-fade .c-messageHero__ttl {
  opacity: 0;
}

.c-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
}
@media screen and (min-width: 769px) {
  .c-hero {
    min-height: 800px;
  }
}
[data-page=creative] .c-hero {
  background: transparent url(../image/job/img_creative_main.jpg) no-repeat scroll 54% center/cover;
}
@media screen and (min-width: 769px) {
  [data-page=creative] .c-hero {
    background: transparent url(../image/job/img_creative_main.jpg) no-repeat scroll center center/cover;
  }
}
[data-page=sales] .c-hero {
  background: transparent url(../image/job/img_sales_main.jpg) no-repeat scroll 42% center/cover;
}
@media screen and (min-width: 769px) {
  [data-page=sales] .c-hero {
    background: transparent url(../image/job/img_sales_main.jpg) no-repeat scroll center center/cover;
  }
}
[data-page=production] .c-hero {
  background: transparent url(../image/job/img_production_main.jpg) no-repeat scroll 28% center/cover;
}
@media screen and (min-width: 769px) {
  [data-page=production] .c-hero {
    background: transparent url(../image/job/img_production_main.jpg) no-repeat scroll center center/cover;
  }
}
[data-page=story01] .c-hero {
  background: transparent url(../image/story/img_story01_main.jpg) no-repeat scroll center center/cover;
}
[data-page=story02] .c-hero {
  background: transparent url(../image/story/img_story02_main.jpg) no-repeat scroll center center/cover;
}
[data-page=culture] .c-hero {
  background: transparent url(../image/culture/img_main.jpg) no-repeat scroll center center/cover;
}
.c-hero .l-limit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.c-hero__frame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 91.4666666667%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .c-hero__frame {
    width: 87.5%;
    max-width: 1600px;
  }
}
.c-hero__cat {
  position: absolute;
  top: 100px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 24px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-hero__cat {
    top: 200px;
    font-size: 42px;
  }
}
.c-hero__wrap {
  position: absolute;
  bottom: 46px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .c-hero__wrap {
    bottom: 90px;
    width: 75%;
  }
}
.c-hero__wrap__tax {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (min-width: 769px) {
  .c-hero__wrap__tax {
    margin-bottom: 24px;
    padding: 4px 13px;
    font-size: 15px;
  }
}
.c-hero__wrap__lead {
  margin-bottom: 20px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-hero__wrap__lead {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 44px;
  }
}
.c-hero__wrap__heading {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-hero__wrap__heading {
    font-size: 64px;
    line-height: 112px;
  }
}
.c-hero__wrap__heading.-s {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .c-hero__wrap__heading.-s {
    font-size: 48px;
    line-height: 78px;
  }
}
@media screen and (min-width: 769px) {
  .c-hero__value {
    flex: 1;
  }
}
.c-hero__value__ttl {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-hero__value__ttl {
    font-size: 20px;
  }
}
.c-hero__value__number {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: 200px;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-hero__value__number {
    font-size: 200px;
  }
}

.c-number__ttl {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-number__ttl {
    font-size: 20px;
  }
}
.c-number__number {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-number__number {
    font-size: 200px;
  }
}

.c-intro {
  padding: 60px 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .c-intro {
    padding: 70px 0 80px;
  }
}
.c-intro__wrap {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-intro__wrap {
    width: 87.5%;
  }
}
.c-intro__wrap + .c-intro__wrap {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .c-intro__wrap + .c-intro__wrap {
    margin-top: 76px;
  }
}
.c-intro__ttl {
  margin-bottom: 50px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-intro__ttl {
    margin-bottom: 60px;
    font-size: 36px;
    line-height: 52px;
    letter-spacing: 0.04em;
  }
}
.c-intro__image {
  margin: 50px auto 0;
}
@media screen and (min-width: 769px) {
  .c-intro__image {
    width: 73.2142857143%;
    margin: 76px auto 0;
  }
}
@media screen and (min-width: 769px) {
  .c-introRow {
    display: flex;
    justify-content: space-between;
    gap: 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .c-introRow__contents {
    width: 35.7142857143%;
  }
}
.c-introRow__txt {
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 769px) {
  .c-introRow__txt {
    font-size: 16px;
    line-height: 30px;
  }
}
.c-introRow__image {
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .c-introRow__image {
    flex: 1;
    margin-top: 0;
  }
}
.c-introTalk {
  display: flex;
  flex-direction: column;
  gap: 36px 0;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-introTalk {
    gap: 56px 0;
    width: 60.7142857143%;
  }
}
.c-introTalk__item {
  display: flex;
  align-items: flex-start;
}
.c-introTalk__item.-solo .c-introTalk__txt {
  margin-left: auto;
}
.c-introTalk__item.-solo .c-introTalk__pic {
  margin-left: auto;
  width: 84.776119403%;
}
@media screen and (min-width: 769px) {
  .c-introTalk__item.-solo .c-introTalk__pic {
    width: 83.6764705882%;
  }
}
.c-introTalk__item.-set {
  display: flex;
  justify-content: space-between;
}
.c-introTalk__item.-set .c-introTalk__image {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  padding-top: 3px;
}
@media screen and (min-width: 769px) {
  .c-introTalk__item.-set .c-introTalk__image {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    width: 40px;
    padding-top: 4px;
  }
}
.c-introTalk__item.-set .c-introTalk__image span {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-introTalk__item.-set .c-introTalk__image span {
    font-size: 14px;
  }
}
.c-introTalk__txt {
  width: 84.776119403%;
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 769px) {
  .c-introTalk__txt {
    width: 83.6764705882%;
    font-size: 18px;
    line-height: 36px;
  }
}
.c-introTalk__pic__catch {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
}
.c-intro--gray {
  background: #f0f0f0 none;
}

.c-role {
  padding: 60px 5.3333333333%;
  background-color: #f0f0f0;
}
@media screen and (min-width: 769px) {
  .c-role {
    padding: 80px 0 90px;
  }
}
.c-role__ttl {
  text-align: center;
  margin-bottom: 36px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 52px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-role__ttl {
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 52px;
  }
}
.c-roleType {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 0;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-roleType {
    gap: 0;
    width: 87.5%;
  }
}
.c-roleType__item {
  width: 49.2537313433%;
  padding: 30px 0 24px;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-roleType__item {
    width: 19.6428571429%;
    padding: 30px 0;
  }
}
.c-roleType__item__icon {
  width: 54.5454545455%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-roleType__item__icon {
    width: 54.5454545455%;
  }
}
.c-roleType__item__txt {
  text-align: center;
  margin-top: 12px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 32px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-roleType__item__txt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 32px;
  }
}

.c-para {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-para {
    height: 600px;
  }
}
.c-para picture {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 149.3333333333%;
}
@media screen and (min-width: 769px) {
  .c-para picture {
    width: 100%;
  }
}

.c-tree {
  padding: 120px 0;
}
[data-page=creative] .c-tree {
  background: transparent url(../image/job/bg_creative01.jpg) no-repeat scroll center center/cover;
}
[data-page=sales] .c-tree {
  background: transparent url(../image/job/bg_sales01.jpg) no-repeat scroll center center/cover;
}
[data-page=production] .c-tree {
  background: transparent url(../image/job/bg_production01.jpg) no-repeat scroll center center/cover;
}

.c-overview {
  padding: 60px 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .c-overview {
    padding: 80px 0 90px;
  }
}
.c-overview * {
  color: #000000;
}
.c-overviewSticky {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-overviewSticky {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 87.5%;
  }
}
.c-overviewSticky--nositcky .c-overview__head {
  position: relative;
  top: 0;
}
.c-overviewSticky--sp {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-overviewSticky--sp .c-overview__head {
  position: sticky;
  top: 120px;
  width: 29.8507462687%;
}
.c-overviewSticky--sp .c-overviewType {
  width: 70.1492537313%;
}
@media screen and (min-width: 769px) {
  .c-overview__head {
    position: sticky;
    top: 120px;
    width: 35.7142857143%;
  }
}
.c-overview__head__category {
  margin-bottom: 30px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overview__head__category {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 52px;
    letter-spacing: 0.04em;
  }
}
.c-overview__head__ttl {
  margin-top: 30px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 52px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overview__head__ttl {
    margin-top: 70px;
    font-size: 32px;
    line-height: 62px;
    letter-spacing: 0.04em;
  }
}
.c-overview__head__ttl span {
  display: inline-block;
  border-bottom: 1px solid #00348c;
  color: #00348c;
  line-height: 1.7;
}
.c-overviewLayer {
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer {
    width: 64.2857142857%;
  }
}
.c-overviewLayer__item {
  position: relative;
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__item {
    padding-left: 19.4444444444%;
  }
}
.c-overviewLayer__item:has(+ .c-overviewLayer__item) {
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__item:has(+ .c-overviewLayer__item) {
    padding-bottom: 60px;
  }
}
.c-overviewLayer__item:last-of-type::before {
  border-left: none;
}
.c-overviewLayer__item::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 8px;
  width: 24px;
  height: 100%;
  background-color: transparent;
  border-left: 1px solid #00348c;
  border-top: 1px solid #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__item::before {
    top: 27px;
    left: 0;
    width: 17%;
    height: 100%;
  }
}
.c-overviewLayer__ttl {
  position: relative;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__ttl {
    font-size: 20px;
    line-height: 52px;
    letter-spacing: 0.04em;
  }
}
.c-overviewLayer__txt {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__txt {
    font-size: 15px;
    line-height: 30px;
  }
}
.c-overviewLayer__ul {
  position: relative;
  padding-top: 20px;
  padding-left: 30px;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__ul {
    padding-top: 30px;
    padding-left: 30px;
  }
}
.c-overviewLayer__ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 1px;
  height: 100%;
  background-color: #00348c;
}
.c-overviewLayer__ul li + li {
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__ul li + li {
    margin-top: 18px;
  }
}
.c-overviewLayer__ul__ttl {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__ul__ttl {
    font-size: 16px;
    line-height: 52px;
    letter-spacing: 0.04em;
  }
}
.c-overviewLayer__ul__txt {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .c-overviewLayer__ul__txt {
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (min-width: 769px) {
  .c-overviewType {
    width: 64.2857142857%;
  }
}
@media screen and (min-width: 769px) {
  .c-overviewType.-s {
    width: 62.5%;
  }
}
.c-overviewType__heading {
  margin-bottom: 20px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewType__heading {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 52px;
    letter-spacing: 0.04em;
  }
}
.c-overviewType__row {
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-overviewType__row {
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .c-overviewType__row .c-overviewType__txt {
    width: 57.1428571429%;
  }
}
@media screen and (min-width: 769px) {
  .c-overviewType__image {
    width: 35.7142857143%;
  }
}
.c-overviewType__txt {
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 769px) {
  .c-overviewType__txt {
    font-size: 16px;
    line-height: 32px;
  }
}
.c-overviewProfile {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .c-overviewProfile {
    margin-top: 30px;
  }
}
.c-overviewProfile__heading {
  margin-bottom: 10px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewProfile__heading {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.c-overviewProfile__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-overviewProfile__item + .c-overviewProfile__item {
  margin-top: 20px;
}
.c-overviewProfile__image {
  width: 80px;
  aspect-ratio: 1/1;
}
.c-overviewProfile__image picture {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-overviewProfile__contents {
  flex: 1;
}
.c-overviewProfile__name {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewProfile__name {
    font-size: 18px;
  }
}
.c-overviewProfile__name span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewProfile__name span {
    font-size: 12px;
  }
}
.c-overviewProfile__pos {
  font-size: 13px;
  line-height: 1.4;
}
.c-overviewTable {
  position: relative;
  margin-top: 54px;
}
@media screen and (min-width: 769px) {
  .c-overviewTable {
    display: flex;
    flex-direction: column;
    width: 64.2857142857%;
    margin-top: 0;
  }
}
.c-overviewTable::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #00348c;
}
.c-overviewTable tr {
  display: flex;
  flex-direction: column;
  padding-left: 26px;
}
@media screen and (min-width: 769px) {
  .c-overviewTable tr {
    padding-left: 44px;
  }
}
.c-overviewTable tr th {
  display: flex;
  position: relative;
  margin-bottom: 16px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overviewTable tr th {
    font-size: 20px;
    line-height: 32px;
  }
}
.c-overviewTable tr th p {
  width: -moz-max-content;
  width: max-content;
  color: #00348c;
}
.c-overviewTable tr th span {
  flex: 1;
  display: inline-block;
  color: #00348c;
}
.c-overviewTable tr th::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -26px;
  display: inline-block;
  width: 13px;
  aspect-ratio: 1/1;
  border: 1px solid #00348c;
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .c-overviewTable tr th::before {
    top: 14px;
    left: -44px;
  }
}
.c-overviewTable tr td {
  position: relative;
  padding-bottom: 32px;
  font-size: 14px;
  line-height: 26px;
}
@media screen and (min-width: 769px) {
  .c-overviewTable tr td {
    font-size: 16px;
    line-height: 32px;
  }
}
.c-overviewTable tr td li {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .c-overviewTable tr td li {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.c-overviewTable tr td li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 1px;
  background-color: #00348c;
}
.c-overviewVideo {
  position: relative;
  width: 89.3333333333%;
  aspect-ratio: 960/540;
  margin: 80px auto 0;
}
@media screen and (min-width: 769px) {
  .c-overviewVideo {
    width: 75%;
    margin: 100px auto 0;
  }
}
.c-overviewVideo__cover {
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.c-overviewVideo__cover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.75%;
  aspect-ratio: 1/1;
  background: transparent url(../image/common/icon_play.svg) no-repeat scroll center center/cover;
  transition: opacity 0.28s ease 0s;
}
.c-overviewVideo iframe {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-overviewVideo:hover .c-overviewVideo__cover::before {
  opacity: 0.6;
}
.c-overviewVideo .grtyoutube-dark-theme .grtyoutube-popup-content {
  box-shadow: none !important;
}
.c-overview--blue {
  background: #151fcf none;
}
.c-overview--blue * {
  color: #ffffff;
}
.c-overview--gray {
  background: #f0f0f0 none;
}
.c-overview--tree .c-overview__head {
  margin-bottom: 30px;
}
.c-overview--tree .c-overview__head::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8px;
  width: 1px;
  height: 70px;
  background-color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-overview--tree .c-overview__head::before {
    top: 27px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.c-overview--tree .c-overview__head__category {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
  background-color: #ffffff;
}

.c-message {
  position: relative;
  padding: 100px 0 86px;
}
@media screen and (min-width: 769px) {
  .c-message {
    padding: 160px 0 86px;
  }
}
.c-message::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170%;
  aspect-ratio: 1280/520;
  background: transparent url(../image/message/obj01.svg) no-repeat scroll center center/150%;
}
@media screen and (min-width: 769px) {
  .c-message::before {
    width: 100%;
    background: transparent url(../image/message/obj01.svg) no-repeat scroll center center/cover;
  }
}
.c-message picture {
  display: block;
}
.c-messageHero {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .c-messageHero {
    margin-bottom: 76px;
  }
}
.c-messageHero__wrap {
  position: relative;
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-messageHero__wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 9.375%;
    margin: 0;
  }
}
.c-messageHero__cat {
  margin-bottom: 54px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 24px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-messageHero__cat {
    margin-bottom: 70px;
    font-size: 42px;
  }
}
.c-messageHero__ttl {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 68px;
  letter-spacing: 0.04em;
  color: #00348c;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .c-messageHero__ttl {
    font-size: 102px;
    line-height: 123px;
    white-space: inherit;
  }
}
.c-messageHero__ttl span {
  display: block;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .c-messageHero__ttl span {
    font-size: 24px;
    line-height: 36px;
  }
}
.c-messageHero__image {
  margin-top: -60px;
}
@media screen and (min-width: 769px) {
  .c-messageHero__image {
    width: 65.625%;
    min-width: 650px;
    margin-top: 0;
    margin-left: auto;
  }
}
.c-message__txt {
  width: 89.3333333333%;
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
  line-height: 36px;
}
@media screen and (min-width: 769px) {
  .c-message__txt {
    padding-left: 21.5625%;
    font-size: 18px;
    line-height: 40px;
  }
}
.c-message__name {
  width: 89.3333333333%;
  margin: 40px auto 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 36px;
}
@media screen and (min-width: 769px) {
  .c-message__name {
    margin: 56px 0 0 0;
    padding-left: 21.5625%;
    font-size: 24px;
    line-height: 36px;
  }
}
.c-message__name span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .c-message__name span {
    font-size: 14px;
  }
}
.c-message__images {
  display: flex;
  flex-direction: column-reverse;
  margin: 46px 0;
}
@media screen and (min-width: 769px) {
  .c-message__images {
    flex-direction: row;
    align-items: flex-end;
    gap: 0 7.8125%;
    margin: 70px 0;
    padding-left: 12.5%;
  }
}
.c-message__images picture:nth-of-type(1) {
  width: 42.6666666667%;
  padding-left: 11.9402985075%;
}
@media screen and (min-width: 769px) {
  .c-message__images picture:nth-of-type(1) {
    width: 26.7857142857%;
    padding: 0;
  }
}
.c-message__images picture:nth-of-type(2) {
  width: 68%;
  margin-bottom: 40px;
  padding-left: 26.8656716418%;
}
@media screen and (min-width: 769px) {
  .c-message__images picture:nth-of-type(2) {
    width: 46.4285714286%;
    margin: 0;
    padding: 0;
  }
}
.c-message__image {
  margin: 46px 0;
}
@media screen and (min-width: 769px) {
  .c-message__image {
    margin: 70px 0;
    padding-left: 42.1875%;
  }
}
.c-message__image picture {
  width: 68%;
  padding-left: 26.8656716418%;
}
@media screen and (min-width: 769px) {
  .c-message__image picture {
    width: 70.2702702703%;
    padding: 0;
  }
}

.c-panel {
  padding: 80px 0 86px;
}
.c-panelOuter {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  width: 89.3333333333%;
  margin: 0 auto;
  padding: 20px 20px 30px;
  border: 1px solid #909499;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-panelOuter {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    width: 82.8125%;
    padding: 40px;
  }
}
.c-panelOuter + .c-panelOuter {
  margin-top: 40px;
}
.c-panelOuter:nth-child(2n) {
  flex-direction: column-reverse;
}
@media screen and (min-width: 769px) {
  .c-panelOuter:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.c-panelOuter:nth-child(2n) .c-number {
  position: absolute;
  right: auto;
  left: 20px;
  bottom: 14px;
}
@media screen and (min-width: 769px) {
  .c-panelOuter:nth-child(2n) .c-number {
    left: 20px;
    bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .c-panelContents {
    width: 50%;
  }
}
.c-panelContents__cat {
  display: inline-block;
  margin-bottom: 14px;
  padding: 2px 8px 2px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  background-color: #00348c;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .c-panelContents__cat {
    margin-bottom: 20px;
    padding: 7px 16px 7px;
    font-size: 16px;
  }
}
.c-panelContents__ttl {
  margin-bottom: 30px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-panelContents__ttl {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 52px;
  }
}
.c-panelContents__txt {
  font-size: 16px;
  line-height: 30px;
}
.c-panelImage {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .c-panelImage {
    width: 46%;
    margin-bottom: 0;
  }
}
.c-panelImage .c-number {
  position: absolute;
  right: 20px;
  bottom: 14px;
}
@media screen and (min-width: 769px) {
  .c-panelImage .c-number {
    right: 20px;
    bottom: 10px;
  }
}

.c-image-grid {
  padding-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .c-image-grid {
    padding-bottom: 100px;
  }
}
.c-image-grid__ttl {
  text-align: center;
  margin-bottom: 40px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-image-grid__ttl {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 52px;
  }
}
.c-image-grid__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 0;
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-image-grid__wrap {
    gap: 10px 0;
    width: 82.8125%;
  }
}
.c-image-grid__wrap__item {
  width: 47.7611940299%;
}
@media screen and (min-width: 769px) {
  .c-image-grid__wrap__item {
    width: 32.5471698113%;
  }
}

.c-navigation {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .c-navigation {
    margin-top: 90px;
  }
}
.c-navigation__ttl {
  text-align: center;
  margin-bottom: 32px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  font-size: 24px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-navigation__ttl {
    margin-bottom: 36px;
    font-size: 32px;
  }
}
.c-navigationWrap {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 76.1194029851%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap {
    flex-direction: row;
    justify-content: center;
    gap: 0 2.65625%;
    width: 100%;
  }
}
.c-navigationWrap.-solo {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap.-solo .c-navigationWrap__item {
    width: 31.25%;
  }
}
.c-navigationWrap.-solo .c-navigationWrap__item__ttl {
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap.-solo .c-navigationWrap__item__ttl {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item {
    width: 23.4375%;
  }
}
.c-navigationWrap__item__thumb {
  position: relative;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item__thumb {
    margin-bottom: 12px;
  }
}
.c-navigationWrap__item__thumb::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  aspect-ratio: 1/1;
  background: transparent url(../image/common/button01.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item__thumb::before {
    right: 20px;
    bottom: 20px;
  }
}
.c-navigationWrap__item__tax {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 4px;
  padding: 2px 8px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item__tax {
    margin-bottom: 5px;
    padding: 3px 10px;
    font-size: 12px;
  }
}
.c-navigationWrap__item__lead {
  margin-bottom: 3px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item__lead {
    margin-bottom: 4px;
  }
}
.c-navigationWrap__item__ttl {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .c-navigationWrap__item__ttl {
    font-size: 24px;
  }
}

.c-obj {
  background: transparent url(../image/job/obj01.svg) no-repeat scroll center bottom/1280px;
}
@media screen and (min-width: 769px) {
  .c-obj {
    background: transparent url(../image/job/obj01.svg) no-repeat scroll center bottom/contain;
  }
}

.c-loop {
  width: 100%;
  overflow: hidden;
}
.c-loop .swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (min-width: 769px) {
  .c-loop .swiper-wrapper {
    display: flex;
  }
}
.c-loop__item {
  width: 100%;
  aspect-ratio: 430/400;
}
@media screen and (min-width: 769px) {
  .c-loop__item {
    width: 33.3333333333% !important;
  }
}
.c-loop__item picture {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.c-homeRecruit {
  border-top: solid 0.75px #909499;
  padding-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit {
    padding-bottom: 0;
  }
}
.c-homeRecruit__wrap {
  align-items: center;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit__wrap .-img {
    width: 50%;
  }
}
.c-homeRecruit__wrap .-txt {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit__wrap .-txt {
    flex: 1;
    padding: 20px 0;
    margin-top: 0;
    box-sizing: border-box;
  }
}
.c-homeRecruit__wrap .-txt a {
  margin: 10px auto 0;
  width: 48%;
  min-width: 250px;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit__wrap .-txt a {
    margin: 40px auto 0;
  }
}
.c-homeRecruit__link {
  margin: 10px auto 0;
  width: 48%;
  min-width: 250px;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit__link {
    margin: 30px auto 0;
  }
}
.c-homeRecruit__link:first-of-type {
  display: grid;
  place-items: center;
  padding: 0 20px 0 0;
}
.c-homeRecruit__link + .c-homeRecruit__link {
  margin-top: 3px !important;
}
.c-homeRecruit .c-home__ttl {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #00348c;
}
.c-homeRecruit .c-home__ttl span,
.c-homeRecruit .c-home__ttl p {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit .c-home__ttl span,
  .c-homeRecruit .c-home__ttl p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .c-homeRecruit .c-home__ttl span,
  .c-homeRecruit .c-home__ttl p {
    font-size: 16px;
  }
}
.c-homeRecruit .c-home__ttl h2 {
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .c-homeRecruit .c-home__ttl h2 {
    line-height: 1.65;
    font-size: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .c-homeRecruit .c-home__ttl h2 {
    line-height: 1.75;
    font-size: 36px;
  }
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .u-hidden-dt {
    display: none;
  }
}

.u-left {
  text-align: left;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-red {
  color: red;
}

.u-bg-red {
  background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
  border-radius: 0 !important;
}

.u-noMargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-noMargin-top {
  margin-top: 0 !important;
}

.u-noMargin-bottom {
  margin-bottom: 0 !important;
}

.u-noPadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-noPadding-top {
  padding-top: 0 !important;
}

.u-noPadding-bottom {
  padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
  padding-top: 10px;
}
.-padding-t.-x2 {
  padding-top: 20px;
}
.-padding-t.-x4 {
  padding-top: 40px;
}
.-padding-t.-x6 {
  padding-top: 60px;
}
.-padding-t.-x8 {
  padding-top: 80px;
}
.-padding-t.-x10 {
  padding-top: 100px;
}

.-padding-b {
  padding-bottom: 10px;
}
.-padding-b.-x2 {
  padding-bottom: 20px;
}
.-padding-b.-x4 {
  padding-bottom: 40px;
}
.-padding-b.-x6 {
  padding-bottom: 60px;
}
.-padding-b.-x8 {
  padding-bottom: 80px;
}
.-padding-b.-x10 {
  padding-bottom: 100px;
}

.-margin-t {
  margin-top: 10px;
}
.-margin-t.-x2 {
  margin-top: 20px;
}
.-margin-t.-x4 {
  margin-top: 40px;
}
.-margin-t.-x6 {
  margin-top: 60px;
}
.-margin-t.-x8 {
  margin-top: 80px;
}
.-margin-t.-x10 {
  margin-top: 100px;
}

.-margin-b {
  margin-bottom: 10px;
}
.-margin-b.-x2 {
  margin-bottom: 20px;
}
.-margin-b.-x4 {
  margin-bottom: 40px;
}
.-margin-b.-x6 {
  margin-bottom: 60px;
}
.-margin-b.-x8 {
  margin-bottom: 80px;
}
.-margin-b.-x10 {
  margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.home-index .l-container .t-home__ttl {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #00348c;
}
.home-index .l-container .t-home__ttl span,
.home-index .l-container .t-home__ttl p {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-home__ttl span,
  .home-index .l-container .t-home__ttl p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-home__ttl span,
  .home-index .l-container .t-home__ttl p {
    font-size: 16px;
  }
}
.home-index .l-container .t-home__ttl h2 {
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-home__ttl h2 {
    line-height: 1.65;
    font-size: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-home__ttl h2 {
    line-height: 1.75;
    font-size: 36px;
    white-space: nowrap;
  }
}
.home-index .l-container .t-home__num {
  color: #ffffff;
}
.home-index .l-container .t-home__num p {
  font-size: 13px;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-home__num p {
    font-size: 15px;
  }
}
.home-index .l-container .t-home__num strong {
  font-size: 80px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-home__num strong {
    font-size: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-home__num strong {
    font-size: 110px;
  }
}
.home-index .l-container p {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 1600px) {
  .home-index .l-container p {
    font-size: 18px;
    line-height: 40px;
  }
}
.home-index .l-container .t-homeHero {
  padding: 120px 0 0;
  position: relative;
  min-height: 100svh;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeHero {
    height: auto;
    padding: 100px 0 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.home-index .l-container .t-homeHero__catch {
  position: absolute;
  left: 5%;
  width: 100%;
  bottom: 50px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeHero__catch {
    top: 0;
    bottom: 0;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.home-index .l-container .t-homeHero__catch__wrap {
  overflow: hidden;
}
.home-index .l-container .t-homeHero__catch__wrap:nth-child(1) .t-homeHero__catch__txt {
  mask-image: url("../image/home/catch01.svg");
  -webkit-mask-image: url("../image/home/catch01.svg");
  aspect-ratio: 150/31;
}
.home-index .l-container .t-homeHero__catch__wrap:nth-child(2) .t-homeHero__catch__txt {
  mask-image: url("../image/home/catch02.svg");
  -webkit-mask-image: url("../image/home/catch02.svg");
  aspect-ratio: 300/73;
}
.home-index .l-container .t-homeHero__catch__wrap:nth-child(3) .t-homeHero__catch__txt {
  mask-image: url("../image/home/catch03.svg");
  -webkit-mask-image: url("../image/home/catch03.svg");
  aspect-ratio: 100/17;
}
.home-index .l-container .t-homeHero__catch__bg {
  background-color: #fff;
  padding: 6px 8px;
  opacity: 0;
  box-sizing: border-box;
  transform: translateY(100px);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeHero__catch__bg {
    padding: 12px 20px;
    transform: translateY(160px);
  }
}
.home-index .l-container .t-homeHero__catch__txt {
  position: relative;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #00348c;
  height: 14.5vw;
  max-height: 86px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeHero__catch__txt {
    height: 8.6vw;
    max-height: 136px;
  }
}
.home-index .l-container .t-homeHero__catch__txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: transparent url(../image/home/catch_gradiant.png) no-repeat scroll center center/cover;
  pointer-events: none;
  z-index: 1;
}
.home-index .l-container .t-homeHero__catch__txt.is-gradient::before {
  animation: slideGradient 2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}
@keyframes slideGradient {
  from {
    left: -100%;
  }
  to {
    left: 0%;
  }
}
.home-index .l-container .t-homeHero__catch h1 span {
  display: none;
}
.home-index .l-container .t-homeHero__img {
  position: relative;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  transform-origin: center center;
  transform: scale(1);
  mask-image: url("../image/home/img_top01.png");
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../image/home/img_top01.png");
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeHero__img {
    mask-image: url("../image/home/img_top01_pc.png");
    -webkit-mask-image: url("../image/home/img_top01_pc.png");
    width: 68%;
    margin: auto 0 auto auto;
  }
}
.home-index .l-container .t-homeHero__img .swiper-slide.swiper-slide-prev img,
.home-index .l-container .t-homeHero__img .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  animation: zoomUp 6s linear 0s normal forwards;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.home-index .l-container .t-homeMessage {
  position: relative;
}
.home-index .l-container .t-homeMessage__inner {
  padding: 140px 5.3333333333% 45px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__inner {
    padding: 140px 0 112px 12.5%;
  }
}
.home-index .l-container .t-homeMessage::before {
  content: "";
  clip-path: polygon(0 79%, 100% 0, 100% 100%, 0% 100%);
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 330px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage::before {
    height: 200px;
  }
}
.home-index .l-container .t-homeMessage__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: clamp(92px, -124.199px + 57.653vw, 318px);
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__content {
    margin-top: 0;
  }
}
.home-index .l-container .t-homeMessage__content p {
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__content p {
    white-space: nowrap;
    font-size: 17px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeMessage__content p {
    font-size: 18px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .home-index .l-container .t-homeMessage__content p {
    font-size: 20px;
    line-height: 50px;
  }
}
.home-index .l-container .t-homeMessage__content p + p {
  margin-top: 40px;
}
.home-index .l-container .t-homeMessage__content .-ttl {
  margin: 45px 0 30px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__content .-ttl {
    margin: 60px 0;
  }
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__img {
    width: 60.7142857143%;
  }
}
.home-index .l-container .t-homeMessage__img picture {
  position: relative;
  display: block;
}
.home-index .l-container .t-homeMessage__img picture:nth-child(1) {
  width: 78.6666666667%;
  max-width: 700px;
  margin: 0 0 auto auto;
  position: absolute;
  top: 0;
  right: 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__img picture:nth-child(1) {
    width: 94.1176470588%;
    position: relative;
  }
}
.home-index .l-container .t-homeMessage__img picture:nth-child(2) {
  width: 47.7611940299%;
  max-width: 330px;
  margin: 38px 0 0 auto;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__img picture:nth-child(2) {
    width: 44.1176470588%;
    margin: 60px 80px auto auto;
  }
}
@media screen and (min-width: 1600px) {
  .home-index .l-container .t-homeMessage__img picture:nth-child(2) {
    margin: 60px 120px auto auto;
  }
}
.home-index .l-container .t-homeMessage__img picture:nth-child(3) {
  width: 76.1194029851%;
  max-width: 460px;
  margin: 50px 32px auto auto;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeMessage__img picture:nth-child(3) {
    margin: 60px 220px auto auto;
    width: 61.7647058824%;
  }
}
@media screen and (min-width: 1600px) {
  .home-index .l-container .t-homeMessage__img picture:nth-child(3) {
    margin: 60px 260px auto auto;
  }
}
.home-index .l-container .t-homeJob__img {
  width: 200%;
  margin-left: -50%;
  max-height: 850px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__img {
    margin-left: 0;
    width: 100%;
  }
}
.home-index .l-container .t-homeJob__img img {
  display: block;
}
.home-index .l-container .t-homeJob__desc {
  margin-top: -60px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__desc {
    margin-top: -80px;
    align-items: flex-start;
  }
}
.home-index .l-container .t-homeJob__desc .-txt {
  flex: 1;
  align-self: flex-end;
  padding: 0 6%;
  margin-top: 36px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__desc .-txt {
    padding: 0 0 0 8%;
    margin-top: 120px;
  }
}
.home-index .l-container .t-homeJob__desc .-txt > p {
  margin-top: 22px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__desc .-txt > p {
    margin-top: 30px;
  }
}
.home-index .l-container .t-homeJob__desc .-img {
  width: 64%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__desc .-img {
    width: 50%;
  }
}
.home-index .l-container .t-homeJob__link {
  margin-top: 35px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link {
    margin-top: 100px;
  }
}
.home-index .l-container .t-homeJob__link__item {
  position: relative;
  color: #ffffff;
  box-sizing: border-box;
  max-width: 400px;
  margin: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item {
    width: 32.1428571429%;
    max-width: inherit;
  }
}
.home-index .l-container .t-homeJob__link__item + .t-homeJob__link__item {
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item + .t-homeJob__link__item {
    margin-top: 0;
  }
}
.home-index .l-container .t-homeJob__link__item img {
  position: relative;
  z-index: -1;
  height: 96vw;
  max-height: 430px;
  -o-object-position: 20% center;
  object-position: 20% center;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item img {
    max-height: inherit;
    height: auto;
  }
}
.home-index .l-container .t-homeJob__link__item__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 22px 16px 18px 24px;
}
.home-index .l-container .t-homeJob__link__item__overlay::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: transparent url(../image/common/icon_arrow_l.svg) no-repeat scroll center center/contain;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item__overlay {
    padding: 20px;
  }
  .home-index .l-container .t-homeJob__link__item__overlay::after {
    width: 50px;
    height: 50px;
  }
}
.home-index .l-container .t-homeJob__link__item p {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item p {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeJob__link__item p {
    font-size: 16px;
    line-height: 30px;
  }
}
.home-index .l-container .t-homeJob__link__item h3 {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeJob__link__item h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeJob__link__item h3 {
    font-size: 36px;
  }
}
.home-index .l-container .t-homeStory {
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory {
    margin-top: 80px;
  }
}
.home-index .l-container .t-homeStory__img {
  position: relative;
  max-height: 800px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48.4375%;
    height: 60px;
    background-color: #ffffff;
  }
}
.home-index .l-container .t-homeStory__img img {
  display: block;
}
.home-index .l-container .t-homeStory__desc {
  margin-top: 60px;
  align-items: end;
}
.home-index .l-container .t-homeStory__desc > p {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__desc > p {
    margin-top: 0;
  }
}
.home-index .l-container .t-homeStory__link {
  margin-top: 35px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link {
    margin-top: 50px;
  }
}
.home-index .l-container .t-homeStory__link__item {
  position: relative;
  display: block;
  max-width: 400px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item {
    max-width: inherit;
  }
}
.home-index .l-container .t-homeStory__link__item img {
  position: relative;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-index .l-container .t-homeStory__link__item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 60px 20px 30px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item__overlay {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 30px;
    padding: 30px 20px;
  }
}
.home-index .l-container .t-homeStory__link__item__overlay > p {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffffff;
  padding: 0px 10px;
  color: #000000;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item__overlay > p {
    font-size: 14px;
    padding: 0px 12px;
  }
}
.home-index .l-container .t-homeStory__link__item__overlay::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: transparent url(../image/common/icon_arrow_l.svg) no-repeat scroll center center/contain;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item__overlay::after {
    width: 50px;
    height: 50px;
  }
}
.home-index .l-container .t-homeStory__link__item h3 {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item h3 {
    font-size: 24px;
    line-height: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeStory__link__item h3 {
    font-size: 28px;
    line-height: 48px;
  }
}
.home-index .l-container .t-homeStory__link__item + .t-homeStory__link__item {
  margin-top: 4px;
}
.home-index .l-container .t-homeStory__link__item.--comingsoon {
  pointer-events: none;
  position: relative;
}
.home-index .l-container .t-homeStory__link__item.--comingsoon::before, .home-index .l-container .t-homeStory__link__item.--comingsoon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-index .l-container .t-homeStory__link__item.--comingsoon::before {
  content: "COMING SOON";
  color: #fff;
  z-index: 3;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeStory__link__item.--comingsoon::before {
    font-size: 24px;
  }
}
.home-index .l-container .t-homeStory__link__item.--comingsoon::after {
  content: "";
  background-color: black;
  opacity: 0.8;
  z-index: 2;
}
.home-index .l-container .t-homeCulture {
  padding: 50px 0 90px;
  margin-top: 50px;
  border-top: solid 0.75px #909499;
  position: relative;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture {
    padding: 100px 0;
    margin-top: 80px;
  }
}
.home-index .l-container .t-homeCulture::before {
  content: "";
  clip-path: polygon(0 79%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 76%, 100% 100%, 0% 100%);
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 360px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture::before {
    height: 440px;
  }
}
.home-index .l-container .t-homeCulture__desc .-ttl {
  text-align: center;
}
.home-index .l-container .t-homeCulture__desc > p {
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__desc > p {
    text-align: center;
    margin-top: 30px;
  }
}
.home-index .l-container .t-homeCulture__wrap {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap {
    margin-top: 60px;
    gap: 8px 0.4464285714%;
  }
}
.home-index .l-container .t-homeCulture__wrap__item {
  border: solid 1px #909499;
  padding: 15px 21.5px;
  box-sizing: border-box;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap__item {
    padding: 20px 10px 10px;
    width: 33.0357142857%;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeCulture__wrap__item {
    padding: 30px 10px 10px;
  }
}
.home-index .l-container .t-homeCulture__wrap__item .-img {
  margin-top: 30px;
}
.home-index .l-container .t-homeCulture__wrap__item .-img:has(span) {
  position: relative;
}
.home-index .l-container .t-homeCulture__wrap__item .-img span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 0 4px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap__item .-img span {
    font-size: 12px;
  }
}
.home-index .l-container .t-homeCulture__wrap__item h3, .home-index .l-container .t-homeCulture__wrap__item p {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap__item h3, .home-index .l-container .t-homeCulture__wrap__item p {
    padding-left: 10px;
  }
}
.home-index .l-container .t-homeCulture__wrap__item h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap__item h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .home-index .l-container .t-homeCulture__wrap__item h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
.home-index .l-container .t-homeCulture__wrap__item p {
  border: solid 1px #000000;
  padding: 0 6px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.04em;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__wrap__item p {
    font-size: 14px;
    margin: auto 0 0;
  }
}
.home-index .l-container .t-homeCulture__link {
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeCulture__link {
    margin: 60px auto 0;
  }
}
.home-index .l-container .t-homeRecruit {
  border-top: solid 0.75px #909499;
  padding-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeRecruit {
    padding-bottom: 0;
  }
}
.home-index .l-container .t-homeRecruit__wrap {
  align-items: center;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeRecruit__wrap .-img {
    width: 50%;
  }
}
.home-index .l-container .t-homeRecruit__wrap .-img img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 284px;
}
.home-index .l-container .t-homeRecruit__wrap .-txt {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeRecruit__wrap .-txt {
    flex: 1;
    padding: 20px 0;
    margin-top: 0;
    box-sizing: border-box;
  }
}
.home-index .l-container .t-homeRecruit__link {
  margin: 10px auto 0;
  width: 48%;
  min-width: 250px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homeRecruit__link {
    margin: 30px auto 0;
  }
}
.home-index .l-container .t-homeRecruit__link:first-of-type {
  display: grid;
  place-items: center;
  padding: 0 20px 0 0;
}
.home-index .l-container .t-homeRecruit__link + .t-homeRecruit__link {
  margin-top: 3px;
}
.home-index .l-container .t-homePopup {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homePopup {
    bottom: 30px;
    right: 55px;
  }
}
.home-index .l-container .t-homePopup__wrap {
  position: relative;
  display: block;
  background-color: #00348c;
  padding: 6px 15px 10px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homePopup__wrap {
    padding: 15px 16px;
  }
}
.home-index .l-container .t-homePopup__wrap::before {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: transparent url(../image/common/icon_arrow_s.svg) no-repeat scroll center center/contain;
  width: 26px;
  height: 26px;
}
.home-index .l-container .t-homePopup__wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #00348c;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.home-index .l-container .t-homePopup strong {
  color: #ffffff;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  border-bottom: solid 1px #ffffff;
  padding-bottom: 3px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homePopup strong {
    font-size: 12px;
    padding-bottom: 5px;
  }
}
.home-index .l-container .t-homePopup p {
  color: #ffffff;
  font-size: 12px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.75;
  margin-top: 6px;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homePopup p {
    font-size: 14px;
    margin-top: 14px;
  }
}
.home-index .l-container .t-homePopup small {
  color: #ffffff;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .home-index .l-container .t-homePopup small {
    font-size: 12px;
  }
}

.t-recruit__hero {
  margin-top: 90px;
}
@media screen and (min-width: 769px) {
  .t-recruit__hero {
    display: flex;
    align-items: center;
    margin-top: 186px;
  }
}
.t-recruit__hero__ttl {
  font-size: 36px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #00348c;
}
@media screen and (min-width: 769px) {
  .t-recruit__hero__ttl {
    font-size: 64px;
  }
}
.t-recruit__hero__anchor {
  display: flex;
  border-left: solid 1px #00348c;
  gap: 28px;
  margin-top: 5px;
  padding-left: 20px;
  height: 60px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .t-recruit__hero__anchor {
    gap: 38px;
    margin-top: 0;
    padding-left: 45px;
    margin-left: 60px;
    height: 90px;
  }
}
.t-recruit__hero__anchor a {
  position: relative;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  padding-right: 32px;
  letter-spacing: 0.04em;
}
.t-recruit__hero__anchor a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: transparent url(../image/common/icon_anchor.svg) no-repeat scroll center center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 769px) {
  .t-recruit__hero__anchor a {
    font-size: 24px;
    padding-right: 50px;
  }
  .t-recruit__hero__anchor a::after {
    width: 30px;
    height: 30px;
  }
}

.t-recruit__section {
  margin: 54px auto;
  max-width: 1000px;
}
@media screen and (min-width: 769px) {
  .t-recruit__section {
    margin: 140px auto;
  }
}
.t-recruit__section h2 {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #00348c;
  font-size: 24px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .t-recruit__section h2 {
    font-size: 36px;
    margin-bottom: 45px;
  }
}
.t-recruit__section__note {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .t-recruit__section__note {
    font-size: 16px;
    margin-top: 40px;
    line-height: 2;
  }
}
.t-recruit__section__note a {
  text-decoration: underline;
  color: #000000;
}

.t-recruit__description dl {
  width: 100%;
  border-bottom: 1px solid #00348c;
  padding: 25px 0;
}
.t-recruit__description dl:first-of-type {
  border-top: 1px solid #00348c;
}
@media screen and (min-width: 769px) {
  .t-recruit__description dl {
    padding: 25px 0;
    display: flex;
  }
}
.t-recruit__description dt {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00348c;
  font-size: 16px;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .t-recruit__description dt {
    width: 27.2%;
    font-size: 20px;
  }
}
.t-recruit__description dd {
  font-size: 16px;
  line-height: 1.9;
  vertical-align: top;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .t-recruit__description dd {
    line-height: 2;
    margin-top: 0;
    flex: 1;
  }
}
.t-recruit__description dd p + * {
  margin-top: 26px;
}
.t-recruit__description dd ul + p {
  margin-top: 26px;
}
.t-recruit__description dd .mt-0 {
  margin-top: 0;
}
.t-recruit__description dd ul {
  list-style: none;
}
.t-recruit__description dd ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.t-recruit__faq__item {
  border-bottom: 1px solid #00348c;
}
.t-recruit__faq__item:first-child {
  border-top: 1px solid #00348c;
}
.t-recruit__faq__q, .t-recruit__faq__a strong {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #00348c;
}
.t-recruit__faq__q::before, .t-recruit__faq__a strong::before {
  font-size: 18px;
  line-height: 1;
  margin-right: 6px;
  margin: 0 6px 0 4px;
}
@media screen and (min-width: 769px) {
  .t-recruit__faq__q, .t-recruit__faq__a strong {
    font-size: 20px;
  }
  .t-recruit__faq__q::before, .t-recruit__faq__a strong::before {
    font-size: 28px;
    margin-right: 18px;
    margin: 0 18px 0 6px;
  }
}
.t-recruit__faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 60px 28px 5px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  transition: all 0.5s ease;
}
@media screen and (min-width: 769px) {
  .t-recruit__faq__q {
    padding: 30px 60px 30px 5px;
  }
}
.t-recruit__faq__q::before {
  content: "Q.";
}
.t-recruit__faq__q:hover {
  color: #0040c2;
}
.t-recruit__faq__q:hover span {
  color: #0040c2;
  border: 1px solid #0040c2;
}
.t-recruit__faq__q span {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid #00348c;
  background-color: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.t-recruit__faq__q span::before, .t-recruit__faq__q span::after {
  content: "";
  position: absolute;
  background-color: #00348c;
  transition: background-color 0.3s ease;
}
.t-recruit__faq__q span::before {
  width: 8px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.t-recruit__faq__q span::after {
  width: 1px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 769px) {
  .t-recruit__faq__q span {
    right: 25px;
    width: 28px;
    height: 28px;
  }
  .t-recruit__faq__q span::before {
    width: 12px;
  }
  .t-recruit__faq__q span::after {
    height: 12px;
  }
}
.t-recruit__faq__q.is-open span {
  transform: rotate(180deg);
}
.t-recruit__faq__q.is-open span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.t-recruit__faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.t-recruit__faq__a.is-open {
  max-height: 1000px;
}
.t-recruit__faq__a .-inner {
  padding: 0 0 25px 5px;
  box-sizing: border-box;
}
.t-recruit__faq__a strong::before {
  content: "A.";
}
.t-recruit__faq__a p {
  font-size: 16px;
  line-height: 2;
  padding: 10px 0 0 20px;
}
@media screen and (min-width: 769px) {
  .t-recruit__faq__a p {
    padding: 5px 0 0 50px;
  }
}
.t-recruit__faq__a p a {
  text-decoration: underline;
  padding: 0 1px;
  display: inline-block;
  color: #000000;
}