html {
  margin: 0;
  padding: 0;
  height: 100%;
  height: -webkit-fill-available;
  font-size: clamp(0.529vw, 0.6944vw, 1vw);
  word-break: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.666vw;
  }
}

body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  color: #151F46;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-rendering: optimizeSpeed;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
}

dfn {
  font-style: normal;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  word-break: break-all;
  color: #121212;
  font-weight: bold;
}

summary {
    list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

fieldset {
  padding: 0;
  border: none;
}
legend {
  padding: 0;
}

/* common style */
.sp-only {
  display: none;
}
h2 {
  color: #013F99;
}
p {
  font-weight: 500;
  line-height: 2;
}
h2.before-txt {
  position: relative;
  font-size: 4.2rem;
  line-height: 1.5;
}
h2.before-txt:before {
  position: absolute;
  content: "OUR STENGTH";
  top: -2.4rem;
  left: 50%;
  width: 100%;
  color: #013F99;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  transform: translateX(-50%);
}
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .5s ease-out, transform .8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #013F99;
  z-index: 9999;
  animation: fadein-keyframes 0.3s ease 2.2s forwards;
}

.loader img {
  width: 38rem;
  animation: logo-inout 3s cubic-bezier(0.45, 0, 0.2, 1.5) forwards;
}

@keyframes logo-inout {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes fadein-keyframes {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  h2.before-txt {
    font-size: 3.2rem;
  }
  h2.before-txt:before {
    font-size: 1.6rem;
  }
  #about,
  #service,
  #number,
  #strong,
  #member,
  #training,
  #culture,
  #message,
  #entry,
  #form {
    scroll-margin-top: 6rem;
  }
  .loader img {
    width: 15rem;
  }
}

/* ================================
  header
================================ */
.header-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2.6rem;
  padding: 1.1rem 1.6rem;
  background: rgba(255,255,255,0.8);
}
.header-sp {
  display: none;
}

.header-pc .head-logo,
.header-sp .head-logo {
  min-width: 22.5rem;
  width: 22.5rem;
}

.header .nav-sp {
  display: none;
}

.header-pc nav ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.header-pc nav ul li a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
}

.header-pc nav ul li:last-of-type a {
  display: inline-block;
  padding: .8rem 2.4rem;
  color: #fff;
  font-size: 1.8rem;
  border-radius: .4rem;
  background: linear-gradient(90deg,rgba(0, 161, 255, 1) 0%, rgba(0, 27, 116, 1) 100%);
}

@media screen and (max-width: 768px) {
  .header-pc {
    display: none;
  }
  .header-sp {
    display: block;
    position: fixed;
    top: 1.7rem;
    width: 100%;
    z-index: 10;
  }
  .header-pc .head-logo,
  .header-sp .head-logo {
    min-width: auto;
    width: 15rem;
  }
  .header-sp .head-inner {
    display: flex;
    justify-content: space-between;
    margin: 0 1.9rem;
    padding: 1.1rem 1.6rem;
    background: rgba(255,255,255,0.95);
    transition: transform .3s;
    transform: translateY(0);
  }
  .header-sp .head-inner.hide {
    transform: translateY(-7.5rem);
  }
  .header-sp .nav-sp .burger {
    width: 3.6rem;
    height: 3.6rem;
    padding: .3rem .9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    border-radius: .4rem;
    background: linear-gradient(90deg,rgba(0, 161, 255, 1) 0%, rgba(0, 27, 116, 1) 100%);
    cursor: pointer;
    z-index: 1001;
  }
  .header-sp .nav-sp .burger span {
    display: block;
    height: .1rem;
    background: #fff;
    border-radius: .2rem;
    transition: 0.4s;
    transform-origin: center;
  }
  .header-sp .nav-sp .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(.4rem, .4rem);
  }
  .header-sp .nav-sp .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-sp .nav-sp .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(.4rem, -0.4rem);
  }
  .header-sp .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(0, 161, 255, 1) 0%, rgba(0, 27, 116, 1) 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 1000;
  }
  .header-sp .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header-sp .head-inner.active {
    position: relative;
    z-index: 1001;
  }
  .header-sp .nav-sp .nav-header-sp {
    position: absolute;
    display: none;
    opacity: 0;
    top: 5.8rem;
    left: 0;
    width: 100%;
    height: calc(100dvh - 9rem);
    padding: 3.2rem 3rem;
    text-align: center;
    background: rgba(255,255,255,0.95);
    transition: opacity .5s;
    z-index: 10001;
  }
  .header-sp .nav-sp .nav-header-sp a {
    font-size: 1.7rem;
  }
  .header-sp .nav-sp .nav-header-sp.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }
  .header-sp .nav-sp .nav-header-sp.active .nav-inner {
    width: 100%;
  }
  .header-sp .nav-sp .nav-header-sp ul {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .header-sp .nav-sp .nav-header-sp .first-item a {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem 0;
    color: #fff;
    font-size: 1.8rem;
    border-radius: .4rem;
    background: linear-gradient(90deg,rgba(0, 161, 255, 1) 0%, rgba(0, 27, 116, 1) 100%);
  }
  .header-sp .nav-sp .nav-header-sp .last-item a {
    display: table;
    margin: 1rem auto 0;
    text-decoration: underline;
  }
}

