/* CSS Document */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

/* all */
h1, h2, h3, h4, h5, p, dt, dd, li, th, td, address, strong, em, table, dl, ul, ol, img,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  padding: 0;
  margin: 0;
  background: transparent;
}

/* font */
h1, h2, h3, h4, h5, p, dt, dd, li, th, td, a, address, strong, em, form, input, textarea, select, submit,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
}

/* indivisual */
a {
  border: none;
  color: inherit;
  word-wrap: break-word;
  text-decoration: underline;
  position: relative;
}
a:hover {
  opacity: 1;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

address, em {
  font-style: normal;
}

ul, ol {
  list-style: none none outside;
}

img {
  display: block;
  border: none;
}

html {
  scroll-behavior: smooth;
}
@media only screen and (min-width: 1000px) {
  html {
    scroll-padding-top: 9.5rem;
  }
}
@media only screen and (max-width: 999px) {
  html {
    scroll-padding-top: 7rem;
  }
}

body {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: justify;
  background-color: #fff;
  position: relative;
}

a {
  text-decoration: none;
}

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

.blurIn {
  transition: 0.75s linear;
  opacity: 0;
  filter: blur(16px);
}
.blurIn.play {
  opacity: 1;
  filter: blur(0);
}

.fadeIn {
  transition: 0.75s linear;
  opacity: 0;
}
.fadeIn.play {
  opacity: 1;
}

.slideUp {
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
  transform: translateY(2rem);
  opacity: 0;
}
.slideUp.play {
  transform: translateY(0);
  opacity: 1;
}

.slideLeft {
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
  opacity: 0;
}
.slideLeft.play {
  transform: translate(0);
  opacity: 1;
}
@media only screen and (min-width: 1000px) {
  .slideLeft {
    transform: translateX(2rem);
  }
}
@media only screen and (max-width: 999px) {
  .slideLeft {
    transform: translateY(2rem);
  }
}

.slideRight {
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
  opacity: 0;
}
.slideRight.play {
  transform: translate(0);
  opacity: 1;
}
@media only screen and (min-width: 1000px) {
  .slideRight {
    transform: translateX(-2rem);
  }
}
@media only screen and (max-width: 999px) {
  .slideRight {
    transform: translateY(2rem);
  }
}

@media only screen and (min-width: 1000px) {
  .slideUp.delay,
  .slideLeft.delay,
  .slideRight.delay {
    transition-delay: 0.125s;
  }
  .slideUp.delay2,
  .slideLeft.delay2,
  .slideRight.delay2 {
    transition-delay: 0.25s;
  }
  .slideUp.delay3,
  .slideLeft.delay3,
  .slideRight.delay3 {
    transition-delay: 0.375s;
  }
  .slideUp.delay4,
  .slideLeft.delay4,
  .slideRight.delay4 {
    transition-delay: 0.5s;
  }
  .slideUp.delay5,
  .slideLeft.delay5,
  .slideRight.delay5 {
    transition-delay: 0.625s;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
header {
  width: 100%;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  border-bottom: 1px solid #BABABA;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 5rem;
  z-index: 10;
}
@media only screen and (max-width: 999px) {
  header {
    height: 5rem;
    padding: 0 2rem;
  }
}
header.show .menu {
  background: #DDD;
}
header.show .menu div {
  background: #000;
}
header.show .menu .bar {
  top: calc(50% - 1px);
  transform: translateX(0.8125rem) rotate(315deg);
}
header.show .menu .bar2 {
  opacity: 0;
}
header.show .menu .bar3 {
  bottom: calc(50% - 1px);
  transform: translateX(0.8125rem) rotate(-315deg);
}
@media only screen and (max-width: 999px) {
  header.show nav {
    opacity: 1;
    visibility: visible;
  }
}
header .h1 {
  width: 13.875rem;
}
@media only screen and (max-width: 999px) {
  header .h1 {
    width: 6.5625rem;
  }
}
header .h1 img {
  width: 100%;
}
header .center {
  font-size: 0.8125rem;
  font-weight: 600;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.3em;
}
@media only screen and (max-width: 999px) {
  header .center {
    position: absolute;
    top: 2.1875rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
header .entry_btn {
  display: block;
  width: 11.625rem;
  height: 2.875rem;
  background: #E8E8E8;
  border-radius: 0.625rem;
  position: relative;
  overflow: hidden;
  transition: 0.375s;
}
@media only screen and (min-width: 1000px) {
  header .entry_btn:hover::before {
    opacity: 1;
  }
  header .entry_btn:hover::after {
    border-color: #FFF;
  }
  header .entry_btn:hover span {
    color: #FFF;
  }
  header .entry_btn::before {
    content: "";
    background: linear-gradient(90deg, #002185 0%, #000C31 100%);
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.375s;
  }
}
@media only screen and (max-width: 999px) {
  header .entry_btn {
    background: linear-gradient(90deg, #002185 0%, #000C31 100%);
  }
}
header .entry_btn::after {
  content: "";
  width: 0.53125rem;
  height: 0.53125rem;
  border-right: 1px solid #002185;
  border-bottom: 1px solid #002185;
  transition: 0.375s;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 999px) {
  header .entry_btn::after {
    border-color: #FFF;
  }
}
header .entry_btn span {
  color: #002185;
  transition: 0.375s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 999px) {
  header .entry_btn span {
    color: #FFF;
  }
}
@media only screen and (max-width: 999px) {
  header > .entry {
    display: none;
  }
}
header .menu {
  display: none;
  cursor: pointer;
  width: 2.8125rem;
  height: 2.8125rem;
  background: #000;
  border-radius: 0.3125rem;
  z-index: 99;
  transition: 0.375s;
  position: relative;
}
@media only screen and (max-width: 999px) {
  header .menu {
    display: block;
  }
}
header .menu div {
  display: block;
  width: 1.3125rem;
  height: 1px;
  transition: 0.25s;
  background: #FFF;
  left: 0;
  right: 0;
  opacity: 1;
  position: absolute;
  transform: translateX(0.8125rem);
}
header .menu .bar {
  top: calc(50% - 5px);
}
header .menu .bar2 {
  top: calc(50% - 1px);
}
header .menu .bar3 {
  bottom: calc(50% - 4px);
}
@media only screen and (min-width: 1000px) {
  header nav {
    width: 18.75rem;
    position: fixed;
    left: 5rem;
    top: 7.5rem;
    transition: 0.375s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 4.5rem 5.9375rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  header nav {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  header nav {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100% - 5rem);
    background: rgba(255, 255, 255, 0.95);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.375s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
@media only screen and (max-width: 999px) {
  header nav ul {
    width: -moz-fit-content;
    width: fit-content;
    margin: 9.375rem auto 0;
  }
}
header nav ul li {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 1.4375rem 0 0;
}
@media only screen and (max-width: 999px) {
  header nav ul li {
    font-size: 1.125rem;
    margin-top: 2.125rem;
  }
  header nav ul li:not(.entry) {
    padding-left: 1.375rem;
  }
  header nav ul li.entry {
    margin-top: 4rem;
  }
}
header nav ul li:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 999px) {
  header nav ul li:first-child {
    display: none;
  }
}
header nav ul li a:not(.entry_btn):hover span {
  font-weight: 700;
  color: #002185;
}
header nav ul li a:not(.entry_btn):hover span::before {
  transform: translateY(-50%) rotate(90deg);
}
header nav ul li a:not(.entry_btn) span {
  padding-left: 0.90625rem;
  position: relative;
}
header nav ul li a:not(.entry_btn) span::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5625rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.375s;
}

footer {
  width: 100%;
  height: 15rem;
  border-top: 1px solid #BABABA;
  background: #fff;
  position: relative;
  z-index: 3;
  margin: 12.5rem 0 0;
}
@media only screen and (max-width: 999px) {
  footer {
    padding: 3rem 0 0;
    margin-top: 4rem;
  }
}
footer .btn {
  display: block;
  width: 16.875rem;
  height: 2.875rem;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  overflow: hidden;
  transition: 0.375s;
}
@media only screen and (min-width: 1000px) {
  footer .btn {
    position: absolute;
    top: 3rem;
    left: 5rem;
  }
}
@media only screen and (max-width: 999px) {
  footer .btn {
    margin: 0 auto;
  }
}
footer .btn::before {
  content: "";
  background: linear-gradient(90deg, #002185 0%, #000C31 100%);
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.375s;
}
footer .btn:hover::before {
  opacity: 1;
}
footer .btn:hover span {
  color: #FFF;
}
footer .btn span {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: 0.375s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .copy {
  font-family: "Oswald", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: right;
  margin: 2.5rem 5rem 0 0;
}
@media only screen and (max-width: 999px) {
  footer .copy {
    font-size: 0.8125rem;
    text-align: center;
    margin: 3rem 0 0;
  }
}

#index::after {
  content: "";
  display: block;
  width: 23.75rem;
  height: 100vh;
  border-right: 1px solid #BABABA;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1220px) {
  #index::after {
    display: none;
  }
}
#index .fixBar {
  display: flex;
  align-items: center;
  width: 5rem;
  height: calc(100vh - 7.5rem);
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-right: 0.5px solid #BABABA;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  color: #FFF;
  writing-mode: vertical-rl;
  position: fixed;
  top: 7.5rem;
  left: 0;
  padding: 2.9375rem 0 0;
  z-index: 2;
}
@media only screen and (max-width: 999px) {
  #index .fixBar {
    display: none;
  }
}
#index .contents {
  padding: 7.5rem 0 0;
}
#index .contents #fv {
  margin: 8rem 0 0;
}
@media only screen and (max-width: 999px) {
  #index .contents #fv {
    margin-top: 5.375rem;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #fv .lead {
    width: calc(100% - max(23.75rem, (100% - 52.5rem) / 2));
    max-width: 57.5rem;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.625rem;
    padding-right: 5rem;
    margin: 0 0 0 max(23.75rem, (100% - 52.5rem) / 2);
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #fv .lead {
    width: calc(100% - 14rem);
    margin: 0 auto;
    padding-right: 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #fv .lead {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
}
#index .contents #fv .lead span {
  font-size: 1.25rem;
  font-weight: 500;
  color: #002185;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 1000px) {
  #index .contents #fv .lead span {
    transform: translateY(1.5625rem);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #fv .lead span {
    display: block;
    margin: 2rem 0 0;
  }
}
#index .contents #fv .mainImage {
  margin: 8.4375rem 0 0;
  padding: 0 5rem;
}
@media only screen and (max-width: 999px) {
  #index .contents #fv .mainImage {
    margin-top: 2.4375rem;
    padding: 0 2rem 0 0;
  }
}
#index .contents #fv .mainImage img {
  width: 100%;
  border-radius: 0 1.875rem 1.875rem 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #about {
    max-width: 57.5rem;
    margin: 5rem 0 0 max(28.75rem, (100% - 53.75rem) / 2);
    padding-right: 5rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #about {
    max-width: 52.5rem;
    width: calc(100% - 14rem);
    margin: 5rem 0 0 10rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #about {
    width: calc(100% - 4rem);
    margin: 3rem auto 0;
  }
}
#index .contents #about h2 {
  font-size: 0.75rem;
  font-weight: 300;
  color: #002185;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#index .contents #about .lead {
  font-size: 2.5rem;
  font-weight: 600;
  color: #002185;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin: calc(2.75rem - 0.4em) 0 -0.4em;
}
#index .contents #about p:not(.lead) {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.15em;
  margin: calc(4rem - 0.5em) 0 -0.5em;
}
#index .contents .swiper {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin: 8rem 0 0;
}
@media only screen and (max-width: 999px) {
  #index .contents .swiper {
    margin-top: 3rem;
  }
}
#index .contents .swiper .swiper-wrapper {
  display: flex;
  flex-shrink: 0;
  animation: scroll-left 80s linear infinite;
}
#index .contents .swiper .swiper-wrapper .swiper-slide {
  width: 35.6875vw;
  flex-shrink: 0;
  margin: 0 1vw;
}
@media only screen and (max-width: 999px) {
  #index .contents .swiper .swiper-wrapper .swiper-slide {
    width: 66.796875vw;
    margin: 0 1.953125vw;
  }
}
#index .contents .swiper .swiper-wrapper .swiper-slide img {
  border-radius: 0.9375rem;
}
#index .contents #vision {
  border-bottom: 1px solid #BABABA;
  overflow: hidden;
}
@media only screen and (max-width: 1220px) {
  #index .contents #vision {
    border-bottom: none;
  }
}
#index .contents #vision .box {
  color: #FFF;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  border-radius: 2.8125rem;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .box {
    max-width: 56.25rem;
    margin: 6.25rem 0 0 max(28.75rem, (100% - 53.75rem) / 2);
    padding: 6.0625rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1360px) {
  #index .contents #vision .box {
    border-radius: 2.8125rem 0 0 2.8125rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #vision .box {
    width: calc(100% - 14rem);
    border-radius: 2.8125rem;
    margin: 6.25rem 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .box {
    margin: 8rem 0 0;
    padding: 4rem 2rem;
  }
}
#index .contents #vision .box h2 {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
#index .contents #vision .box .lead {
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.15em;
  margin: calc(2rem - 0.4em) 0 -0.4em;
}
#index .contents #vision .box img {
  width: 27.5rem;
  margin: 3.1875rem auto 0;
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .box img {
    width: 100%;
  }
}
#index .contents #vision .box p:not(.lead) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.15em;
  margin: calc(3rem - 0.75em) auto -0.75em;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .box p:not(.lead) {
    max-width: 31.25rem;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list {
    margin: 5rem 0 0 max(28.75rem, (100% - 53.75rem) / 2);
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #vision .list {
    margin: 5rem 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .list {
    margin: 5rem 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li {
    overflow: hidden;
    border-top: 1px solid #BABABA;
    border-left: 1px solid #BABABA;
    border-bottom: 1px solid #BABABA;
    border-radius: 1.25rem 0 0 1.25rem;
    margin: 5rem 0 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .list li {
    margin: 4rem 0 0;
  }
}
#index .contents #vision .list li:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li .item {
    display: flex;
  }
}
#index .contents #vision .list li .item .title {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  color: #FFF;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li .item .title {
    width: 13.4375rem;
    flex-shrink: 0;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .list li .item .title {
    width: 22.9375rem;
    gap: 2rem;
    border-radius: 0 1.25rem 0 0;
    padding: 1.375rem 1.375rem 1.375rem 2rem;
  }
}
#index .contents #vision .list li .item .title .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15em;
  margin: -0.5em 0;
}
#index .contents #vision .list li .item .title h3 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li .item .title h3 {
    margin: 3rem 0 0;
  }
}
#index .contents #vision .list li .item .title img {
  width: auto;
  height: 1.25rem;
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li .item .title img {
    margin: 3rem 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #vision .list li .item .body {
    max-width: 46.875rem;
    padding: 5rem 4.0625rem 5rem 4.0625rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #vision .list li .item .body {
    width: calc(100% - 2rem);
    border-top: 1px solid #BABABA;
    border-left: 1px solid #BABABA;
    border-bottom: 1px solid #BABABA;
    border-radius: 0 0 0 1.25rem;
    padding: 4rem 2rem;
    margin: 0 0 0 auto;
  }
}
#index .contents #vision .list li .item .body .lead {
  font-size: 1.25rem;
  color: #002185;
  font-weight: 700;
  line-height: 2;
  margin: -0.5em 0;
}
#index .contents #vision .list li .item .body p:not(.lead) {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin: calc(2.75rem - 0.5em) 0 -0.5em;
}
#index .contents #point {
  border-radius: 1.875rem 0 0 1.875rem;
  background: linear-gradient(90deg, #002185 0%, #000C31 100%);
  color: #FFF;
}
@media only screen and (min-width: 1000px) {
  #index .contents #point {
    margin: 12.5rem 0 0 max(23.75rem, (100% - 52.5rem) / 2);
    padding: 5.9375rem 5rem 8rem 5rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #point {
    margin: 12.5rem 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #point {
    margin: 8rem 0 0;
    padding: 3.25rem 2rem;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #point .title {
    display: flex;
    gap: 5rem;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #point .title h2.left {
    text-align: center;
  }
}
#index .contents #point .title h2.left .en {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: -0.25em 0;
}
#index .contents #point .title h2.left .jp {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin: 2rem 0 0;
}
#index .contents #point .title .right {
  letter-spacing: 0.15em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
}
@media only screen and (max-width: 999px) {
  #index .contents #point .title .right {
    margin: calc(2rem - 0.5em) 0 -0.5em;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #point .list {
    max-width: 66.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 4rem;
    margin: 5rem 0 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #point .list {
    margin: 4rem 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #point .list li {
    width: calc((100% - 4rem) / 2);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #point .list li {
    margin: 6rem 0 0;
  }
  #index .contents #point .list li:first-child {
    margin-top: 0;
  }
}
#index .contents #point .list li img {
  width: 100%;
  border-radius: 0.9375rem;
}
#index .contents #point .list li h3 {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin: calc(2rem - 0.25em) 0 -0.25em;
}
#index .contents #point .list li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: calc(2rem - 0.4em) 0 -0.4em;
}
#index .contents #career {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career {
    padding: max(17.4375rem, 17.4375vw) 0 0;
    scroll-margin-top: calc(min(-17.4375rem, -17.4375vw) - 17.3125vw);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career {
    padding: 6rem 0 8rem;
    scroll-margin-top: -26.875rem;
  }
  #index .contents #career::before {
    content: "";
    display: block;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 33, 133, 0.05) 0%, rgba(0, 12, 49, 0.05) 100%);
    position: absolute;
    top: -4rem;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
}
#index .contents #career .swiper {
  width: 100%;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .swiper {
    position: absolute;
    top: 0;
    left: 0;
    margin: max(8rem, 8vw) 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner {
    background: linear-gradient(90deg, rgba(0, 33, 133, 0.05) 0%, rgba(0, 12, 49, 0.05) 100%);
    border-radius: 1.875rem 0 0 0;
    margin: 0 0 0 max(23.75rem, (100% - 52.5rem) / 2);
    padding: 17.3125vw 5rem 8rem 5rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #career .inner {
    margin: 0 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner {
    margin: 8rem 0 0;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner h2 {
    text-align: center;
  }
}
#index .contents #career .inner h2 .en {
  display: block;
  font-size: 0.75rem;
  color: #002185;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: -0.25em 0;
}
#index .contents #career .inner h2 .jp {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin: 2rem 0 0;
}
#index .contents #career .inner .flex {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin: 3rem 0 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex {
    max-width: 56.25rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex {
    gap: 2rem;
    margin-top: 2.5rem;
  }
}
#index .contents #career .inner .flex .left {
  position: sticky;
  flex-shrink: 0;
  background: #FFF;
}
#index .contents #career .inner .flex .left:not([data-current]) li:first-child::after {
  background: #002185;
}
#index .contents #career .inner .flex .left[data-current=assistant] li:nth-child(1)::after {
  background: #002185;
}
#index .contents #career .inner .flex .left[data-current=staff] li:nth-child(2)::after {
  background: #002185;
}
#index .contents #career .inner .flex .left[data-current=manager] li:nth-child(3)::after {
  background: #002185;
}
#index .contents #career .inner .flex .left[data-current=partner] li:nth-child(4)::after {
  background: #002185;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex .left {
    top: 9.5rem;
    width: 11.25rem;
    border-radius: 0.9375rem;
    padding: 2.25rem 0 2.5625rem 2.4375rem;
  }
  #index .contents #career .inner .flex .left::before {
    content: "";
    display: block;
    width: 0.25rem;
    height: calc(100% - 0.4375rem);
    background: #002185;
    position: absolute;
    top: 0;
    right: -1.1875rem;
    transform: translateX(100%);
  }
  #index .contents #career .inner .flex .left::after {
    content: "";
    display: block;
    width: 0.875rem;
    height: 0.75rem;
    background: #002185;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    position: absolute;
    bottom: 0;
    right: -0.875rem;
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1330px) {
  #index .contents #career .inner .flex .left {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .left {
    top: 7rem;
    width: 2.9375rem;
    border-radius: 0.46875rem;
    padding: 1rem 1rem 2rem;
  }
}
#index .contents #career .inner .flex .left li {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex .left li {
    padding: 0 0 2.8125rem 1.5625rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .left li {
    width: 0.9375rem;
    padding: 0 0 3rem;
  }
}
#index .contents #career .inner .flex .left li::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #002185;
  position: absolute;
  top: 0;
  left: 0;
}
#index .contents #career .inner .flex .left li::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 100%;
  background: #002185;
  position: absolute;
  top: 0;
  left: 0.4375rem;
}
#index .contents #career .inner .flex .left li:last-child {
  padding-bottom: 0;
}
#index .contents #career .inner .flex .left li:last-child::before {
  display: none;
}
#index .contents #career .inner .flex .left li span {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .left li span {
    display: none;
  }
}
#index .contents #career .inner .flex .right > li {
  margin: 5rem 0 0;
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .right > li {
    margin-top: 4rem;
  }
}
#index .contents #career .inner .flex .right > li:first-child {
  margin-top: 0;
}
#index .contents #career .inner .flex .right > li .item {
  border-radius: 0.9375rem;
  overflow: hidden;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex .right > li .item {
    display: flex;
    min-height: 20.4375rem;
  }
}
#index .contents #career .inner .flex .right > li .item .txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #FFF;
  padding: 3rem;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex .right > li .item .txt {
    width: calc(100% - 17.625rem);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .right > li .item .txt {
    padding: 2.875rem;
  }
}
#index .contents #career .inner .flex .right > li .item .txt h3 {
  font-size: 1.5rem;
  font-weight: 500;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index .contents #career .inner .flex .right > li .item .txt span {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin: calc(2rem - 0.4em) 0 -0.4em;
}
#index .contents #career .inner .flex .right > li .item .txt p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  margin: calc(2rem - 0.5em) 0 -0.5em;
}
#index .contents #career .inner .flex .right > li .item .list {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #002185 0%, #000C31 100%);
  color: #FFF;
  overflow: hidden;
}
@media only screen and (min-width: 1000px) {
  #index .contents #career .inner .flex .right > li .item .list {
    width: 17.625rem;
    padding: 2.375rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .right > li .item .list {
    padding: 3rem;
  }
}
#index .contents #career .inner .flex .right > li .item .list ul {
  width: 100%;
}
@media only screen and (max-width: 999px) {
  #index .contents #career .inner .flex .right > li .item .list ul {
    width: 13.125rem;
    margin: 0 auto;
  }
}
#index .contents #career .inner .flex .right > li .item .list ul li {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #BABABA;
  position: relative;
  padding: 1.375rem 0 1.375rem 2rem;
}
#index .contents #career .inner .flex .right > li .item .list ul li::before {
  content: "";
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#index .contents #career .inner .flex .right > li .item .list ul li::after {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.375rem;
  border-left: 2px solid #002185;
  border-bottom: 2px solid #002185;
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: 0.28125rem;
  transform: translateY(-50%) rotate(-45deg);
}
#index .contents #career .inner .flex .right > li .item .list ul li:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice {
    margin: 12.5rem 0 0 max(28.75rem, (100% - 42.5rem) / 2);
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #voice {
    margin: 12.5rem 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice {
    width: calc(100% - 4rem);
    margin: 8rem auto 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice h2 {
    text-align: center;
  }
}
#index .contents #voice h2 .en {
  display: block;
  font-size: 0.75rem;
  color: #002185;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: -0.25em 0;
}
#index .contents #voice h2 .jp {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin: 2rem 0 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices {
    max-width: 61.25rem;
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices {
    margin: 4.1875rem 0 0;
  }
}
#index .contents #voice .voices .list > li {
  margin: 5rem 0 0;
}
#index .contents #voice .voices .list > li:first-child {
  margin-top: 0;
}
#index .contents #voice .voices .list > li.open .profile .name .btn button::after {
  content: "";
  transform: translate(-50%, -50%) rotate(90deg);
}
#index .contents #voice .voices .list > li:not(.open) .accordion_contents {
  height: 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .profile {
    display: flex;
    gap: 2rem;
    margin: 2.625rem 0 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .profile .img {
    width: min(32rem, 36.5714285714vw);
  }
}
#index .contents #voice .voices .list > li .profile .img img {
  width: 100%;
  border-radius: 0.9375rem;
}
#index .contents #voice .voices .list > li .profile .name {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .profile .name {
    width: calc(100% - min(32rem, 36.5714285714vw));
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .profile .name {
    margin: 2rem 0 0;
  }
}
#index .contents #voice .voices .list > li .profile .name h3 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #002185;
  letter-spacing: 0.2em;
  margin: -0.4em 0;
}
#index .contents #voice .voices .list > li .profile .name p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #4D4D4D;
  letter-spacing: 0.1em;
  margin: calc(2rem - 0.5em) 0 -0.5em;
}
#index .contents #voice .voices .list > li .profile .name .btn {
  width: 100%;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .profile .name .btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .profile .name .btn {
    position: relative;
    margin: 2rem 0 0;
  }
}
#index .contents #voice .voices .list > li .profile .name .btn::before {
  content: "";
  display: block;
  height: 1px;
  background: #120062;
  position: absolute;
  top: 50%;
  left: 0;
  right: 4.125rem;
  transform: translateY(-50%);
}
#index .contents #voice .voices .list > li .profile .name .btn button {
  display: block;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  background: #E4E9F6;
  border-radius: 50%;
  border: none;
  outline: none;
  position: relative;
  margin: 0 0 0 auto;
}
#index .contents #voice .voices .list > li .profile .name .btn button::before {
  content: "";
  display: block;
  width: 1.4375rem;
  height: 0.1875rem;
  background: #002185;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#index .contents #voice .voices .list > li .profile .name .btn button::after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 1.4375rem;
  background: #002185;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.375s;
}
#index .contents #voice .voices .list > li .accordion_contents {
  overflow: hidden;
  transition: height 0.375s;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews {
  position: relative;
  margin: 3rem 0 0;
  padding-left: 3rem;
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews {
    padding-top: 2rem;
    padding-left: 2rem;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews::before {
  content: "";
  display: block;
  width: 0.1875rem;
  border-radius: 0.09375rem;
  height: 100%;
  background: #002185;
  position: absolute;
  top: 0;
  left: 0;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview {
  margin: 5.4375rem 0 0;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview:first-child {
  margin-top: 0;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dt {
  position: relative;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #BABABA;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  z-index: -2;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dt span {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #002185 0%, #000C31 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-left: 3rem;
  padding-right: 1rem;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dt span::after {
  content: "";
  display: block;
  inset: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dt span::before {
  content: "";
  display: block;
  width: 2.1875rem;
  height: 2rem;
  background: url(../img/bubble.svg) top center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd {
  position: relative;
  overflow: hidden;
  margin: 2rem 0 0;
  padding-left: 3.3125rem;
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd {
    padding-left: 3.125rem;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  border-radius: 1px;
  overflow: hidden;
  background-image: repeating-linear-gradient(180deg, #002185, #002185 6px, transparent 6px, transparent 8px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
  position: absolute;
  top: 0;
  left: 1.125rem;
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd::before {
    left: 1rem;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin: -0.5em 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd p {
    padding-right: 3rem;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule::after {
  content: "";
  display: block;
  background: #120062;
  position: absolute;
  z-index: -1;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule::after {
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 6.25rem;
    transform: translateY(50%);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule::after {
    width: 3px;
    height: 100%;
    top: 0;
    right: 9.125rem;
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li {
    width: 4rem;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li {
    display: flex;
    gap: 0.625rem;
    align-items: center;
    margin: 3rem 0 0;
  }
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li:first-child {
    margin-top: 0;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li span {
    text-align: center;
    width: 4.0625rem;
    flex-shrink: 0;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #120062;
  border-radius: 0.625rem;
  background: #FFF;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 1000px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li div {
    width: 100%;
    height: 12.5rem;
    writing-mode: vertical-rl;
    margin: 1rem 0 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li div {
    width: calc(100% - 4.375rem);
    height: 4rem;
  }
}
#index .contents #voice .voices .list > li .accordion_contents .interviews .interview .dd .schedule li div.blue {
  background: #120062;
  color: #FFF;
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment {
    margin: 15.625rem 0 0 max(28.75rem, (100% - 42.5rem) / 2);
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1220px) {
  #index .contents #recruitment {
    margin: 15.625rem 0 0 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment {
    width: calc(100% - 4rem);
    margin: 8rem auto 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment h2 {
    text-align: center;
  }
}
#index .contents #recruitment h2 .en {
  display: block;
  font-size: 0.75rem;
  color: #002185;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: -0.25em 0;
}
#index .contents #recruitment h2 .jp {
  display: block;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin: 2rem 0 0;
}
#index .contents #recruitment .inner {
  border-radius: 0.9375rem;
  background: rgba(18, 0, 98, 0.03);
  margin: 4rem 0 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .inner {
    max-width: 56.25rem;
    padding: 6rem 5.625rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
  #index .contents #recruitment .inner {
    width: calc(100% - 5rem);
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .inner {
    padding: 6.25rem 2.8125rem;
  }
}
#index .contents #recruitment .inner table {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .inner table {
    border-top: 1px solid #120062;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .inner table tr:first-child th, #index .contents #recruitment .inner table tr:first-child td {
    padding-top: 0;
  }
}
#index .contents #recruitment .inner table tr:last-child th, #index .contents #recruitment .inner table tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}
#index .contents #recruitment .inner table th, #index .contents #recruitment .inner table td {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.2;
  font-weight: 500;
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .inner table th, #index .contents #recruitment .inner table td {
    border-bottom: 1px solid #120062;
    vertical-align: top;
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .inner table th, #index .contents #recruitment .inner table td {
    display: block;
    margin: -0.6em 0;
  }
}
#index .contents #recruitment .inner table th a, #index .contents #recruitment .inner table td a {
  text-decoration: underline;
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .inner table th {
    min-width: 10rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .inner table th {
    font-size: 0.8125rem;
    color: #4D4D4D;
    padding: 2rem 0 0;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .inner table td {
    border-bottom: 1px solid #120062;
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .entry {
    max-width: 56.25rem;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
  #index .contents #recruitment .entry {
    width: calc(100% - 5rem);
  }
}
#index .contents #recruitment .entry .btn {
  display: block;
  background: linear-gradient(90deg, #002185 0%, #000C31 100%);
  position: relative;
  margin: 8rem auto 0;
}
@media only screen and (min-width: 1000px) {
  #index .contents #recruitment .entry .btn {
    width: 41.6875rem;
    height: 6.5rem;
    border-radius: 0.9375rem;
  }
}
@media only screen and (max-width: 999px) {
  #index .contents #recruitment .entry .btn {
    width: 100%;
    height: 6.5rem;
    border-radius: 0.3125rem;
    margin-top: 5rem;
  }
}
#index .contents #recruitment .entry .btn:hover::after {
  transform: translate(0.25rem, -50%) rotate(-45deg);
}
#index .contents #recruitment .entry .btn::after {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transition: 0.375s;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(-45deg);
}
#index .contents #recruitment .entry .btn span {
  color: #FFF;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1000px) {
  .pcNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 16px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  img {
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 999px) {
  .spNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 3.125vw;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  img {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}/*# sourceMappingURL=layout.css.map */