/* ================================
  footer
================================ */
footer {
  padding-bottom: 1.6rem;
}

footer .footer-logo {
  min-width: 18rem;
  width: 18rem;
  margin: 0 auto;
}

footer nav {
  max-width: 50.5rem;
  width: 100%;
  margin: 4rem auto;
}

footer nav ul {
  display: flex;
  gap: 4.5rem;
}

footer nav ul li {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

footer nav ul li a {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
}

footer .link-corporate {
  display: table;
  margin: 4.5rem auto 4rem;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.425px;
}

footer .link-corporate:hover {
  text-decoration: none;
}

footer small {
  display: block;
  text-align: center;
  font-weight: lighter;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 3.2rem 0;
  }
  footer .footer-logo {
    min-width: auto;
  }
  footer .footer-logo img {
    width: 100%;
  }
  footer nav ul,
  footer nav ul li {
    flex-direction: column;
  }
  footer nav ul {
    max-width: 25.5rem;
    margin: 0 auto;
    gap: 1.6rem;
  }
  footer nav ul li {
    gap: 2.3rem;
  }
}

/* ================================
  first - content / view
================================ */
.first-content {
  position: relative;
}
.first-content:before,
.first-content:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 69.6rem;
  height: 55.6rem;
  background: url('../assets/images/blur/mv-tl.png')no-repeat;
  background-size: contain;
  z-index: -2;
}
.first-content:after{
  top: 27rem;
  left: auto;
  right: 0;
  width: 72rem;
  height: 88.4rem;
  background: url('../assets/images/blur/mv-br.png')no-repeat;
  background-size: contain;
}

.fv-wrapper {
  position: relative;
  aspect-ratio: 480 / 280;
  padding-top: 1.7rem;
}

.fv-wrapper h1 {
  margin-top: 27.7rem;
  margin-left: 9.5rem;
  color: #013F99;
  font-weight: bold;
  font-size: 4.3rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.fv-wrapper h1 span.block {
  display: block;
}

.fv-wrapper h1 span.animate-block:first-of-type span.animate-txt,
.fv-wrapper h1 span.animate-block:last-of-type span.animate-txt {
  display: inline-block;
  transform: scale(0);
  transform-origin: bottom center;
}
.fv-wrapper h1 span.animate-block:first-of-type span.animate-txt {
  animation: animate-txt .3s cubic-bezier(0.45, 0, 0.2, 1.5) 2.8s forwards;
}
.fv-wrapper h1 span.animate-block:last-of-type span.animate-txt {
  animation: animate-txt .3s cubic-bezier(0.45, 0, 0.2, 1.5) 3.4s forwards;
}

@keyframes animate-txt {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.fv-wrapper .fv-anime {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 480 / 280;
  width: 144rem;
  z-index: -1;
}

.fv-wrapper .fv-anime .for-sp {
  display: none;
}

.fv-wrapper .fv-anime svg {
  width: 100%;
  height: auto;
}

article.about-content {
  display: flex;
  align-items: center;
  gap: 12.8rem;
  padding: 12.8rem 0;
}

article.about-content .img-wrapper {
  position: relative;
  max-width: 66.7rem;
  min-width: 66.6rem;
  width: 100%;
}
article.about-content .img-wrapper:before {
  position: absolute;
  content: "ABOUT US";
  top: -6rem;
  left: 1rem;
  color: #3666AD;
  font-weight: bold;
  font-size: 6.4rem;
}

article.about-content .text-wrapper {
  width: fit-content;
  margin-right: 10.4rem;
}

article.about-content .text-wrapper h2 {
  margin-bottom: 1.4rem;
  font-size: 3.2rem;
}

article.about-content .text-wrapper p {
  font-size: 1.7rem;
}
article.about-content .text-wrapper p + p {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .first-content:before,
  .first-content:after {
    content: none;
  }
  .fv-wrapper {
    aspect-ratio: 75/94;
    height: 47rem;
  }
  .fv-wrapper h1 {
    margin-top: 13.2rem;
    margin-left: 2.2rem;
    font-size: 2.4rem;
  }
  .fv-wrapper h1 span.animate-block:last-of-type span.sp-break:last-of-type {
    display: inline-block;
  }
  .fv-wrapper h1 span.animate-block:last-of-type span.sp-break:last-of-type .animate-txt {
    animation: animate-txt .3s cubic-bezier(0.45, 0, 0.2, 1.5) 4s forwards;
  }
  .fv-wrapper .fv-anime {
    aspect-ratio: 75/79;
    width: 100%;
  }
  .fv-wrapper .fv-anime .for-pc {
    display: none;
  }
  .fv-wrapper .fv-anime .for-sp {
    display: block;
  }

  article.about-content {
    flex-direction: column;
    gap: 3.2rem;
    padding: 4.8rem 0;
  }
  article.about-content .img-wrapper {
    min-width: auto;
  }
  article.about-content .img-wrapper:before {
    top: -5rem;
    font-size: 4.8rem;
  }
  article.about-content .text-wrapper {
    margin: 0;
    padding: 0 1.6rem;
  }
  article.about-content .text-wrapper h2 {
    font-size: 3.2rem;
  }
  article.about-content .text-wrapper p {
    font-size: 1.3rem;
  }
}

/* ================================
  second - content
================================ */
.second-content {
  padding: 12.2rem 0 12.2rem 12.2rem;
  background: #F8FBFF;
}

.second-content h2 {
  margin-bottom: 1.3rem;
  font-size: 4.2rem;
  line-height: 1.5;
}

.second-content .our-service {
  position: relative;
}
.second-content .our-service:before {
  position: absolute;
  content: "OUR SERVICE";
  top: -6.3rem;
  right: 3.6rem;
  color: #3666AD;
  font-weight: bold;
  font-size: 6.4rem;
}

.second-content .our-service .service-item {
  display: flex;
  align-items: center;
  gap: 5.4rem;
  font-size: 1.7rem;
}

.second-content .our-service .service-item .text-wrapper {
  max-width: 62rem;
  width: 100%;
}

.second-content .our-service .service-item h3 {
  margin-bottom: 1rem;
  color: #013F99;
  font-size: 3.2rem;
  line-height: 1.5;
}

.second-content .our-service .service-item .img-wrapper {
  max-width: 64.5rem;
  min-width: 64.5rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .second-content {
    padding: 3.2rem 0;
  }
  .second-content h2 {
    margin-bottom: 3rem;
    padding: 0 1.6rem;
    font-size: 3.2rem;
  }
  .second-content .our-service {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .second-content .our-service:before {
    content: none;
  }
  .second-content .our-service .service-item {
    flex-direction: column;
    gap: 2.4rem;
  }
  .second-content .our-service .service-item .text-wrapper {
    padding: 0 1.6rem;
  }
  .second-content .our-service .service-item h3 {
    font-size: 2.4rem;
  }
  .second-content .our-service .service-item p {
    font-size: 1.3rem;
  }
  .second-content .our-service .service-item .img-wrapper {
    min-width: auto;
  }
}

/* ================================
  third - content
================================ */
.third-content {
  padding: 12.8rem 0;
}

article.strong-content {
  position: relative;
  padding-bottom: 6.4rem;
  text-align: center;
}
article.strong-content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 144rem;
  height: 150rem;
  background: url('../assets/images/blur/bg-blur.png')no-repeat;
  background-size: contain;
}

article.strong-content .strong-item {
  position: relative;
  margin-top: 7.2rem;
}
article.strong-content .strong-item + .strong-item {
  margin-top: 9.2rem;
}
article.strong-content .strong-item:before {
  position: absolute;
  content: "";
  top: -4rem;
  left: 50%;
  width: 47rem;
  height: .2rem;
  background: #013F99;
  transform: translateX(-50%);
}
article.strong-content .strong-item:after {
  position: absolute;
  content: "01";
  top: -5.9rem;
  left: 50%;
  width: 5.6rem;
  color: #013F99;
  font-weight: bold;
  font-size: 2.4rem;
  background: #fff;
  transform: translateX(-50%);
}
article.strong-content .second-strong:after {
  content: "02";
}
article.strong-content .third-strong:after {
  content: "03";
}

article.strong-content .strong-item h3 {
  margin-bottom: 2.4rem;
  color: #013F99;
  font-size: 3.2rem;
}

article.strong-content .strong-item > p {
  max-width: 78rem;
  margin: 0 auto;
  font-size: 1.7rem;
}

article.strong-content .article-environment {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

article.strong-content .article-environment .article-item {
  display: flex;
  gap: 2.4rem;
  width: 53.4rem;
  padding: 3.2rem 2.4rem;
  background: url('../assets/images/bg-article.png')no-repeat;
  background-size: contain;
}

article.strong-content .article-environment .article-item .text-wrapper {
  width: fit-content;
  text-align: left;
  font-size: 1.4rem;
}

article.strong-content .article-environment .article-item .text-wrapper strong {
  display: block;
  margin-bottom: 1rem;
  color: #013F99;
  font-size: 1.7rem;
  line-height: 1.5;
}

article.strong-content .article-environment .article-item .img-wrapper {
  max-width: 17rem;
  min-width: 17rem;
  width: 100%;
}

article.number {
  position: relative;
  padding-top: 8.8rem;
}
article.number:before {
  position: absolute;
  content: "";
  bottom: -12.8rem;
  left: 0;
  width: 113.5rem;
  height: 109.7rem;
  background: url('../assets/images/blur/bg-number.png')no-repeat;
  background-size: contain;
}

article.number h2 {
  text-align: center;
}
article.number h2.before-txt:before {
  content: "SAT BY THE NUMBERS";
}

article.number .number-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 85rem;
  margin: 3rem auto 0;
}

article.number .number-list .number-item {
  position: relative;
  width: calc(100% / 2 - 1.5rem);
  height: 23rem;
  padding: 3.2rem;
  color: #013F99;
  font-size: 2.2rem;
  text-align: center;
  background: url('../assets/images/bg-number.png')no-repeat;
  background-size: contain;
}
article.number .number-list .number-item:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 15.7rem;
  height: 16.8rem;
  background: url('../assets/images/icon-clock.svg')no-repeat;
  background-size: contain;
}
article.number .number-list .number-item:nth-of-type(2):before {
  width: 13.9rem;
  height: 15.1rem;
  background: url('../assets/images/icon-holiday.svg')no-repeat;
  background-size: contain;
}
article.number .number-list .number-item:nth-of-type(3):before {
  width: 15.6rem;
  height: 14.9rem;
  background: url('../assets/images/icon-user.svg')no-repeat;
  background-size: contain;
}
article.number .number-list .number-item:nth-of-type(4):before {
  width: 14.2rem;
  height: 15.1rem;
  background: url('../assets/images/icon-schedule.svg')no-repeat;
  background-size: contain;
}

article.number .number-list .number-item p strong {
  font-size: 7rem;
}

article.number .number-list .number-item p:last-of-type {
  position: absolute;
  left: 19rem;
  bottom: 3.4rem;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .third-content {
    padding: 7.2rem 1.6rem 4.8rem;
  }
  article.strong-content {
    padding-bottom: 2.4rem;
  }
  article.strong-content:before,
  article.number:before {
    content: none;
  }
  article.strong-content .strong-item {
    margin-top: 6.8rem;
  }
  article.strong-content .strong-item:before {
    top: -3.4rem;
    width: 25rem;
  }
  article.strong-content .strong-item:after {
    top: -5.3rem;
  }
  article.strong-content .strong-item + .strong-item {
    margin-top: 10rem;
  }
  article.strong-content .strong-item h3 {
    margin-bottom: .8rem;
    font-size: 2.4rem;
  }
  article.strong-content .strong-item > p {
    font-size: 1.3rem;
  }
  article.strong-content .article-environment {
    flex-direction: column;
  }
  article.strong-content .article-environment .article-item {
    flex-direction: column;
    width: 100%;
    background-image: url('../assets/images/bg-article_sp.png');
    background-size: cover;
  }
  article.strong-content .article-environment .article-item .text-wrapper {
    order: 2;
  }
  article.strong-content .article-environment .article-item .text-wrapper p {
    font-size: 1.4rem;
  }
  article.strong-content .article-environment .article-item .img-wrapper {
    order: 1;
    min-width: auto;
    margin: 0 auto;
  }
  article.number {
    padding-top: 4.8rem;
  }
  article.number .number-list {
    flex-direction: column;
    gap: 1.6rem;
    margin: 1.6rem auto 0;
  }
  article.number .number-list .number-item {
    width: 100%;
    height: 20rem;
    background-size: cover;
    overflow: hidden;
  }
  article.number .number-list .number-item:before {
    width: 11.6rem;
    height: 12.1rem;
    background-image: url('../assets/images/icon-clock_sp.svg');
  }
  article.number .number-list .number-item:nth-of-type(2):before {
    width: 11.2rem;
    height: 11.4rem;
    background-image: url('../assets/images/icon-holiday_sp.svg');
  }
  article.number .number-list .number-item:nth-of-type(3):before {
    width: 10.9rem;
    height: 11.1rem;
    background-image: url('../assets/images/icon-user_sp.svg');
  }
  article.number .number-list .number-item:nth-of-type(4):before {
    width: 10.8rem;
    height: 11.6rem;
    background-image: url('../assets/images/icon-schedule_sp.svg');
  }
  article.number .number-list .number-item p:last-of-type {
    left: 14.3rem;
    bottom: 2.3rem;
    font-size: 3.2rem;
  }
  article.number .number-list .number-item p:last-of-type strong {
    font-size: 5.6rem;
  }
}

/* ================================
  force - content
================================ */
.force-content {
  padding: 7.9rem 8.3rem 6.4rem;
  background: #F8FBFF;
}

.force-content h2.before-txt:before {
  content: "MEMBER";
  top: -1.5rem;
  left: 0;
  transform: translateX(0);
}

article.member-wrap {
  margin-top: 3rem;
}

article.member-wrap + article.member-wrap {
  margin-top: 12.8rem;
}

article.member-wrap .member-profile {
  display: flex;
  gap: 10rem;
}

article.member-wrap .member-profile .text-wrapper {
  max-width: 64rem;
  font-size: 1.7rem;
}

article.member-wrap .member-profile .text-wrapper p:nth-of-type(odd) {
  margin-top: 6rem;
}
article.member-wrap .member-profile .text-wrapper p:first-of-type {
  margin-top: 0;
}

article.member-wrap .member-profile .text-wrapper strong {
  color: #013F99;
  font-size: 2.4rem;
}

article.member-wrap .member-profile .img-wrapper {
  max-width: 50rem;
  width: 100%;
  text-align: center;
  color: #013F99;
  font-size: 1.7rem;
}

article.member-wrap .member-profile .img-wrapper p {
  line-height: 1.5;
}

article.member-wrap .member-profile .img-wrapper strong {
  display: block;
  font-size: 2.4rem;
  line-height: 2;
}

article.member-wrap .member-profile .img-wrapper .img-profile {
  aspect-ratio: 250 / 361;
  margin-top: 2rem;
  background: url('../assets/images/bg-profile.png')no-repeat;
  background-size: 45.5rem 68.3rem;
  background-position: 4.5rem 3.9rem;
}

article.member-wrap .member-profile .img-wrapper .img-profile img {
  max-width: 45.5rem;
  min-width: 45.5rem;
}

article.member-wrap .time-schedule {
  width: 90rem;
  margin: 6.4rem auto 0;
  padding: 3.2rem 3.2rem;
  background: url('../assets/images/bg-timeSchedule.png')no-repeat;
  background-size: contain;
}
article.member-wrap.member-02 .time-schedule {
  max-width: 85.3rem;
  width: 100%;
  padding: 3.2rem 7.2rem 1rem;
  background-size: cover;
}

article.member-wrap .time-schedule p {
  color: #013F99;
  font-size: 2.4rem;
  line-height: 1.5;
}

article.member-wrap .time-schedule .schedule-wrap {
  display: flex;
  gap: 2.4rem;
  margin-top: 1rem;
}

article.member-wrap .time-schedule .schedule-wrap > div {
  display: flex;
  gap: 5.2rem;
}

article.member-wrap .time-schedule .schedule-wrap .schedule-time,
article.member-wrap .time-schedule .schedule-wrap .schedule-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

article.member-wrap .time-schedule .schedule-wrap .schedule-time p,
article.member-wrap .time-schedule .schedule-wrap .schedule-title p {
  position: relative;
  width: fit-content;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}

article.member-wrap .time-schedule .schedule-wrap .schedule-time p {
  width: 4.5rem;
}

article.member-wrap .time-schedule .schedule-wrap .schedule-time p:before,
article.member-wrap .time-schedule .schedule-wrap .schedule-title:before {
  position: absolute;
  content: "";
  top: .6rem;
  right: -3.3rem;
  background: #013F99;
}

article.member-wrap .time-schedule .schedule-wrap .schedule-time p:before  {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 2rem;
}
article.member-wrap .time-schedule .schedule-wrap .schedule-title:before {
  top: 50%;
  left: -2.65rem;
  right: auto;
  width: .3rem;
  height: 85%;
  transform: translateY(-50%);
}
article.member-wrap .time-schedule .schedule-wrap .am-content .schedule-title:before {
  top: 1.5rem;
  height: 100%;
  transform: translateY(0);
}
article.member-wrap.member-02 .time-schedule .schedule-wrap .am-content .schedule-title:before,
article.member-wrap.member-02 .time-schedule .schedule-wrap .schedule-title:before {
  height: 96%;
}
article.member-wrap.member-02 .time-schedule .schedule-wrap .pm-content .schedule-title:before {
  height: 90%;
  top: 50% !important;
}
article.member-wrap.member-02 .time-schedule .schedule-wrap .pm-content .schedule-title:before {
  top: 60%;
}

article.member-wrap.member-02 .member-profile .text-wrapper {
  order: 2;
}
article.member-wrap.member-02 .member-profile .img-wrapper {
  order: 1;
}

@media screen and (max-width: 768px) {
  .force-content {
    padding: 5.9rem 0 3.2rem;
  }
  .force-content h2 {
    margin: 0 1.6rem;
  }
  article.member-wrap {
    margin-top: 3.2rem;
  }
  article.member-wrap + article.member-wrap {
    margin-top: 6.4rem;
  }
  article.member-wrap .member-profile {
    flex-direction: column;
    gap: 3.2rem;
    padding: 0 1.6rem;
  }
  article.member-wrap .member-profile .text-wrapper {
    order: 2;
    font-size: 1.4rem;
  }
  article.member-wrap .member-profile .text-wrapper p:nth-of-type(odd) {
    margin-top: 6.4rem;
  }
  article.member-wrap .member-profile .text-wrapper p:first-of-type {
    margin-top: 0;
  }
  article.member-wrap .member-profile .img-wrapper .img-profile img {
    max-width: 29.4rem;
    min-width: auto;
  }
  article.member-wrap .member-profile .img-wrapper {
    order: 1;
  }
  article.member-wrap .member-profile .img-wrapper .img-profile {
    aspect-ratio: 323 / 442;
    margin-top: 2.4rem;
    padding: 0 1rem;
    background-size: 29.4rem 44.1rem;
    background-position: 3.9rem 2.5rem;
  }
  article.member-wrap .time-schedule {
    width: 100%;
    margin-top: 6.4rem;
    padding: 3.2rem 1.6rem;
    background: url('../assets/images/bg-timeSchedule_sp.png')no-repeat;
    background-size: cover;
  }
  article.member-wrap.member-02 .time-schedule {
    padding: 3.2rem 1.6rem;
  }
  article.member-wrap .time-schedule p {
    font-weight: bold;
    text-align: center;
  }
  article.member-wrap .time-schedule .schedule-wrap {
    flex-direction: column;
    gap: 1rem;
  }
  article.member-wrap .time-schedule .schedule-wrap .schedule-time,
  article.member-wrap .time-schedule .schedule-wrap .schedule-title {
    gap: 1rem;
  }
  article.member-wrap.member-02 .time-schedule .schedule-wrap .am-content .schedule-title:before,
  article.member-wrap.member-02 .time-schedule .schedule-wrap .schedule-title:before {
    height: 100%;
  }
  article.member-wrap .time-schedule .schedule-wrap .am-content .schedule-title:before {
    top: 1.6rem;
  }
  article.member-wrap.member-02 .time-schedule .schedule-wrap .pm-content .schedule-title:before {
    top: 50%;
    height: 80%;
  }
  article.member-wrap .time-schedule .schedule-wrap .schedule-time p,
  article.member-wrap .time-schedule .schedule-wrap .schedule-title p {
    line-height: 2.7rem;
    text-align: left;
  }
  article.member-wrap.member-01 .time-schedule .schedule-wrap .schedule-title p.text-sm {
    font-size: 1.1rem;
  }
  article.member-wrap.member-02 .time-schedule .schedule-wrap .pm-content .schedule-title p:nth-of-type(3) {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.13;
  }
  article.member-wrap .time-schedule .schedule-wrap .schedule-time p {
    width: 5rem;
    text-align: left;
    font-size: 1.8rem;
  }
}

/* ================================
  fifth - content
================================ */
.fifth-content {
  padding: 15.2rem 0 6.4rem;
}

.fifth-content h2 {
  text-align: center;
}
.fifth-content h2.before-txt:before {
  content: "TRAINING";
}

.fifth-content > p {
  margin-top: 3.2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}

.fifth-content article {
  max-width: 94rem;
  margin: 6.9rem auto 0;
}

.fifth-content article h3 {
  color: #013F99;
  font-size: 3.2rem;
}

.fifth-content article .training-list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 2.4rem;
}

.fifth-content article .training-item {
  display: flex;
  gap: 2.4rem;
}

.fifth-content article .training-item p:first-of-type {
  min-width: 16rem;
  color: #013F99;
  line-height: 1.5;
}

.fifth-content article .training-item p:first-of-type img {
  width: 9.8rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .fifth-content {
    padding: 7.2rem 1.6rem 2.4rem;
  }
  .fifth-content > p {
    font-size: 1.5rem;
  }
  .fifth-content article {
    margin-top: 6.4rem;
  }
  .fifth-content article h3 {
    font-size: 2.4rem;
  }
  .fifth-content article .training-item p:first-of-type {
    min-width: 12rem;
  }
  .fifth-content article .training-item p:last-of-type {
    font-size: 1.4rem;
  }
}

/* ================================
  sixth - content
================================ */
.sixth-content {
  padding: 7.9rem 0 0;
}

.sixth-content h2 {
  text-align: center;
}
.sixth-content h2::before {
  content: "CULTURE";
}

.sixth-content > p {
  margin: 3.2rem 0;
  padding: 0 16rem;
  text-align: center;
  font-size: 1.7rem;
}

.sixth-content .culture-slider {
  display: flex;
  overflow: hidden;
}

.sixth-content .culture-slider .slider-list {
  display: flex;
}

.sixth-content .culture-slider .slider-item {
  width: calc(100vw / 3);
}

.sixth-content .culture-slider .slider-item img {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

.sixth-content article#message {
  margin-top: 3.5rem;
  padding: 15.6rem 6.8rem;
  background: url('../assets/images/bg-message.png')no-repeat;
  background-size: cover;
  background-position: center;
}

.sixth-content article#message .inner {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  padding: 12.8rem;
  background: rgba(31,31,31,.5);
}

.sixth-content article#message .inner .text-wrapper {
  color: #fff;
  text-align: left;
}

.sixth-content article#message .inner .text-wrapper h2 {
  margin-bottom: 6.4rem;
  color: #fff;
  text-align: left;
}

.sixth-content article#message .inner .text-wrapper h2::before {
  content: "MESSAGE";
  left: 0;
  color: #fff;
  transform: translateX(0);
}

.sixth-content article#message .inner .text-wrapper p {
  font-size: 1.7rem;
}

.sixth-content article#message .inner .ceo-name {
  margin-top: 2.4rem;
}

.sixth-content article#message .inner .ceo-name p {
  width: fit-content;
  margin: 0 0 0 auto;
  color: #fff;
  text-align: right;
  font-weight: bold;
  font-size: 1.6rem;
}

.sixth-content article#message .inner .ceo-name strong {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
}

.sixth-content article#message .inner .img-wrapper {
  aspect-ratio: 2 / 3 ;
  max-width: 25rem;
  min-width: 25rem;
  width: 100%;
  overflow: hidden;
}
.sixth-content article#message .inner .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sixth-content {
    padding: 4.8rem 0 0;
  }
  .sixth-content > p {
    padding: 0 1.6rem;
    font-size: 1.5rem;
  }
  .sixth-content .culture-slider .slider-item {
    width: calc(100vw / 2);
  }
  .sixth-content article#message {
    padding: 0;
  }
  .sixth-content article#message .inner {
    padding: 4rem 1.6rem 4.8rem;
  }
  .sixth-content article#message .inner .img-wrapper {
    min-width: auto;
  }
  .sixth-content article#message .inner .text-wrapper h2 {
    margin-bottom: 2.4rem;
    text-align: center;
  }
  .sixth-content article#message .inner .text-wrapper h2::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .sixth-content article#message .inner .text-wrapper .img-wrapper {
    max-width: 28rem;
    width: 100%;
    margin: 0 auto 2.4rem;
  }
  .sixth-content article#message .inner .text-wrapper p {
    font-size: 1.4rem;
  }
  .sixth-content article#message .inner .text-wrapper .ceo-name p {
    text-align: right;
    font-size: 1.6rem;
  }
  .sixth-content article#message .inner .text-wrapper .ceo-name p strong {
    font-size: 4.8rem;
  }
}

/* ================================
  seventh - content
================================ */
.seventh-content {
  padding: 10.8rem 0 8.9rem;
  background: #F8F8F8;
}

.seventh-content h2 {
  text-align: center;
}
.seventh-content h2::before {
  content: "RECRUIT";
}

.seventh-content .tab-container {
  max-width: 105.8rem;
  width: 100%;
  margin: 6.4rem auto 0;
}
.seventh-content .tab-container .tab-list {
  display: flex;
  gap: 3.2rem;
}

.seventh-content .tab-container .tab-list .tab-item {
  width: 33rem;
  padding-bottom: 0.8rem;
  color: #B6B6B6;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5; 
  border-bottom: 1px solid #B6B6B6;
  cursor: pointer;
}
.seventh-content .tab-container .tab-list .tab-item.active {
  color: #013F99;
  border-color: #013F99;
}

.seventh-content .tab-container .tab-content {
  margin-top: 6.4rem;
  padding: 0 14rem;
}

.seventh-content .tab-container .tab-panel {
  display: none;
}
.seventh-content .tab-container .tab-panel.active {
  display: block;
}

.seventh-content .tab-container .summary-item {
  display: flex;
  align-items: start;
  gap: 4rem;
  padding: 2rem 0;
  font-size: 2rem;
  border-bottom: 1px solid #A3A3A3;
}

.seventh-content .tab-container .summary-item p:first-of-type {
  min-width: 11rem;
  color: #013F99;
}

.seventh-content .tab-container .summary-item p a {
  font-weight: 500;
  color: #151F46;
  letter-spacing: 0.425px;
  text-decoration: underline;
}
.seventh-content .tab-container .summary-item p a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .seventh-content {
    padding: 8.3rem 0 6.4rem;
  }
  .seventh-content .tab-container .tab-list {
    gap: 0;
  }
  .seventh-content .tab-container .tab-list .tab-item {
    font-size: 1.6rem;
    font-weight: lighter;
  }
  .seventh-content .tab-container .tab-list .tab-item.active {
    font-weight: bold;
  }
  .seventh-content .tab-container .tab-content {
    padding: 0 3.2rem;
  }
  .seventh-content .tab-container .summary-item {
    font-size: 1.6rem;
  }
  .seventh-content .tab-container .summary-item p:first-of-type {
    min-width: 8rem;
    font-weight: bold;
  }
}

/* ================================
  eighth - content
================================ */
.eighth-content {
  padding: 12.8rem 0;
}

.eighth-content h2 {
  position: relative;
  text-align: center;
  z-index: 1;
}
.eighth-content h2::before {
  content: "ENTRY";
}

.eighth-content .for-entry {
  position: relative;
  max-width: 73.8rem;
  width: 100%;
  margin: 2.4rem auto 0;
  z-index: 1;
}

.eighth-content .for-entry p {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
}
.eighth-content .for-entry p:last-of-type {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
.eighth-content .for-entry p:last-of-type a {
  text-decoration: underline;
}
.eighth-content .for-entry p:last-of-type a:hover {
  text-decoration: none;
}

.eighth-content .img-wrapper {
  margin-bottom: 8rem;
  display: flex;
  gap: 6rem;
  justify-content: center;
}

.eighth-content .img-wrapper a {
  display: flex;
  align-items: center;
  max-width: 20.6rem;
  min-width: 20.6rem;
  width: calc(100% / 2 - 3rem);
}

.eighth-content .form-wrapper {
  position: relative;
  max-width: 93.5rem;
  margin: -5rem auto 0;
  z-index: 0;
}

h2.title.multi-line.sf-text-center {
  display: none;
}

@media screen and (max-width: 768px) {
  .eighth-content {
    padding: 6.4rem 0 4.8rem;
  }
  .eighth-content .for-entry {
    position: relative;
    padding: 0 1.6rem;
  }
  .eighth-content .img-wrapper {
    justify-content: center;
    gap: 3.2rem;
    margin-bottom: 6rem;
  }
  .eighth-content .img-wrapper a {
    min-width: auto;
  }
  .eighth-content .form-wrapper {
    margin: -12.6rem auto 0;
  }
}