@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 1130px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  color: hsl(0, 0%, 0%);
}

.u-mobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none !important;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 500px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/*#################################
headerのhtml
#################################*/
.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .layout-header {
    position: static;
  }
}

.header {
  height: 6.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
  }
}

.header__inner {
  padding-left: 1.25rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 0.375rem;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 900;
    top: 0;
    right: 0;
    left: 0;
    height: 3.125rem;
  }
}

.header__logo {
  position: relative;
  z-index: 900;
  max-width: 11.0625rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 6.875rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 900;
}

.header__logo p {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translate(100%, -50%);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #536fb9;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .header__logo p {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
    right: -0.625rem;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 900;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__nav-buttons {
    margin-top: 3.125rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    transition: all 0.5s;
  }
}

@media screen and (max-width: 768px) {
  .header__nav-buttons.item2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header__nav-buttons.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-buttons.sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .header__nav-buttons--sp-drawer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all 0.5s;
  }
}

.header__nav-button a, .header__nav-button p {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.header__nav-button.entry-btn p {
  padding: 0.5rem 1.125rem;
}

.header__nav-button {
  position: relative;
}

.header__nav-button-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%) scaleY(0);
  transition: all 0.3s;
  transform-origin: top;
  height: auto;
  z-index: 100;
}

.header__nav-button:hover .header__nav-button-modal {
  transform: translateY(100%) scaleY(1);
  transition: all 0.3s;
  transform-origin: top;
}

.entry-btn .header__nav-button-modal {
  width: 6.6875rem;
}
@media screen and (max-width: 768px) {
  .entry-btn .header__nav-button-modal {
    width: 100%;
  }
}

.mypage-btn .header__nav-button-modal {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .mypage-btn .header__nav-button-modal {
    width: 100%;
  }
}

.header__nav-button-modal-item {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header__nav-button-modal-item > a {
    border-top: 1px solid #ffffff;
  }
}

.entry-btn .header__nav-button-modal-item > a {
  padding: 0.5rem 0.75rem;
  display: block;
  width: 100%;
  text-align: center;
}

.mypage-btn .header__nav-button-modal-item > a {
  padding: 0.5rem 0.75rem;
  display: block;
  width: 100%;
  text-align: center;
}

.drawer-pc__buttons {
  position: fixed;
  bottom: 1.6875rem;
  right: 1.625rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .drawer-pc__buttons {
    display: none;
  }
}

.drawer-pc__button {
  text-align: center;
}

.drawer-pc__button a {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: inline-block;
  min-width: 7.8125rem;
}

.entry-btn, .entry-btn .header__nav-button-modal-item > a {
  background-color: #536fb9;
  transition: all 0.3s;
}

.entry-btn:hover, .entry-btn .header__nav-button-modal-item > a:hover {
  background-color: #539eb9;
  transition: all 0.3s;
}

.mypage-btn, .mypage-btn .header__nav-button-modal-item > a {
  background-color: #00cafa;
  transition: all 0.3s;
}

.mypage-btn:hover, .header__nav-button-modal-item > a:hover {
  background-color: #00f2fa;
  transition: all 0.3s;
}

.internship-btn {
  background-color: #00b498;
  transition: all 0.3s;
}

.internship-btn:hover {
  background-color: #00b41e;
  transition: all 0.3s;
}

.header__nav-hamburger-area {
  height: 2.1875rem;
  width: 3.8125rem;
}

.header__hamburger.header__hamburger--nav {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.header__nav-items {
  display: flex;
  padding-right: 1.0625rem;
}

.header__nav-item,
.header__nav-modal-wrap {
  padding: 1.375rem 0.6875rem;
  cursor: pointer;
}

.header__nav-modal-wrap {
  position: relative;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-modal-wrap > p {
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.header__nav-modal {
  padding: 1.3125rem 1.125rem 1rem 1.1875rem;
  position: absolute;
  top: 3.125rem;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  min-width: 6.3125rem;
  background-color: #536fb9;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.header__nav-modal-wrap:last-of-type .header__nav-modal {
  left: 10%;
}

.header__nav-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0.643125rem;
  height: 0.6875rem;
  display: inline-block;
  background-image: url(../images/common/drawer-triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.643125rem 0.6875rem;
}

.header__nav-modal-wrap:last-of-type .header__nav-modal::before {
  left: 70%;
}

.header__nav-modal-wrap:hover > .header__nav-modal {
  transform: translateX(-50%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

.header__nav-modal-item a {
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}
.header__nav-modal-item a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transition: all 0.3s;
}

.header__nav-modal-item a:hover::after {
  transform: scaleX(1);
  transition: all 0.3s;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0 3.125rem;
  position: relative;
  position: relative;
  color: #fff;
  text-align: center;
  background-color: #234f5e;
}

.header__nav-item.header__nav-item--contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__nav-item.header__nav-item--contact a::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

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

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4rem;
  height: inherit;
  background-color: #051534;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    width: 3.125rem;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .header__hamburger span {
    width: 1.7825rem;
  }
}

.header__hamburger span:nth-of-type(1) {
  top: -0.125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0.125rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  top: -0.0625rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding-top: 11.03125rem;
  padding-bottom: 6.875rem;
  display: none;
  position: absolute;
  z-index: 899;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/common/drawer-bgi.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    opacity: 0;
    visibility: hidden;
    background-image: url(../images/common/drawer-bgi_sp.jpg);
    transition: 0.5s;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header__drawer.is-open {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }
}

.header__drawer-items {
  margin: 0 1.71875rem;
}

.header__drawer-items > li + li {
  margin-top: 0.9375rem;
}

.header__drawer-nav-pc {
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: flex-start;
}

.drawer-pc__title {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #536fb9;
}

.drawer-pc__list-wrapper--first {
  margin-top: 1.875rem;
}

.drawer-pc__lists {
  margin-top: 1.0625rem;
}

.drawer-pc__list a {
  padding: 0.1875rem 0rem;
  display: inline-block;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
  position: relative;
}
.drawer-pc__list a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  left: 0;
  bottom: 0.3125rem;
  background-color: #051540;
  transform: scaleX(0);
  transition: all 0.3s;
}

.drawer-pc__list a:hover::after {
  transform: scaleX(1);
  transition: all 0.3s;
}

.drawer-pc__column + .drawer-pc__column {
  margin-top: 4.75rem;
}

.drawer-pc__list-wrapper + .drawer-pc__list-wrapper {
  margin-top: 3.0625rem;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item.header__drawer-item--contact {
  margin-top: 2.5rem;
  margin-left: 2rem;
  border-bottom: none;
}

.header__drawer-item > a,
.header__drawer-accordion-title {
  padding: 0.21875rem 0.875rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #536fb9;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  position: relative;
}

.header__drawer-item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translate(0%, -50%);
  width: 0.46875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(../images/common/drawer-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.46875rem 0.75rem;
}

.header__drawer-accordion-title::before,
.header__drawer-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.75rem;
  height: 0.125rem;
  display: block;
  background: #536fb9;
  transition: 0.3s;
}

.header__drawer-accordion-title::before {
  transform: translateY(-50%);
}

.header__drawer-accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.header__drawer-accordion-title.is-open::after {
  transform: translateY(-50%);
}

.header__drawer-accordion-items {
  padding-bottom: 0.625rem;
  display: none;
}

.header__drawer-accordion-items a {
  padding: 0.3125rem 0.75rem;
  display: block;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
}

/*#################################
footer
#################################*/
.footer {
  background-color: #536fb9;
  padding-top: 8.0625rem;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 3.125rem;
    padding-bottom: 1.71875rem;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 2.8125rem;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo a {
    width: 14.21rem;
  }
}

.footer__logo p {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.footer__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__link {
    justify-content: center;
    flex-direction: column;
    gap: initial;
  }
}

.footer__link a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__link a {
    padding: 0.5625rem 0rem;
    width: 100%;
  }
}

.footer__link a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.footer__link-sns {
  display: contents;
}
@media screen and (max-width: 768px) {
  .footer__link-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.footer__link .twitter, .footer__link .youtube {
  width: 1.5625rem;
}

.footer__link .twitter, .footer__link .instagram {
  width: 1.5rem;
}

.footer__copy {
  padding-top: 5.125rem;
  text-align: right;
  padding-right: 2.375rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding-top: 4.0625rem;
    padding-right: initial;
    text-align: center;
  }
}

.footer__copy small {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 500;
}

/*#################################
FV
#################################*/
.sub-fv {
  margin-top: 6.25rem;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sub-fv {
    margin-top: 2.125rem;
    height: 14.8125rem;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    display: flex;
    flex-direction: column-reverse;
    overflow: initial;
    height: inherit;
  }
}

.fv__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    height: inherit;
  }
}

.fv__common {
  padding-top: 3.4375rem;
  width: 59.375vw;
  height: 20.9375rem;
  margin-left: calc(50% - 50vw);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .fv__common {
    clip-path: polygon(1.5625rem 0%, 100% 0%, calc(100% - 1.5625rem) 100%, 0% 100%);
    padding-top: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 8.625rem;
  }
}

.fv__common img {
  height: 100%;
  aspect-ratio: 760/280;
  object-fit: cover;
}

.fv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 54.6875vw;
  height: 17.5rem;
  margin-right: calc(50% - 50vw);
  clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv__img {
    clip-path: polygon(1.5625rem 0%, 100% 0%, calc(100% - 1.5625rem) 100%, 0% 100%);
    top: initial;
    bottom: 0;
    max-width: 90%;
    margin-left: auto;
    width: 100%;
    height: 8.625rem;
    z-index: 3;
  }
}

.fv__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 700/280;
  object-position: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fv__img img {
    aspect-ratio: 320/138;
  }
}

.fv__title {
  font-size: 2.1875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #ffffff;
  position: absolute;
  top: 11rem;
  left: 0rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
    top: 2.125rem;
    left: 2.875rem;
    padding-left: initial;
    z-index: 2;
  }
}

.fv__title--2line {
  top: 9rem;
}
@media screen and (max-width: 768px) {
  .fv__title--2line {
    top: 2.125rem;
  }
}

/* sec-title */
.sec-title {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: left;
  color: #051540;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 1.125rem;
    line-height: 2.3333333333;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sec-title-center {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
  color: #051540;
}
@media screen and (max-width: 768px) {
  .sec-title-center {
    font-size: 1.125rem;
    line-height: 2.3333333333;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

/* sec-lead */
.sec-lead {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sec-lead {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.sec-pala-heading {
  text-align: left;
}

.sec-pala-heading span {
  display: inline-block;
  padding: 0.25rem 1.375rem 0.25rem 1rem;
  min-width: 12.75rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #ffffff;
  background-color: #051540;
  clip-path: polygon(0.625rem 0, 100% 0%, calc(100% - 0.625rem) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .sec-pala-heading span {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.1875rem 0.9375rem;
    min-width: 9.375rem;
  }
}

/* btn */
.para-btn {
  text-align: center;
  clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  background-color: #051540;
  max-width: 33.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .para-btn {
    max-width: 20.375rem;
  }
}

.para-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  width: 0.6875rem;
  height: 0.6875rem;
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.para-btn:hover::after {
  transform: translate(5px, -50%) rotate(45deg);
  transition: 0.3s;
}

.para-btn:hover {
  transition: 0.3s;
  opacity: 0.8;
}

.para-btn a {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 2.25;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 1.5625rem 0.5rem 1.5625rem 0rem;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .para-btn a {
    font-size: 1rem;
    line-height: 1.5625;
    letter-spacing: 0.02em;
    font-weight: 500;
    padding-right: 0;
    padding: 0.96875rem;
  }
}

/*#################################
footer上のctaボタン
#################################*/
.sub-sec-bottom a {
  display: block;
  background-image: url(../images/common/bottom-bgi.jpg);
  background-size: 110%;
  background-position: 0% center;
  background-repeat: no-repeat;
  transition: all 0.3s;
  background-color: #e9f7fc;
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom a {
    padding: 0;
    background-image: none;
    background-color: transparent;
    margin-bottom: 3.475rem;
  }
}

.sub-sec-bottom__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom__inner {
    flex-direction: column;
  }
}

.sub-sec-bottom__title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 1;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom__title {
    padding-top: initial;
    background-position: 14%;
    background-image: url(../images/common/bottom-bgi_sp.jpg);
    background-color: transparent;
    background-size: cover;
    background-position: center;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 2.25rem 1.5625rem 7.4375rem;
  }
}

.sub-sec-bottom__title::before {
  content: attr(data-en);
  display: block;
  width: 100%;
  text-transform: uppercase;
  color: hsl(0, 0%, 0%);
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0em;
  font-weight: 900;
  font-style: italic;
  white-space: nowrap;
}

.sub-sec-bottom__image {
  width: 33.75rem;
  flex-shrink: 0;
  height: 17.5rem;
  position: relative;
  transform: translateY(-3.75rem);
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom__image {
    width: 100%;
    transform: initial;
    height: auto;
    margin-top: -4.445rem;
  }
}

.sub-sec-bottom__image img {
  transition: all 0.3s;
}

.sub-sec-bottom:hover .sub-sec-bottom__image img {
  transform: skew(12deg);
  transition: all 0.3s;
}

.sub-sec-bottom:hover a {
  transition: all 0.3s;
  background-position: -10% center;
}

.system-items {
  padding: 1.25rem;
  background: rgb(66, 174, 253);
  background: linear-gradient(126deg, rgb(66, 174, 253) 0%, rgb(83, 111, 185) 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: -1.625rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .system-items {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: initial;
    margin-top: 0.625rem;
    padding: 0.625rem;
    gap: 0.625rem;
  }
}

.system-item {
  background-color: #ffffff;
  padding: 2.25rem 1.6875rem 1.4375rem;
}
@media screen and (max-width: 768px) {
  .system-item {
    padding: 0.9375rem;
  }
}

.system-item__title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
}

.system-item__title span {
  display: inline-block;
  position: relative;
}
.system-item__title span::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  width: 3.9375rem;
  height: 0.0625rem;
  background-color: #051540;
  transform: translate(-50%, 0);
  display: inline-block;
}

.system-item__text {
  margin-top: 2.1875rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .system-item__text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1.25rem;
  }
}

.sub-worklife-card + .sub-worklife-card {
  margin-top: 1.25rem;
}

.sub-worklife-card {
  background: rgb(66, 174, 253);
  background: linear-gradient(126deg, #E9F7FC 0%, #D6E7FE 100%);
  display: flex;
  align-items: center;
  gap: 4.875rem;
  padding: 1.25rem 1.125rem 1.25rem 4.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-card {
    flex-direction: column;
    padding: 1.5625rem 0.9375rem;
    gap: 1.5625rem;
  }
}

.sub-worklife-card__contents {
  flex: 1;
}

.sub-worklife-card__title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-worklife-card__title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.sub-worklife-card__text {
  margin-top: 0.8125rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-worklife-card__text {
    font-size: 0.875rem;
  }
}

.sub-worklife-card__image {
  width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-card__image {
    width: 100%;
  }
}
.sub-worklife-card__image img {
  aspect-ratio: 300/220;
  object-fit: cover;
}

/*#################################
404
#################################*/
.page-404 {
  padding-top: 15.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-404 {
    padding-top: 3.125rem;
  }
}

.page-404__top {
  font-size: 3.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-404__top {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.page-404__ja {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.page-404__btn {
  margin-top: 3.125rem;
}

.pointerEventsNone {
  opacity: 0.5;
  cursor: initial;
}
.pointerEventsNone a {
  pointer-events: none;
}
.pointerEventsNone a:hover {
  opacity: 0.5 !important;
}
.pointerEventsNone:hover {
  opacity: 0.5 !important;
}
.pointerEventsNone.para-btn:hover::after {
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .header__drawer .header__nav-button.internship-btn {
    grid-column: 1/5;
    grid-row: 2/3;
  }
}

.pointerEventsNone-top {
  pointer-events: none;
  opacity: 0.5;
  cursor: initial;
}
.pointerEventsNone-top:hover {
  opacity: 0.5 !important;
}

.another {
  position: relative;
}

.header__drawer-accordion-item .another {
  display: inline-block;
}

.header__drawer-accordion-item .another::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(100%, -50%);
  width: 0.8725rem;
  height: 0.614375rem;
  display: inline-block;
  background-image: url(../images/common/another.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8725rem 0.614375rem;
}

.header__nav-modal-item .another::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.625rem;
  transform: translate(100%, -50%);
  width: 0.8725rem;
  height: 0.614375rem;
  display: inline-block;
  background-image: url(../images/common/another-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8725rem 0.614375rem;
}

.drawer-pc__list .another::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.625rem;
  transform: translate(100%, -50%);
  width: 0.8725rem;
  height: 0.614375rem;
  display: inline-block;
  background-image: url(../images/common/another.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8725rem 0.614375rem;
}

.main {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 0rem;
  }
}

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

.fs09 {
  font-size: 0.9rem;
}

.lh_14 {
  line-height: 1.4;
}

.lh_16 {
  line-height: 1.6;
}

.mrg_top05 {
  margin-top: 0.5em;
}

.txt_center {
  text-align: center;
}

.fc_blue1 {
  color: #42ABFA;
}

.fc_blue2 {
  color: #536FB9;
}

.fc_green {
  color: #00B498;
}

.bg_white {
  background-color: #fff;
}

.sub-faq-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.0625rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .sub-faq-buttons {
    gap: 0.625rem;
    padding-left: initial;
    padding-right: initial;
    margin-top: 2.5rem;
  }
}

.sub-faq-button {
  transition: 0.3s;
  will-change: transform, animation, position;
}
.sub-faq-button:hover {
  transform: scale(1.03, 1.03);
}
@media screen and (max-width: 768px) {
  .sub-faq-button {
    height: 100%;
  }
}

.sub-faq-button a {
  background-color: #051540;
  color: #ffffff;
  font-size: 1rem;
  line-height: 5;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  clip-path: polygon(0.9375rem 0, 100% 0%, calc(100% - 0.9375rem) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .sub-faq-button a {
    clip-path: polygon(0.5rem 0, 100% 0%, calc(100% - 0.5rem) 100%, 0% 100%);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    padding: 0.625rem 0rem 1.5625rem;
    font-size: 0.875rem;
  }
}

.sub-faq-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6875rem;
  transform: translate(0, -50%);
  width: 0.9475rem;
  height: 0.47375rem;
  display: inline-block;
  background-image: url(../images/common/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9475rem 0.47375rem;
}
@media screen and (max-width: 768px) {
  .sub-faq-button a::after {
    top: initial;
    bottom: 0.625rem;
    right: 50%;
    transform: translateX(50%);
  }
}

.p-faq__list {
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    margin-top: 1.25rem;
  }
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-faq-list__item + .p-faq-list__item {
    margin-top: 1.25rem;
  }
}

.p-faq-list__item-question {
  padding: 0.3125rem 3.75rem 0.3125rem 0.3125rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
  cursor: pointer;
  background: rgb(233, 247, 252);
  background: linear-gradient(105deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
}
@media screen and (max-width: 768px) {
  .p-faq-list__item-question {
    position: relative;
    font-size: 1rem;
    padding: 1rem 3.125rem 1rem 3.75rem;
  }
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.25rem;
  height: 0.0625rem;
  background: #051540;
  transition: 0.3s;
}
.p-faq-list__item-question::after {
  transform: rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.p-faq-list__item-question span {
  margin-right: 1.3125rem;
  display: inline-block;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 900;
  font-style: italic;
  background: rgb(66, 173, 252);
  background: linear-gradient(135deg, rgb(66, 173, 252) 30%, rgb(83, 111, 185) 70%);
  padding: 0.6875rem 0.8125rem 0.8125rem 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-faq-list__item-question span {
    position: absolute;
    left: 0.3125rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 0.625rem 0.5rem 0.375rem;
  }
}

.p-faq-list__item-answer {
  padding: 1.5625rem 1.1875rem 0rem 4.6875rem;
  display: none;
  text-indent: -2.0625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-faq-list__item-answer {
    font-size: 1rem;
    padding-left: 3.75rem;
  }
}

.p-faq-list__item-answer span {
  margin-right: 2.0625rem;
  display: inline-block;
  color: #536fb9;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 900;
  font-style: italic;
  background-color: #ffffff;
  text-indent: -1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-faq-list__item-answer span {
    margin-left: 0.875rem;
    margin-right: 1.125rem;
  }
}

.sub-work-faq {
  padding-top: 2.5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sub-work-faq {
    padding-top: 2.5rem;
    margin-top: 1.25rem;
  }
}

.sub-recruit-faq {
  padding-top: 2.5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sub-recruit-faq {
    padding-top: 2.5rem;
    margin-top: 1.25rem;
  }
}

.sub-welfare-faq {
  padding-top: 2.5rem;
  margin-top: 6.25rem;
  padding-bottom: 13.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-welfare-faq {
    padding-top: 2.5rem;
    margin-top: 1.25rem;
    padding-bottom: 6.25rem;
  }
}

.top {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.top.fade-in {
  opacity: 1;
  visibility: visible;
}
.top .header {
  background-color: transparent;
}

.main-top .inner {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.main-top .pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-top .pc-hidden {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .main-top .sp-hidden {
    display: none;
  }
}
.main-top .common-font {
  padding-right: 1.1764705882vh;
  margin-right: 1.1764705882vh;
  font-family: "Roboto", sans-serif;
  transform: skew(-10deg);
  font-weight: 900;
  line-height: 1;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .main-top .common-font {
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .main-top .common-font span {
    padding-left: 0.5rem;
  }
}
.main-top .top__slider {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow-x: scroll;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main-top .top__slider {
    height: auto;
    position: static;
    overflow-x: auto;
  }
}
.main-top .top__sliders {
  width: calc(508.2352941176vh + 200vw);
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .main-top .top__sliders {
    width: auto;
    height: auto;
  }
}
.main-top .top__slider-content-wrap {
  width: calc(508.2352941176vh + 100vw);
  display: flex;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-top .top__slider-content-wrap {
    flex-direction: column;
    width: auto;
    background-image: url(../images/top/top-bg-sp.jpg);
    background-position: bottom;
    background-position: 50% 100%;
    background-size: cover;
    background-size: 100vw 620.8vw;
    overflow: hidden;
  }
}
.main-top .top__slider-content-warp-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  right: 0;
  z-index: 1;
  background-image: url(../images/top/top-bgi.jpg);
}
@media screen and (max-width: 768px) {
  .main-top .top__slider-content-warp-bg {
    display: none;
  }
}
.main-top .top__slider-content-warp-bg.absolute {
  position: absolute;
}
.main-top .top__fv-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  min-width: 169.4117647059vh;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .main-top .top__fv-wrap {
    min-width: auto;
    padding: 0 1.5625rem;
    display: block;
  }
}
.main-top .top__fv-wrap:not(.top__first-slide) {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .main-top .top__fv-wrap:not(.top__first-slide) {
    height: auto;
  }
}
.main-top .top__first-slide {
  position: relative;
  padding-top: 90px;
  background-color: #fff;
  min-width: 100vw;
}
@media screen and (max-width: 768px) {
  .main-top .top__first-slide {
    padding: 0;
    height: calc(100vh - 13.4375rem);
  }
}
.main-top .top__first-slide .top__inner {
  height: inherit;
  padding-left: 4.7058823529vh;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .main-top .top__first-slide .top__inner {
    padding-left: 0;
  }
}
.main-top .top__first-slide-content {
  position: relative;
}
.main-top .top__first-slide-content::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  transform: translateX(-100%);
  content: "";
  display: block;
  width: 4.7058823529vh;
  height: 4.7058823529vh;
  background-color: #536fb9;
}
@media screen and (max-width: 768px) {
  .main-top .top__first-slide-content::after {
    display: none;
  }
}
.main-top .swiper {
  width: calc(100vw - 4.7058823529vh);
  height: calc(83.5294117647vh - 90px);
}
@media screen and (max-width: 768px) {
  .main-top .swiper {
    width: auto;
  }
}
.main-top .swiper .swiper-slide {
  overflow: visible;
}
.main-top .swiper .top__bg-image01 {
  height: inherit;
  width: 100%;
  height: inherit;
  background-image: url(../images/top/fv01.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .main-top .swiper .top__bg-image01 {
    background-image: url(../images/top/fv01_sp.jpg);
  }
}
.main-top .swiper .top__bg-image02 {
  height: inherit;
  width: 100%;
  height: inherit;
  background-image: url(../images/top/fv02.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .main-top .swiper .top__bg-image02 {
    background-image: url(../images/top/fv02_sp.jpg);
  }
}
.main-top .swiper .top__bg-image03 {
  height: inherit;
  width: 100%;
  height: inherit;
  background-image: url(../images/top/fv03.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  .main-top .swiper .top__bg-image03 {
    background-image: url(../images/top/fv03_sp.jpg);
  }
}
.main-top .top__text-cant-image {
  position: absolute;
  width: 24.5882352941vh;
  right: 1.1764705882vh;
  top: 2.3529411765vh;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .main-top .top__text-cant-image {
    width: 7.3125rem;
    right: 0;
    top: 0.625rem;
  }
}
.main-top .top__text-cant-image.fade-in {
  opacity: 1;
  visibility: visible;
}
.main-top .top__text-future {
  position: absolute;
  left: 1.1764705882vh;
  bottom: 0vh;
  z-index: 1;
  width: 37.7647058824vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .main-top .top__text-future {
    width: 11.25rem;
    left: 0;
    bottom: 4.25rem;
  }
}
.main-top .top__text-future.fade-in {
  opacity: 1;
  visibility: visible;
}
.main-top .top__car-wrap {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-top .top__car-wrap {
    position: fixed;
    z-index: 10;
    bottom: 7.125rem;
    width: 100%;
    height: 4.375rem;
  }
}
.main-top .top__car {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100%, -25%);
  transition: 1s;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .main-top .top__car {
    transform: translate(-100%, 0);
  }
}
.main-top .top__car.fade-in {
  left: 50%;
  transform: translate(-50%, -25%);
}
@media screen and (max-width: 768px) {
  .main-top .top__car.fade-in {
    left: 0;
    transform: translate(0, 0);
  }
}
.main-top .top__car.fade-out {
  left: 100%;
  transform: translate(0, -25%);
}
.main-top .top__car .top__car-body {
  width: 74.1176470588vh;
}
@media screen and (max-width: 768px) {
  .main-top .top__car .top__car-body {
    width: 14.125rem;
  }
}
.main-top .top__car .top__car-wheel-front {
  position: absolute;
  bottom: -1.1764705882vh;
  right: 6.5882352941vh;
  width: 14.1176470588vh;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .main-top .top__car .top__car-wheel-front {
    width: 2.8125rem;
    right: 1.25rem;
    bottom: -0.3125rem;
  }
}
.main-top .top__car .top__car-wheel-back {
  position: absolute;
  bottom: -0.2352941176vh;
  left: 6.5882352941vh;
  width: 14.1176470588vh;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .main-top .top__car .top__car-wheel-back {
    width: 2.8125rem;
    left: 1.25rem;
  }
}
.main-top .top__gradient-wrap {
  position: absolute;
  top: 47.0588235294vh;
  left: 64.7058823529vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main-top .top__gradient-wrap {
    position: static;
    display: block;
  }
}
.main-top .top__gradient-title {
  animation: AnimationTitle 5s ease infinite;
  background-image: radial-gradient(circle closest-side at 62% 55%, rgb(167, 67, 249), rgb(83, 111, 185)), linear-gradient(180deg, rgb(12, 91, 119) 8%, rgb(8, 21, 149) 80%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 10.5882352941vh;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-top .top__gradient-title {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about {
    padding-top: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about .about__title-wrap {
    width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about .about__title {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about .top__gradient-wrap {
    margin-left: -0.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about .top__gradient-title {
    text-align-last: left;
    width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-top .about__title-wrap {
  position: absolute;
  top: 11.7647058824vh;
  left: 3.5294117647vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__title-wrap {
    position: static;
    text-align: center;
  }
}
.main-top .about__title {
  font-size: 17.6470588235vh;
  line-height: 1.14;
}
@media screen and (max-width: 768px) {
  .main-top .about__title {
    font-size: 5rem;
  }
}
.main-top .about__image-container {
  position: absolute;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .main-top .about__image-container {
    position: relative;
    margin: 0 auto;
  }
}
.main-top .about__image-container:hover {
  opacity: 0.8;
  cursor: pointer;
}
.main-top .about__image-container:hover .about__image-text span {
  transform: translateX(0.5882352941vh);
}
@media screen and (max-width: 768px) {
  .main-top .about__image-container:hover .about__image-text span {
    transform: translate(100%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .main-top .about__images-wrap-big {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1.25rem;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about__images-wrap {
    width: calc(100% + 40px);
    margin-top: 3.125rem;
    margin-left: -20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .about__images-wrap .about__image-text-wrap {
    width: 7.5rem;
  }
}
.main-top .about__images {
  width: 38.8235294118vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__images {
    width: 20.625rem;
  }
}
.main-top .about__image-text-clip-wrap {
  position: absolute;
  transform: skew(-15deg);
  z-index: 1;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .about__image-text-clip-wrap {
    top: auto;
    left: auto;
    bottom: 1.0625rem;
    right: 0;
  }
}
.main-top .about__image-text-clip-wrap.fade-in {
  box-shadow: 0.5882352941vh 0.5882352941vh 1.1764705882vh rgba(0, 0, 0, 0.1);
}
.main-top .about__image-text-wrap {
  padding: 0.5882352941vh 1.7647058824vh;
  font-size: 1.8823529412vh;
  line-height: 1.5;
  background-color: #fff;
  color: #333333;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .main-top .about__image-text-wrap {
    padding-left: 0.625rem;
    font-size: 0.875rem;
  }
}
.main-top .about__image-text {
  display: flex;
  align-items: center;
  transform: skew(15deg);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-top .about__image-text {
    padding-right: 0.3125rem;
    display: block;
    position: relative;
    font-weight: normal;
  }
}
.main-top .about__image-text span {
  color: #0360d0;
  margin-left: 0.5882352941vh;
  font-size: 1.4117647059vh;
  transition: 0.25s;
}
@media screen and (max-width: 768px) {
  .main-top .about__image-text span {
    position: absolute;
    right: 0rem;
    top: 50%;
    transform: translate(100%, -50%);
  }
}
.main-top .about__message-wrap {
  top: 28.2352941176vh;
  left: 4.7058823529vh;
  margin-left: auto;
  width: 54.1176470588vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__message-wrap {
    width: fit-content;
    top: auto;
    left: auto;
  }
}
.main-top .about__message-wrap .about__images {
  margin-left: auto;
}
.main-top .about__message-wrap .about__image-text-clip-wrap {
  bottom: 2vh;
}
.main-top .about__vission-wrap {
  top: 51.7647058824vh;
  left: 4.7058823529vh;
  margin-left: auto;
  width: 54.1176470588vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__vission-wrap {
    width: fit-content;
    top: auto;
    left: auto;
  }
}
.main-top .about__vission-wrap .about__image-text-clip-wrap {
  top: 2vh;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main-top .about__vission-wrap .about__image-text-clip-wrap {
    top: auto;
  }
}
.main-top .about__know-wrap {
  top: 14.7058823529vh;
  left: 68.2352941176vh;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .main-top .about__know-wrap {
    top: auto;
    left: auto;
  }
}
.main-top .about__know-wrap .about__images {
  margin-left: auto;
  width: 35.2941176471vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__know-wrap .about__images {
    width: 11.25rem;
  }
}
.main-top .about__know-wrap .about__image-text-clip-wrap {
  left: 50%;
  bottom: 0;
  transform: translate(-60%, 50%) skew(-15deg);
}
.main-top .about__future-wrap {
  top: 14.7058823529vh;
  left: 101.1764705882vh;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .main-top .about__future-wrap {
    top: auto;
    left: auto;
  }
}
.main-top .about__future-wrap .about__images {
  margin-left: auto;
  width: 35.2941176471vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__future-wrap .about__images {
    width: 11.25rem;
  }
}
.main-top .about__future-wrap .about__image-text-clip-wrap {
  left: 50%;
  bottom: 0;
  transform: translate(-60%, 50%) skew(-15deg);
}
.main-top .about__business-wrap {
  top: 14.7058823529vh;
  left: 134.1176470588vh;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .main-top .about__business-wrap {
    top: auto;
    left: auto;
  }
}
.main-top .about__business-wrap .about__images {
  margin-left: auto;
  width: 35.2941176471vh;
}
@media screen and (max-width: 768px) {
  .main-top .about__business-wrap .about__images {
    width: 11.25rem;
  }
}
.main-top .about__business-wrap .about__image-text-clip-wrap {
  left: 50%;
  bottom: 0;
  transform: translate(-60%, 50%) skew(-15deg);
}
@media screen and (max-width: 768px) {
  .main-top .about__business-wrap .about__image-text-wrap {
    width: 8.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .work {
    padding-top: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .main-top .work__images-wrap {
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1.875rem;
  }
}
.main-top .work-content__car-image-position {
  bottom: 2.3529411765vh;
  top: auto;
  left: -20vh;
  width: fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__car-image-position {
    left: 0;
    bottom: 0;
  }
}
.main-top .work-content__car-image-position .about__images {
  width: 52.9411764706vh;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__car-image-position .about__images {
    width: 20.625rem;
  }
}
.main-top .work-content__car-image-position .about__image-text-clip-wrap {
  left: -2.3529411765vh;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__car-image-position .about__image-text-clip-wrap {
    left: auto;
  }
}
.main-top .work-content__member-image-position {
  top: 2.1176470588vh;
  right: -3.5294117647vh;
  width: fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__member-image-position {
    top: auto;
    left: 0;
  }
}
.main-top .work-content__member-image-position .about__images {
  width: 52.9411764706vh;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__member-image-position .about__images {
    width: 20.625rem;
  }
}
.main-top .work-content__member-image-position .about__image-text-clip-wrap {
  bottom: 2vh;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__member-image-position .about__image-text-clip-wrap {
    right: 0;
  }
}
.main-top .work-content__title-wrap {
  top: 17.6470588235vh;
  left: 50%;
  transform: translateX(-40%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__title-wrap {
    display: block;
    transform: none;
  }
}
.main-top .work-content__title {
  animation: WorkerAnimationTitle 5s ease infinite;
  background-image: radial-gradient(circle closest-side at 72% 60%, rgb(65, 242, 195) 53%, rgb(83, 111, 185)), linear-gradient(180deg, rgb(12, 91, 119) 8%, rgb(8, 21, 149) 80%), linear-gradient(180deg, rgb(12, 91, 119) 8%, rgb(8, 21, 149) 80%);
  font-size: 17.6470588235vh;
}
@media screen and (max-width: 768px) {
  .main-top .work-content__title {
    width: 120%;
    font-size: 4.6875rem;
    margin-left: -1.875rem;
    text-align: center;
  }
}
@keyframes WorkerAnimationTitle {
  0% {
    background-position: 40% 50%;
  }
  50% {
    background-position: 120% 50%;
  }
  100% {
    background-position: 40% 50%;
  }
}
@media screen and (max-width: 768px) {
  .main-top .culture {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
    overflow: hidden;
  }
}
.main-top .culture__wrap {
  position: absolute;
  top: 23.5294117647vh;
  left: 11.7647058824vh;
}
@media screen and (max-width: 768px) {
  .main-top .culture__wrap {
    position: static;
  }
}
.main-top .culture__title-wrap {
  position: static;
}
@media screen and (max-width: 768px) {
  .main-top .culture__title-wrap {
    width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-top .culture__title {
  animation: CultureAnimationTitle 5s ease infinite;
  background-image: radial-gradient(circle closest-side at 62% 50%, rgb(230, 77, 82), rgb(83, 111, 185)), linear-gradient(180deg, rgb(12, 91, 119) 8%, rgb(8, 21, 149) 80%);
}
@media screen and (max-width: 768px) {
  .main-top .culture__title {
    font-size: 2.3125rem;
    text-align: left;
  }
}
.main-top .culture__title span {
  font-size: 17.6470588235vh;
}
@media screen and (max-width: 768px) {
  .main-top .culture__title span {
    font-size: 4.375rem;
    padding-left: 1.875rem;
  }
}
@keyframes CultureAnimationTitle {
  0% {
    background-position: 40% 50%;
  }
  50% {
    background-position: 120% 50%;
  }
  100% {
    background-position: 40% 50%;
  }
}
@media screen and (max-width: 768px) {
  .main-top .culture__image-wrap {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1.875rem;
  }
}
.main-top .culture__young-image-position {
  top: -2.3529411765vh;
  right: -47.0588235294vh;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .culture__young-image-position {
    top: auto;
    right: auto;
  }
}
.main-top .culture__voice-image-position {
  top: 22.3529411765vh;
  right: -40.9411764706vh;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .culture__voice-image-position {
    top: auto;
    right: auto;
  }
}
.main-top .culture .about__image-text-clip-wrap {
  top: auto;
  bottom: 2.3529411765vh;
  right: 2.3529411765vh;
}
.main-top .top__last-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(83.5294117647vh - 90px);
  width: 100vw;
  margin-top: 90px;
  padding-bottom: 5.8823529412vh;
  position: fixed;
  top: 0;
  right: 0;
  background-image: url(../images/top/top-last-bg.jpg);
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .main-top .top__last-content {
    position: static;
    height: 100vh;
    width: auto;
    height: auto;
    overflow: hidden;
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 8.75rem;
    margin-bottom: 6.25rem;
    background-image: url(../images/top/top-last-bg-sp.jpg);
  }
}
.main-top .last-content__flowing-wrap {
  display: flex;
  transform: skew(-7deg);
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .main-top .last-content__flowing-wrap {
    width: min-content;
  }
}
.main-top .last-content__flowing {
  padding-left: 4.7058823529vh;
  animation: flowing 5s linear infinite;
  white-space: nowrap;
  color: #fff;
  font-size: 11.7647058824vh;
}
@media screen and (max-width: 768px) {
  .main-top .last-content__flowing {
    font-size: 3.0625rem;
  }
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 0.5882352941vh));
  }
}
.main-top .last-content__links {
  margin-top: 4.7058823529vh;
  display: flex;
  justify-content: center;
  gap: 4.7058823529vh;
  margin-left: 9.4117647059vh;
  margin-right: 9.4117647059vh;
}
@media screen and (max-width: 768px) {
  .main-top .last-content__links {
    margin-left: initial;
    margin-right: initial;
    margin-top: 1.3125rem;
    flex-wrap: wrap;
    row-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}
.main-top a:has(.last-content__link):nth-child(2) {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .main-top a:has(.last-content__link):nth-child(2) {
    flex: initial;
  }
}
@media screen and (max-width: 768px) {
  .main-top a:has(.last-content__link):nth-child(3) {
    margin-left: 0;
  }
}
.main-top .last-content__link {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  width: 23.5294117647vh;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8823529412vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  transform: skew(-15deg);
  transition: 0.5s;
  color: #000;
}
@media screen and (max-width: 768px) {
  .main-top .last-content__link {
    font-size: 0.875rem;
    font-weight: normal;
    width: 9.375rem;
    height: 5.3125rem;
  }
}
.main-top .last-content__link:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .main-top .last-content__link:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.main-top .last-content__link:hover .last-content__tip {
  transform: translate(1.1764705882vh, -50%) skew(0deg);
}
@media screen and (max-width: 768px) {
  .main-top .last-content__link:hover .last-content__tip {
    transform: translate(0, -50%) skew(0deg);
  }
}
.main-top .last-content__link span {
  transform: skew(15deg);
}
.main-top .last-content__link .last-content__tip {
  position: absolute;
  right: -3.5294117647vh;
  top: 50%;
  transform: translateY(-50%) skew(0deg);
  transition: 0.5s;
  color: #0360d0;
}
@media screen and (max-width: 768px) {
  .main-top .last-content__link .last-content__tip {
    right: -1.25rem;
  }
}
.main-top .clip-path-text {
  clip-path: inset(0 100% 0 0);
  transition: 1s;
}
.main-top .clip-path-text.fade-in {
  clip-path: inset(0);
}
.main-top .clip-path-content {
  clip-path: inset(0 100% 0 0);
  transition: 1s;
}
.main-top .clip-path-content.fade-in {
  clip-path: inset(0);
}

.top footer {
  height: 16.4705882353vh;
  width: 100%;
  position: fixed;
  z-index: 2;
  bottom: 0;
  background-color: #536fb9;
}
@media screen and (max-width: 768px) {
  .top footer {
    height: 8.1875rem;
  }
}
.top footer .footer__contents {
  color: #fff;
  position: absolute;
  bottom: 2.4705882353vh;
  left: 2%;
  font-size: 1.4117647059vh;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  .top footer .footer__contents {
    font-size: 0.75rem;
    line-height: 1.3333333333;
    bottom: 0.875rem;
    left: 1.25rem;
  }
}
.top footer .footer__contents-news-title span {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .top footer .footer__contents-news-title span {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}
.top footer .footer__contents-news-date {
  display: inline-block;
  margin-top: 1.0588235294vh;
}
@media screen and (max-width: 768px) {
  .top footer .footer__contents-news-date {
    margin-top: 0.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .top footer .footer__contents-news-description {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.top footer .footer__contents-news-description a {
  color: #fff;
}
.top footer small {
  margin-top: 2.5882352941vh;
  display: inline-block;
  font-size: 1.4117647059vh;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top footer small {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
    bottom: 0.875rem;
  }
}
.top footer .scrollright {
  padding-bottom: 4.7058823529vh;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .top footer .scrollright {
    padding-bottom: 1.625rem;
  }
}
.top footer .scrollright::before {
  content: "";
  position: absolute;
  left: -1.1764705882vh;
  top: 1.1764705882vh;
  bottom: 0;
  width: 0.2352941176vh;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top footer .scrollright::before {
    display: none;
  }
}
.top footer .scrollright span {
  margin-right: 1.1764705882vh;
  color: #fff;
  font-size: 1.4117647059vh;
  letter-spacing: 0.05em;
}
.top footer .scrollright__image {
  width: 3.5294117647vh;
  animation: arrowmove 1s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .top footer .scrollright__image {
    width: 0.375rem;
    animation: arrowmoveSp 1s ease-in-out infinite;
  }
}
@keyframes arrowmove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrowmoveSp {
  0% {
    transform: translateY(20%);
  }
  50% {
    transform: translateY(40%);
  }
  100% {
    transform: translateY(20%);
  }
}

@keyframes AnimationTitle {
  0% {
    background-position: 120% 50%;
  }
  50% {
    background-position: 30% 50%;
  }
  100% {
    background-position: 120% 50%;
  }
}
/*#################################
introduction.html
#################################*/
/* history */
.sub-history {
  margin-top: 6.1875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-history {
    margin-top: 4.75rem;
  }
}

.sub-history__inner {
  position: relative;
  z-index: 5;
}

.sub-history__text p {
  position: relative;
  z-index: 5;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-history__text p {
    font-size: 0.875rem;
    line-height: 0.9285714286;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-history__title {
  position: relative;
  z-index: 5;
  font-size: 5rem;
  line-height: 1.1375;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #536fb9;
  margin-top: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-history__title {
    font-size: 2.875rem;
    line-height: 1.1304347826;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}

.sub-history__title span {
  font-size: 10.4375rem;
  line-height: 1.3173652695;
  letter-spacing: 0em;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .sub-history__title span {
    font-size: 5.875rem;
    line-height: 1.3085106383;
    letter-spacing: 0em;
    font-weight: 900;
  }
}

.sub-history__text-bottom {
  position: relative;
  z-index: 5;
  margin-top: -1.75rem;
}
@media screen and (max-width: 768px) {
  .sub-history__text-bottom {
    margin-top: -0.6875rem;
  }
}

.sub-history__text-bottom p {
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-bottom: 1px solid hsl(0, 0%, 0%);
  display: inline-block;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sub-history__text-bottom p {
    font-size: 0.875rem;
    line-height: 0.9285714286;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-history__text-bottom p span {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-history__text-bottom p span {
    font-size: 1.0625rem;
  }
}

.sub-history__bg {
  position: absolute;
  width: 48.25rem;
  height: 24.125rem;
  top: -1.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sub-history__bg {
    width: 100%;
    max-width: 23.4375rem;
    height: 11.71875rem;
    top: -0.625rem;
  }
}

/* supplier */
.sub-supplier {
  margin-top: 8.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-supplier {
    margin-top: 2.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-supplier__title {
    position: relative;
    z-index: 5;
  }
}

@media screen and (max-width: 768px) {
  .sub-supplier__inner {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }
}

.sub-supplier__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.6875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-supplier__container {
    margin-top: 1.625rem;
    flex-direction: column;
    justify-content: center;
  }
}

.sub-supplier__wrapper {
  background: linear-gradient(to left top, #d6e7fe, #e9f7fc);
  padding: 0.6875rem 1.875rem 1.875rem;
  max-width: 50.5625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-supplier__wrapper {
    padding: 0.8125rem 0.46875rem 0.75rem;
  }
}

.sub-supplier__wrapper-title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-supplier__wrapper-title {
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-align: center;
  }
}

.sub-supplier__lists {
  margin-top: 0.5625rem;
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-supplier__lists {
    margin-top: 0.8125rem;
    flex-direction: column;
    column-gap: initial;
    justify-content: center;
    row-gap: 0.625rem;
  }
}

.sub-supplier__list:nth-of-type(1) {
  max-width: 20.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list:nth-of-type(1) {
    max-width: 31.25rem;
    background-color: #fff;
    padding-bottom: 1.25rem;
  }
}

.sub-supplier__list:nth-of-type(2) {
  max-width: 24.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list:nth-of-type(2) {
    max-width: 31.25rem;
    background-color: #fff;
    padding-bottom: 0.625rem;
  }
}

.sub-supplier__list-arrow1 {
  position: absolute;
  left: 18.8125rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list-arrow1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 5.125rem;
    width: 100%;
    left: 30%;
    top: 52%;
  }
}

.sub-supplier__list-arrow2 {
  position: absolute;
  right: 14rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list-arrow2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 5.125rem;
    width: 100%;
    right: 0;
    left: 30%;
    top: 65%;
  }
}

.sub-supplier__list-arrow--text {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #051540;
  writing-mode: vertical-rl;
  padding-left: 1.29375rem;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list-arrow--text {
    writing-mode: initial;
    padding-left: 0;
  }
}

.sub-supplier__list-arrow--icon {
  max-width: 4.85625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-supplier__list-arrow--icon {
    max-width: 2.1875rem;
  }
}

.sub-supplier__maker {
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-supplier__maker {
    margin-top: 2.9375rem;
    max-width: 31.25rem;
  }
}

/* product */
.sub-product {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-product {
    margin-top: 3.40625rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-product__inner {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }
}

.sub-product__lists {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.8125rem;
  row-gap: 2.8125rem;
  max-width: 44.0625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sub-product__lists {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    row-gap: 1.0625rem;
  }
}

.sub-product__list-img img {
  aspect-ratio: 330/200;
  object-fit: cover;
  width: 100%;
}

.sub-product__list-text {
  text-align: center;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-product__list-text {
    margin-top: 0.5rem;
  }
}

.sub-product__list-text p {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-product__list-text p {
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-product__btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .sub-product__btn {
    margin-top: 2.0625rem;
  }
}

/* data */
.sub-data {
  margin-top: 9.15625rem;
  background-image: url(../images/introduction/data-bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .sub-data {
    margin-top: 3.4375rem;
    background-image: url(../images/introduction/data-bg_sp.png);
  }
}

.sub-data__inner {
  padding-top: 6rem;
  padding-bottom: 5.0625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-data__inner {
    padding: 2.5625rem 1.5625rem 15.25rem;
  }
}

.sub-data__bg {
  position: absolute;
  width: 40.375rem;
  height: 20.1875rem;
  top: 12.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sub-data__bg {
    width: 100%;
    max-width: 23.4375rem;
    height: 11.5625rem;
    top: initial;
    bottom: 40.625rem;
  }
}

.sub-data__title {
  color: #ffffff;
  text-align: left;
  padding-left: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-data__title {
    text-align: center;
    padding-left: 0;
  }
}

.sub-data__title span {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-left: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .sub-data__title span {
    font-size: 0.75rem;
    line-height: 1.4166666667;
    letter-spacing: 0.02em;
    font-weight: 500;
    display: block;
    margin-top: 0.375rem;
  }
}

.sub-data__items {
  margin-top: 2.625rem;
  display: flex;
  justify-content: center;
  column-gap: 6rem;
  row-gap: 1.0625rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sub-data__items {
    margin-top: 2.3125rem;
    flex-direction: column;
    align-items: center;
    column-gap: 0;
    row-gap: 0.8125rem;
  }
}

.sub-data__item:nth-of-type(1) {
  max-width: 14.6875rem;
  width: 100%;
}

.sub-data__item:nth-of-type(2) {
  max-width: 13.5rem;
  width: 100%;
}

.sub-data__item:nth-of-type(3) {
  max-width: 18.125rem;
  width: 100%;
}

.sub-data__item:nth-of-type(4) {
  max-width: 14.25rem;
  width: 100%;
}

.sub-data__item:nth-of-type(5) {
  max-width: 13.9375rem;
  width: 100%;
}

.sub-data__lists {
  margin-top: 4.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.96875rem;
}
@media screen and (max-width: 768px) {
  .sub-data__lists {
    margin-top: 6.375rem;
    flex-direction: column;
    column-gap: 0;
    row-gap: 0.625rem;
  }
}

.sub-data__list {
  background-color: rgba(255, 255, 255, 0.71);
  backdrop-filter: blur(4px) brightness(136px);
  width: 18.75rem;
  height: 10.0625rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sub-data__list {
    width: 20.3125rem;
    height: initial;
    padding: 0.9375rem 0;
  }
}

@media screen and (max-width: 768px) {
  .sub-data__list:nth-of-type(1) {
    padding: 1.0625rem 0 1.4375rem;
  }
}

.sub-data__list-title--sub {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #536fb9;
}

.sub-data__list-title {
  font-size: 1.875rem;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .sub-data__list-title {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}

.sub-data__list:nth-of-type(1) .sub-data__list-title {
  margin-top: -0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-data__list:nth-of-type(1) .sub-data__list-title {
    margin-top: -0.25rem;
  }
}

.sub-data__list:nth-of-type(2) .sub-data__list-title {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sub-data__list:nth-of-type(2) .sub-data__list-title {
    margin-top: -0.25rem;
  }
}

.sub-data__list:nth-of-type(3) .sub-data__list-title {
  margin-top: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .sub-data__list:nth-of-type(3) .sub-data__list-title {
    margin-top: -0.25rem;
  }
}

.sub-data__list-text {
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-data__list-text {
    margin-top: 0.25rem;
  }
}

.sub-data__list-text p {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-data__list-text p {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

/* world */
.sub-world {
  background-image: url(../images/introduction/world-bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sub-world {
    background-image: url(../images/introduction/world-bg_sp.png);
  }
}

.sub-world__inner {
  padding-top: 6.25rem;
  padding-bottom: 10.75rem;
}
@media screen and (max-width: 768px) {
  .sub-world__inner {
    padding: 3.75rem 1.5625rem 7.5rem;
  }
}

.sub-world__title {
  text-align: left;
  padding-left: 4.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-world__title {
    padding-left: 0;
    font-size: 1.25rem;
    line-height: 2.1;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-world__text {
  padding-left: 4.75rem;
  margin-top: 1.78125rem;
}
@media screen and (max-width: 768px) {
  .sub-world__text {
    padding-left: 0;
    margin-top: 0.375rem;
  }
}

.sub-world__text p {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-world__text p {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.sub-world__items {
  margin-top: 3.0625rem;
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-world__items {
    margin-top: 3.4375rem;
    column-gap: 0.9375rem;
    row-gap: 1.0625rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 20.3125rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.sub-world__item {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-world__item {
    max-width: 9.6875rem;
  }
}

.sub-world__item:nth-child(odd) {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-world__item:nth-child(odd) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .sub-world__item:nth-child(even),
  .sub-world__item:last-child {
    margin-top: -2.75rem;
  }
}

/* vision */
.sub-vision {
  margin-top: 3.09375rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .sub-vision {
    margin-top: 2.875rem;
    padding-bottom: 6.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-vision__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.sub-vision__text {
  margin-top: 1.84375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-vision__text {
    margin-top: 0.78125rem;
    text-align: left;
    margin-left: 0.1875rem;
  }
}

.sub-vision__text p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-vision__text p {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.sub-vision__sub-title {
  margin-top: 3.0625rem;
  color: #ffffff;
  clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  background-color: #051540;
  text-align: center;
  max-width: 27.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.1875rem;
  padding-bottom: 0.3125rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-vision__sub-title {
    margin-top: 1.4375rem;
    clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0% 100%);
    max-width: 18.3125rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.02em;
    font-weight: 500;
    padding-top: 0.14375rem;
    padding-bottom: 0.34375rem;
  }
}

.sub-vision__body {
  position: relative;
  z-index: 5;
}

.sub-vision__items {
  margin-top: 0.125rem;
  display: flex;
  justify-content: center;
  column-gap: 1.65625rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .sub-vision__items {
    margin-top: 0.96875rem;
    column-gap: 1.0625rem;
    row-gap: 0.3125rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.sub-vision__item,
.sub-vision__item-img {
  max-width: 15.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-vision__item,
  .sub-vision__item-img {
    max-width: 9.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .sub-vision__item:nth-of-type(1) {
    margin-top: 0.3125rem;
  }
}

.sub-vision__item-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-vision__item-text {
    margin-top: 0.28125rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-vision__bg {
  position: absolute;
  width: 48.25rem;
  height: 24.125rem;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sub-vision__bg {
    width: 23.4375rem;
    height: 11.71875rem;
    top: 16.875rem;
  }
}

/* future */
.sub-future {
  margin-bottom: 10.1rem;
}
@media screen and (max-width: 768px) {
  .sub-future {
    margin-bottom: 3.9375rem;
  }
}

.sub-future__bg {
  background-image: url(../images/introduction/future-bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sub-future__bg {
    background-image: none;
  }
}

.sub-future__inner {
  padding-top: 7.625rem;
  padding-bottom: 19.4375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-future__inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1.53125rem;
    padding-right: 1.53125rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-future__title-wrapper {
    background-image: url(../images/introduction/future-bg_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-top: 3.65rem;
    padding-bottom: 3.375rem;
  }
}

.sub-future__title {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.40625rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-future__title {
    padding-bottom: 0.21875rem;
    font-size: 1.1875rem;
    line-height: 1.4210526316;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-future__container {
  position: relative;
  margin-top: 4.21875rem;
}
@media screen and (max-width: 768px) {
  .sub-future__container {
    position: initial;
    background-image: url(../images/introduction/future-bg_sp2.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    padding-bottom: 6.25rem;
  }
}

.sub-future__sub-title {
  padding-top: 1.1875rem;
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-future__sub-title {
    padding-top: 1.625rem;
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.sub-future__text {
  margin-top: 1.125rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .sub-future__text {
    margin-top: 0.9375rem;
    text-align: left;
    padding-right: 0.3125rem;
  }
}

.sub-future__text p {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-future__text p {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .sub-future__wrapper {
    margin-top: 0.875rem;
  }
}

.sub-future__item {
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(30px) brightness(170%);
  display: inline-block;
  text-align: left;
}

.sub-future__item:nth-of-type(1) {
  padding: 1.4375rem 0 1.5625rem 1.0625rem;
  width: 15.625rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-of-type(1) {
    padding: 1.4375rem 1.25rem 1rem 1.0625rem;
    width: 100%;
    position: initial;
  }
}

.sub-future__item:nth-of-type(2) {
  padding: 1.375rem 0 1.375rem 1.25rem;
  width: 15.625rem;
  position: absolute;
  top: 15.9375rem;
  left: 19.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-of-type(2) {
    padding: 1.4375rem 1.25rem 1.25rem 1.0625rem;
    width: 100%;
    position: initial;
  }
}

.sub-future__item:nth-of-type(3) {
  padding: 1.375rem 0 1.0625rem 1.0625rem;
  width: 22.0625rem;
  position: absolute;
  top: 15.9375rem;
  right: 6.625rem;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-of-type(3) {
    padding: 1.4375rem 1.25rem 1.25rem 1.0625rem;
    width: 100%;
    position: initial;
  }
}

.sub-future__item:nth-of-type(4) {
  padding: 1.4375rem 0 1.0625rem 1.1875rem;
  width: 16.4375rem;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-of-type(4) {
    padding: 1.4375rem 0.625rem 1.25rem 1.0625rem;
    width: 100%;
    position: initial;
  }
}

@media screen and (max-width: 768px) {
  .sub-future__item:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.sub-future__item-title {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.sub-future__item-text {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-future__item-text {
    margin-top: 0.6875rem;
  }
}

.sub-future__item:nth-child(2) .sub-future__item-text {
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-child(2) .sub-future__item-text {
    margin-top: 0.6875rem;
  }
}

.sub-future__item:nth-child(3) .sub-future__item-text {
  margin-top: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-future__item:nth-child(3) .sub-future__item-text {
    margin-top: 0.6875rem;
  }
}

.sub-future__item-text p {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.sub-future__item-text p::before {
  content: "";
  display: inline-block;
  margin: 0 0.3125rem 0 0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #536fb9;
}

.sub-future__btn {
  margin-top: -2.35rem;
  max-width: 27.625rem;
}
@media screen and (max-width: 768px) {
  .sub-future__btn {
    margin-top: -3rem;
    max-width: 20.375rem;
  }
}

.sub-vision-future {
  padding-top: 6.625rem;
}

.sub-vision-future__title {
  text-align: center;
}

.sub-vision-future__title span {
  padding: 0.25rem 1.5625rem;
  background-color: #051540;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-block;
  clip-path: polygon(0.625rem 0%, 100% 0%, calc(100% - 0.625rem) 100%, 0% 100%);
}

.sub-vision-future__lead {
  margin-top: 1.625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  max-width: 54.9375rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__lead {
    font-size: 0.875rem;
  }
}

.sub-vision-future__item {
  margin-top: 3.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.sub-vision-future__item:nth-of-type(2) {
  z-index: 9;
}

.sub-vision-future__item-bg {
  position: absolute;
  width: 48.25rem;
  height: 24.125rem;
  top: -6.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-bg {
    width: 100%;
    max-width: 23.4375rem;
    height: 11.15625rem;
    top: 6.25rem;
  }
}

.sub-vision-future__item-bg--02 {
  z-index: 2;
}

.sub-vision-future__item-bg--03 {
  z-index: 1;
  top: 10rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-bg--03 {
    top: initial;
    bottom: -5rem;
  }
}

.sub-vision-future__item + .sub-vision-future__item {
  margin-top: 7.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item + .sub-vision-future__item {
    margin-top: 5rem;
  }
}

.sub-vision-future__item-lead {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-bottom: 0.28125rem;
  border-bottom: 1px solid #000;
  color: #051540;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-lead {
    width: 100%;
    text-align: center;
  }
}

.sub-vision-future__item-heading {
  color: #051540;
  font-size: 3.125rem;
  line-height: 1.32;
  letter-spacing: 0em;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

.sub-vision-future__item-text {
  font-size: 1.875rem;
  line-height: 1.7666666667;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
  text-align: center;
  margin-top: 1.1875rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-text {
    font-size: 1.25rem;
  }
}

.sub-vision-future__item-body {
  display: flex;
  justify-content: center;
  gap: 2.0625rem;
  margin-top: 1.375rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-body {
    flex-wrap: wrap;
    gap: 0.9375rem;
  }
}

.sub-vision-future__item-body-image {
  position: relative;
  z-index: 10;
}
.sub-vision-future__item-body-image img {
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-body-image {
    max-width: 100%;
    width: 9.6875rem;
  }
}

.sub-vision-future__item-body-image:nth-of-type(1),
.sub-vision-future__item-body-image:nth-of-type(3) {
  margin-top: -3.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-body-image:nth-of-type(1),
  .sub-vision-future__item-body-image:nth-of-type(3) {
    margin-top: initial;
  }
}

.sub-vision-future__item-heading--core {
  font-size: 1.875rem;
  line-height: 1.3;
  padding-top: 0.84375rem;
}

.sub-vision-future__item-body--core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-body--core {
    grid-template-columns: 1fr;
  }
}

.sub-vision-future__item-body-list {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #536fb9;
  border: 0.1875rem solid #d7e6ff;
  padding: 2.15625rem 0rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-body-list {
    padding: 0.9375rem 0rem;
    font-size: 1.25rem;
    min-height: 5.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.sub-vision-future__item-image {
  width: 56.25rem;
  padding: 2.5625rem 9.9375rem 1.9375rem;
  margin-top: 3rem;
  border: 0.1875rem solid #d7e6ff;
}
@media screen and (max-width: 768px) {
  .sub-vision-future__item-image {
    width: 100%;
    padding: 0.625rem;
  }
}

.sub-vision-message {
  padding-top: 5.6875rem;
  padding-bottom: 10.2125rem;
}
@media screen and (max-width: 768px) {
  .sub-vision-message {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.sub-vision-message__title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
}

.sub-vision-message__lead {
  margin-top: 1.9375rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-vision-message__lead {
    font-size: 0.875rem;
  }
}

.sub-vision-message__body {
  margin-top: 2.6625rem;
  background-image: url(../images/about/message-bgi.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 5.3125rem;
  padding-bottom: 3.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-vision-message__body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.sub-vision-message__body-heading {
  font-size: 3.125rem;
  line-height: 1.44;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .sub-vision-message__body-heading {
    font-size: 2rem;
  }
}

.sub-vision-message__body-text {
  margin-top: 2.34375rem;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-vision-message__body-text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
  .sub-vision-message__body-text span {
    display: inline-block;
  }
}

.sub-vision-message__body-comment {
  margin-top: 2.59375rem;
  font-size: 1.875rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.sub-vision-message__body-comment p {
  border-bottom: 1px solid #000;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-vision-message__body-comment {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.tab {
  margin-top: 6.5rem;
  margin-bottom: 9.90625rem;
}
@media screen and (max-width: 768px) {
  .tab {
    margin-top: 3.125rem;
    margin-bottom: 5rem;
  }
}

.tab__menu {
  display: flex;
  justify-content: flex-start;
}

.tab__menu-item {
  padding: 1.59375rem;
  min-width: 19.25rem;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #ffffff;
  background-color: #051540;
  text-align: center;
  cursor: pointer;
  clip-path: polygon(0% 0%, calc(100% - 29px) 0%, 100% 100%, 0% 100%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .tab__menu-item {
    font-size: 1rem;
    min-width: initial;
    width: 50%;
    padding: 0.9375rem 1.5625rem 0.9375rem 0.9375rem;
  }
}

.tab__menu-item:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.tab__menu-item.is-active {
  color: #fff;
  background-color: #536fb9;
}

.tab__content-item {
  display: none;
}

.tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sub-application-requirements {
  padding: 2.6875rem 1rem 4.6875rem 1.25rem;
  background: rgb(233, 247, 252);
  background: linear-gradient(151deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
}
@media screen and (max-width: 768px) {
  .sub-application-requirements {
    padding: 1.875rem 0.75rem 3.125rem;
  }
}

.sub-application-requirements__title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__title {
    font-size: 1.5rem;
  }
}

.sub-application-requirements__table {
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__table {
    margin-top: 1.25rem;
  }
}

.sub-application-requirements__list {
  display: grid;
  grid-template-columns: 9.3125rem 1fr;
  padding: 2rem 1.75rem 2rem 2.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__list {
    display: block;
    padding: 1.25rem 1.25rem;
  }
}

.sub-application-requirements__list:nth-of-type(odd) {
  background-color: #ffffff;
}

.sub-application-requirements__list:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

.sub-application-requirements__list dt {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__list dt {
    padding-bottom: 0.1875rem;
    border-bottom: 1px solid #051540;
  }
}

.sub-application-requirements__list dd {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.sub-application-requirements__list dd p + p {
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__list dd {
    padding-top: 0.625rem;
  }
}

/*#################################
選考プロセス
#################################*/
.sub-application-requirements__process {
  margin-top: 4.625rem;
}

.sub-application-requirements__process-title {
  text-align: center;
}

.sub-application-requirements__process-title span {
  display: inline-block;
  color: #ffffff;
  background-color: #051540;
  padding: 0.1875rem 1.75rem 0.3125rem 1.375rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.sub-application-requirements__process-lists {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: center;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__process-lists {
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.25rem;
  }
}

.sub-application-requirements__process-list {
  background-color: #fff;
  border-radius: 50%;
  width: 13.75rem;
  height: 13.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #536fb9;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__process-list {
    width: min(37.3333333333vw, 140px);
    height: min(37.3333333333vw, 140px);
    font-size: 0.875rem;
  }
}

.sub-application-requirements__process-list:nth-of-type(n+2)::before {
  content: "";
  background-color: #051540;
  width: 0.625rem;
  height: 0.9375rem;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  position: absolute;
  top: 50%;
  left: -1.875rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__process-list:nth-of-type(n+2)::before {
    left: -0.9375rem;
  }
}

.sub-application-requirements__process2 {
  margin-top: 4.625rem;
}
.sub-application-requirements__process2 .box_course01 dl dt {
  color: #536fb9;
  background: #f6f6f6;
}
.sub-application-requirements__process2 .box_course02 dl {
  background-color: #fff;
}
.sub-application-requirements__process2 .box_course02 dl dt::before {
  background-color: #536fb9;
}

.sub-application-requirements__button-area {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 2.1875rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__button-area {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.1875rem;
  }
}

.sub-application-requirements__button {
  text-align: center;
  position: relative;
  display: inline-block;
}
.sub-application-requirements__button::after {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #536fb9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  clip-path: polygon(1.25rem 0%, 100% 0%, calc(100% - 1.25rem) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__button::after {
    clip-path: polygon(0.625rem 0%, 100% 0%, calc(100% - 0.625rem) 100%, 0% 100%);
  }
}

.sub-application-requirements__button a {
  min-width: 24.25rem;
  position: relative;
  padding: 0.9375rem 4.625rem 0.9375rem 5.5625rem;
  background-color: #536fb9;
  display: inline-block;
  font-size: 2.375rem;
  line-height: 1.3157894737;
  letter-spacing: 0.01em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  clip-path: polygon(1.25rem 0%, calc(100% - 0.0625rem) 0%, calc(100% - 1.25rem) 100%, 0.0625rem 100%);
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__button a {
    min-width: 15rem;
    padding: 0.625rem 3.125rem;
    font-size: 1.625rem;
    clip-path: polygon(0.625rem 0%, calc(100% - 0.0625rem) 0%, calc(100% - 0.625rem) 100%, 0.0625rem 100%);
  }
}

.sub-application-requirements__button a span {
  position: absolute;
  top: 50%;
  right: 2.075rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sub-application-requirements__button a span {
    right: 1.25rem;
  }
}

.sub-application-requirements__button a span::before {
  content: "";
  display: block;
  width: calc(0.47375rem * 1.41421356);
  height: calc(0.47375rem * 1.41421356);
  transform: rotate(-45deg) translateY(-50%);
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: all 0.3s;
}

.sub-application-requirements__button a:hover span {
  transform: translateX(5px);
  transition: all 0.3s;
}
.sub-application-requirements__button a:hover span::before {
  transition: all 0.3s;
  border-color: #536fb9;
}

.sub-application-requirements__button a:hover {
  transition: all 0.3s;
  background-color: #fff;
  color: #536fb9;
}

.sub-training-system {
  padding-top: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system {
    padding-top: 2.5rem;
  }
}

.sub-training-system__lead {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system__lead {
    margin-top: 0.625rem;
  }
}

.sub-training-system__pala {
  margin-top: 2.625rem;
}

.sub-training-system__lists {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system__lists {
    margin-top: 0.625rem;
  }
}

.sub-training-system__list {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-training-system__list {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.sub-training-system__list span {
  color: #536fb9;
}

.sub-training-system__table {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system__table {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 768px) {
  .sub-training-system__table-image {
    width: 600px;
  }
}

.sub-training-system__body {
  margin-top: 3.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system__body {
    margin-top: 2.5rem;
  }
}

.sub-training-system__body + .sub-training-system__body {
  margin-top: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-training-system__body + .sub-training-system__body {
    margin-top: 1.5625rem;
  }
}

.sub-training-thinking {
  padding-top: 7.0625rem;
  padding-bottom: 13.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.sub-training-thinking__lead {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking__lead {
    margin-top: 0.625rem;
  }
}

.sub-training-thinking__cycle {
  margin-top: 4rem;
  background-image: url(../images/training/cycle-bgi.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 3.25rem;
}
.sub-training-thinking__cycle-title {
  text-align: center;
  transform: translateY(-1rem);
}

.sub-training-thinking__cycle-lead {
  margin-top: 1.1875rem;
  text-align: center;
  font-weight: 500;
}

.sub-training-thinking__cycle-image-area {
  width: 32.125rem;
  height: 32.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking__cycle-image-area {
    margin-top: 1.875rem;
    overflow-x: scroll;
    width: 100%;
    height: auto;
    padding: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-training-thinking__cycle-image {
    width: 31.25rem;
  }
  .sub-training-thinking__cycle-image img {
    aspect-ratio: 1638/1076;
    object-fit: cover;
  }
}

.sub-training-thinking__cycle-item {
  position: absolute;
}

.sub-training-thinking__cycle-item01 {
  width: 13.9375rem;
  top: -1.5rem;
  right: -4.8125rem;
}

.sub-training-thinking__cycle-item02 {
  width: 10.8125rem;
  top: 11.1875rem;
  right: -7.8125rem;
}

.sub-training-thinking__cycle-item03 {
  width: 10.8125rem;
  bottom: 1.625rem;
  right: -2rem;
}

.sub-training-thinking__cycle-item04 {
  width: 17.0625rem;
  bottom: 1.625rem;
  left: -8.0625rem;
}

.sub-training-thinking__cycle-item05 {
  width: 15.1875rem;
  top: 11.1875rem;
  left: -11.25rem;
}

.sub-training-thinking__cycle-item06 {
  width: 15.1875rem;
  top: -1.5rem;
  left: -4.875rem;
}

.sub-training-thinking__strategy {
  border: 0.5rem solid #D7E7FF;
  margin-top: 2.2875rem;
  padding-bottom: 1.90625rem;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking__strategy {
    margin-top: 1.25rem;
  }
}

.sub-training-thinking__triangle {
  margin-top: 0.775rem;
  width: 9.685rem;
  height: 4.8425rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking__triangle {
    width: 5.625rem;
    height: auto;
  }
}

.sub-training-thinking__strategy-title {
  text-align: center;
  margin-top: -1.5rem;
}

.sub-training-thinking__strategy-lists {
  padding-top: 2.34375rem;
  max-width: 58.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.21875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sub-training-thinking__strategy-lists {
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-training-thinking__strategy-list {
    width: 45%;
  }
}

.etc {
  text-align: right;
  font-size: 0.875rem;
  line-height: 2.2142857143;
  letter-spacing: 0.02em;
}

.sub-worklife {
  padding-top: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife {
    padding-top: 2.5rem;
  }
}

.sub-worklife__body-heading span {
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
  min-width: 7.125rem;
}

.sub-worklife__lead {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife__lead {
    margin-top: 0.625rem;
  }
}

.sub-worklife__body--01 {
  padding-top: 3.5625rem;
}

.sub-worklife__body--02 {
  padding-top: 4.0625rem;
}

.sub-worklife__body--03 {
  padding-top: 4.0625rem;
}

.sub-worklife__item--image {
  grid-column: 1/3;
  padding: 1.1875rem 1.25rem 1.1875rem 2.4375rem;
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife__item--image {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.9375rem;
    grid-column: initial;
  }
}

.sub-worklife__item-photo {
  width: 28.125rem;
  flex-shrink: 0;
}
.sub-worklife__item-photo img {
  aspect-ratio: 45/19;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sub-worklife__item-photo {
    width: 100%;
  }
}

.sub-worklife__item-contents {
  margin-top: 0.75rem;
}

.sub-worklife__item-title--short span::after {
  content: attr(data-ja);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-block;
}

.sub-worklife__item--wide {
  grid-column: 1/3;
  padding: 2.25rem 1.65625rem 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife__item--wide {
    padding: 0.9375rem;
    grid-column: initial;
  }
}

.sub-worklife__item-title--ja span {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.3125rem;
}

.sub-worklife__item-title--ja span::after {
  content: attr(data-ja);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-block;
}

.sub-worklife__item-text span {
  font-size: 0.75rem;
  line-height: 2.5833333333;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (max-width: 768px) {
  .sub-worklife__item-text span {
    line-height: 1.5;
    margin-top: 0.3125rem;
  }
}

.sub-worklife-welfare {
  padding-top: 5.9rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-welfare {
    padding-top: 2.5rem;
  }
}

.sub-worklife-welfare__lead {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-welfare__lead {
    margin-top: 0.625rem;
  }
}

.sub-worklife-welfare__cards {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-welfare__cards {
    margin-top: 1.25rem;
  }
}

.sub-worklife-certification {
  padding-top: 5.0625rem;
  padding-bottom: 9.875rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-certification {
    padding-top: 2.5rem;
    padding-bottom: 6.25rem;
  }
}

.sub-worklife-certification__cards {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .sub-worklife-certification__cards {
    margin-top: 0.9375rem;
  }
}

.sub-message-top {
  padding-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top {
    padding-top: 3.125rem;
  }
}

.sub-message-top__body {
  background-image: url(../images/message/message-top-bgi.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2.775rem;
  padding-bottom: 8.8125rem;
  overflow-x: hidden;
  margin-top: 2.40625rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    margin-top: 1.25rem;
  }
}

.sub-message-top__body .inner {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body .inner {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sub-message-top__body-catch {
  color: #536fb9;
  font-size: 5rem;
  line-height: 1.125;
  letter-spacing: 0.12em;
  font-weight: 500;
  writing-mode: vertical-rl;
  padding-top: 3.6875rem;
  padding-left: 6.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch {
    writing-mode: initial;
    font-size: 2rem;
    line-height: 1.5;
    padding-left: 0;
    padding-top: initial;
  }
}

.sub-message-top__body-catch p {
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch p {
    text-align: center;
  }
}

.sub-message-top__body-catch p:nth-of-type(1) {
  padding-top: 5.25rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch p:nth-of-type(1) {
    padding-top: initial;
  }
}

.sub-message-top__body-catch p:nth-of-type(1)::before {
  content: "「";
  position: absolute;
  top: -0.1875rem;
  right: -1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch p:nth-of-type(1)::before {
    position: static;
  }
}

.sub-message-top__body-catch p:nth-of-type(2)::after {
  content: "」";
  margin-top: -5.625rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch p:nth-of-type(2)::after {
    position: static;
    margin-top: initial;
    margin-left: -1.25rem;
  }
}

.sub-message-top__body-catch p:nth-of-type(2) {
  margin-top: 16.375rem;
  margin-right: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-catch p:nth-of-type(2) {
    margin-top: initial;
    margin-right: initial;
    margin-left: 5.625rem;
  }
}

.sub-message-top__body-head {
  font-size: 10rem;
  line-height: 1.31875;
  letter-spacing: 0em;
  font-weight: 900;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 6.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-head {
    margin-left: initial;
    font-size: 5rem;
    line-height: 0.7;
    text-align: right;
    margin-top: 1.25rem;
  }
}

.sub-message-top__body-text {
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.02em;
  margin-top: -0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: -1.25rem;
  }
}

.sub-message-top__body-text p + p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-text p + p {
    margin-top: 1.3125rem;
  }
}

.sub-message-top__body-bottom {
  margin-top: 2.3125rem;
  font-size: 1.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-message-top__body-bottom {
    margin-top: 1.25rem;
    font-size: 1.375rem;
    text-align: center;
  }
}

.sub-message-top__body-bottom span {
  border-bottom: 1px solid #000;
}

.sub-message-personal {
  padding-top: 6.875rem;
  padding-bottom: 12.6rem;
}
@media screen and (max-width: 768px) {
  .sub-message-personal {
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}

.sub-message-personal__title {
  text-align: center;
}

.sub-message-personal__lead {
  text-align: center;
  margin-top: 1.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-message-personal__lead {
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-message-personal__lead span {
    display: inline-block;
  }
}

.sub-message-personal__lists {
  margin-top: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-message-personal__lists {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.sub-message-personal__list-image {
  width: 8.75rem;
  margin-left: auto;
  margin-right: auto;
}
.sub-message-personal__list-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sub-message-personal__list-title {
  text-align: center;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #000;
  color: #536fb9;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-message-personal__list-title {
    padding-bottom: 0.625rem;
    margin-top: 0rem;
  }
}

.sub-message-personal__list-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-message-personal__list-text {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

@keyframes slide_in {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.intern_fv {
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .intern_fv {
    height: 150vw;
  }
}
.intern_fv .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/internship/fv_bg.jpg) no-repeat top center/cover;
  background-attachment: fixed;
}
.intern_fv .fv__img_1 {
  width: 343px;
  position: absolute;
  top: 0px;
  right: calc(50% + 386px);
  filter: drop-shadow(10px 10px 0px rgba(4, 21, 64, 0.4));
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__img_1 {
    width: 42vw;
    right: calc(100% - 45vw);
    filter: drop-shadow(8px 8px 0px rgba(4, 21, 64, 0.4));
  }
}
.intern_fv .fv__img_2 {
  width: 466px;
  position: absolute;
  top: 110px;
  left: calc(50% + 360px);
  filter: drop-shadow(10px 10px 0px rgba(4, 21, 64, 0.4));
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__img_2 {
    width: 54vw;
    top: 6.7vw;
    left: calc(100% - 53vw);
    filter: drop-shadow(8px 8px 0px rgba(4, 21, 64, 0.4));
  }
}
.intern_fv .fv__img_3 {
  width: 310px;
  position: absolute;
  bottom: 70px;
  right: calc(50% + 300px);
  filter: drop-shadow(10px 10px 0px rgba(4, 21, 64, 0.4));
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__img_3 {
    width: 42vw;
    right: calc(100% - 58vw);
    bottom: 7vw;
    filter: drop-shadow(8px 8px 0px rgba(4, 21, 64, 0.4));
  }
}
.intern_fv .fv__txt {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__txt {
    gap: 20px;
    padding-top: 25vw;
  }
}
.intern_fv .fv__txt_1 {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 2em;
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__txt_1 {
    font-size: 0.875rem;
  }
}
.intern_fv .fv__txt_2 {
  width: 754px;
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__txt_2 {
    width: 330px;
  }
}
.intern_fv .fv__txt_2 span {
  font-style: italic;
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
}
.intern_fv .fv__txt_2 span:nth-child(1) {
  font-size: 8.125rem;
  font-weight: 500;
}
.intern_fv .fv__txt_2 span:nth-child(2) {
  font-size: 6.875rem;
  color: #fff;
  filter: url(#dilate);
  letter-spacing: 0.05em;
  overflow: hidden;
  height: 1em;
}
.intern_fv .fv__txt_2 span:nth-child(2) + svg {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.intern_fv .fv__txt_3 {
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .intern_fv .fv__txt_3 {
    font-size: 0.75rem;
    margin-top: 0;
  }
}

.intern_anc {
  background-color: #E9F7FC;
  padding: 70px 15px;
}
@media screen and (max-width: 768px) {
  .intern_anc {
    padding: 40px 10px;
  }
}
.intern_anc nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .intern_anc nav {
    gap: 6px;
  }
}
.intern_anc nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 300px;
  height: 120px;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .intern_anc nav a {
    font-size: 0.75rem;
    height: 100px;
    padding-bottom: 20px;
  }
}
.intern_anc nav a::before {
  content: "";
  background-color: #536FB9;
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .intern_anc nav a::before {
    height: 20px;
  }
}
.intern_anc nav a::after {
  content: "";
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg);
  width: 11px;
  height: 11px;
  position: absolute;
  left: calc(50% - 4px);
  bottom: 12px;
}
@media screen and (max-width: 768px) {
  .intern_anc nav a::after {
    width: 9px;
    height: 9px;
    bottom: 8px;
  }
}

.intern__sec_title {
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .intern__sec_title {
    font-size: 1.5rem;
  }
}

.intern_entry {
  text-align: center;
}
.intern_entry p {
  margin: 70px 0 40px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intern_entry p {
    margin: 40px 0 20px;
    text-align: left;
  }
}
.intern_entry .intern_btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .intern_entry .intern_btn {
    margin-bottom: 60px;
  }
}

.sub-intern-entry__button.intern_btn {
  display: block;
  width: 464px;
}
@media screen and (max-width: 768px) {
  .sub-intern-entry__button.intern_btn {
    width: 280px;
  }
}
.sub-intern-entry__button.intern_btn a {
  width: 100%;
}
.sub-intern-entry__button.blue1 a {
  background-color: #536FB9;
}
.sub-intern-entry__button.blue1::after {
  background-color: #536FB9;
}
.sub-intern-entry__button.blue1:hover a {
  background-color: #fff;
  color: #536FB9;
}
.sub-intern-entry__button.blue1:hover a span::before {
  border-color: #536FB9;
}

.intern__list_1 {
  padding: 1em 1.5em 1.2em;
  margin: 1.4em 0;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .intern__list_1 {
    padding: 0.6em 0.6em 0.8em;
  }
}
.intern__list_1.bg_blue {
  background: rgb(233, 247, 252);
  background: linear-gradient(151deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
}
.intern__list_1 ul li {
  position: relative;
  padding-left: 1.1em;
  margin: 0.2em 0;
}
@media screen and (max-width: 768px) {
  .intern__list_1 ul li {
    font-size: 0.875rem;
  }
}
.intern__list_1 ul li::before {
  content: "";
  background-color: #42ABFA;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: calc((1.6em - 10px) / 2);
}
.intern__list_1 ul li small {
  font-size: 0.875rem;
  display: inline-block;
  margin-left: 0.8em;
}
@media screen and (max-width: 768px) {
  .intern__list_1 ul li small {
    margin-left: 0;
    display: block;
    font-size: 0.75rem;
  }
}

.intern__list_2 {
  margin-top: 0.8em;
  border-top: solid 1px #D7E7FF;
}
@media screen and (max-width: 768px) {
  .intern__list_2 {
    margin-bottom: 1.6em;
  }
}
.intern__list_2 li {
  border-bottom: solid 1px #D7E7FF;
  position: relative;
  padding: 0.3em 0 0.3em 1.1em;
}
@media screen and (max-width: 768px) {
  .intern__list_2 li {
    font-size: 0.875rem;
  }
}
.intern__list_2 li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0.3em;
}

.sec_intern__1 {
  position: relative;
}
.sec_intern__1 .sub-intern-overview__table-bottom {
  margin-bottom: 24px;
}
.sec_intern__1 .sub-intern-overview__table-course {
  background: rgb(233, 247, 252);
  background: linear-gradient(151deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
  padding: 1.6em 1.5em 1.8em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sec_intern__1 .sub-intern-overview__table-course i {
  width: 114px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.sec_intern__1 .sub-intern-overview__table-course h3 {
  margin-bottom: 0.6em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .sec_intern__1 .sub-intern-overview__table-course h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_intern__1 .sub-intern-overview__table-course p {
    font-size: 0.875rem;
    text-align: left;
  }
}
.sec_intern__1 .intern_btn {
  position: absolute;
  bottom: -26px;
  left: calc(50% - 232px);
}
@media screen and (max-width: 768px) {
  .sec_intern__1 .intern_btn {
    left: calc(50% - 142px);
  }
}

.sec_intern__2 {
  position: relative;
  margin-top: 160px !important;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 {
    margin-top: 100px !important;
  }
}
.sec_intern__2 .intern_btn {
  position: absolute;
  bottom: -36px;
  left: calc(50% - 232px);
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .intern_btn {
    left: calc(50% - 142px);
    bottom: -30px;
  }
}
.sec_intern__2 .box_event {
  background: linear-gradient(70deg, rgb(233, 252, 248) 0%, rgb(189, 244, 235) 100%);
  padding: 0 3rem 2rem;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .box_event {
    padding: 0 0.8rem 2rem;
    margin-top: 1em;
  }
}
.sec_intern__2 .box_event__item {
  border-top: solid 1px #00B498;
  padding: 3.4rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .box_event__item {
    padding: 2rem 0 0.8rem;
  }
}
.sec_intern__2 .box_event__item:first-child {
  border-top: none;
}
.sec_intern__2 .box_event__item h2 {
  display: flex;
  align-items: center;
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  gap: 1em;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .box_event__item h2 {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.6em;
    text-align: center;
  }
}
.sec_intern__2 .box_event__item h2 span {
  font-size: 1.625rem;
  background-color: #fff;
  border: solid 3px #00B498;
  width: 190px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.03em;
  color: #00B498;
  padding-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .box_event__item h2 span {
    font-size: 1.125rem;
    width: 140px;
    height: 34px;
    border-width: 2px;
  }
}
.sec_intern__2 .box_event__item p {
  line-height: 1.8;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  .sec_intern__2 .box_event__item p {
    font-size: 0.875rem;
  }
}

.sec_intern__3 {
  margin-top: 160px !important;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 {
    margin-top: 100px !important;
  }
}
.sec_intern__3 .box_voice {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice {
    margin-top: 20px;
    gap: 20px;
  }
}
.sec_intern__3 .box_voice__item {
  background: rgb(233, 247, 252);
  background: linear-gradient(-60deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
  width: calc(50% - 20px);
  height: 500px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item {
    width: 100%;
    height: auto;
    padding: 20px 20px 0;
  }
}
.sec_intern__3 .box_voice__item p {
  width: 100%;
  height: 284px;
  background-color: #fff;
  color: #041540;
  padding: 25px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item p {
    padding: 15px 20px 40px;
    font-size: 1rem;
    height: auto;
  }
}
.sec_intern__3 .box_voice__item dl {
  display: flex;
  justify-content: space-between;
  margin-top: -30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item dl {
    align-items: flex-end;
  }
}
.sec_intern__3 .box_voice__item dl dt {
  padding: 70px 20px 10px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item dl dt {
    padding: 50px 10px 20px;
  }
}
.sec_intern__3 .box_voice__item dl dt span {
  display: block;
}
.sec_intern__3 .box_voice__item dl dt span:nth-child(1) {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item dl dt span:nth-child(1) {
    font-size: 0.75rem;
  }
}
.sec_intern__3 .box_voice__item dl dt span:nth-child(2) {
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item dl dt span:nth-child(2) {
    font-size: 1rem;
  }
}
.sec_intern__3 .box_voice__item dl dd {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .sec_intern__3 .box_voice__item dl dd {
    width: 120px;
  }
}
.sec_intern__3 .intern_btn {
  margin: 70px auto 0;
}
.sub-intern-fv__title {
  top: 50%;
  transform: translateY(calc(-50% + 1.40625rem));
}
@media screen and (max-width: 768px) {
  .sub-intern-fv__title {
    top: 2.125rem;
    transform: none;
  }
}

.sub-intern-fv__sub-title {
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sub-intern-fv__sub-title {
    font-size: 0.75rem;
  }
}

.sub-intern-inner {
  padding-bottom: 12.625rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-inner {
    padding-bottom: 3.75rem;
  }
}

.sub-intern-sub-text {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-sub-text {
    margin-top: 1.875rem;
  }
}

.sub-intern-sub-text__wrap {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-sub-text__wrap {
    font-size: 0.875rem;
  }
}

.sub-intern-entry {
  margin-top: 1.625rem;
}

.sub-intern-entry--under-detail {
  margin-top: 5.875rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-entry--under-detail {
    margin-top: 2.5rem;
  }
}

.sub-intern-entry__content {
  display: flex;
  align-items: center;
  gap: 2.0625rem;
  padding: 2.375rem 2.1875rem 2.5rem;
  background: linear-gradient(70deg, rgb(233, 252, 248) 0%, rgb(189, 244, 235) 100%);
}
@media screen and (max-width: 768px) {
  .sub-intern-entry__content {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.sub-intern-entry__text {
  font-size: 1rem;
  line-height: 1.8125;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-entry__text {
    font-size: 0.875rem;
  }
}

.sub-intern-entry__button {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-intern-entry__button {
    margin-top: 1.25rem;
  }
}

.sub-intern-entry__button a {
  min-width: fit-content;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 1.40625rem 3.875rem;
  background-color: #00b498;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-intern-entry__button a {
    font-size: 1rem;
  }
}

.sub-intern-entry__button a span {
  top: 48%;
}

.sub-intern-entry__button a:hover {
  color: #00b498;
}

.sub-intern-entry__button::after {
  background-color: #00b498;
}

.sub-intern-entry__button a:hover span::before {
  border-color: #00b498;
}

.sub-intern-example {
  margin-top: 6.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-example {
    margin-top: 2.5rem;
  }
}

.sub-intern-example__title {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__title {
    font-size: 1.25rem;
  }
}

.sub-intern-example__content {
  margin-top: 2.125rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__content {
    flex-direction: column-reverse;
  }
}

.sub-intern-example__left-content {
  width: 37.3125rem;
  height: 37.3125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__left-content {
    margin-top: 1.875rem;
    width: 100%;
    padding-top: 100%;
    height: 0;
  }
}

.sub-intern-example__image-group {
  position: absolute;
  width: 17.875rem;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__image-group {
    width: 45%;
  }
}

.sub-intern-example__image-introduce {
  position: absolute;
  width: 17.875rem;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__image-introduce {
    width: 45%;
  }
}

.sub-intern-example__image-talk {
  position: absolute;
  width: 17.875rem;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__image-talk {
    width: 45%;
  }
}

.sub-intern-example__image-week {
  position: absolute;
  width: 17.875rem;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__image-week {
    width: 45%;
  }
}

.sub-intern-example__image-program {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25.375rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .sub-intern-example__image-program {
    width: 50%;
  }
}

.sub-intern-example__right-content {
  width: 27.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__right-content {
    width: 100%;
  }
}

.sub-intern-example__right-content-image-top {
  position: relative;
  width: 17rem;
  margin-left: auto;
}

.sub-intern-example__right-content-image-bottom {
  position: relative;
  z-index: 1;
  width: 19.6875rem;
  margin-top: -3.8125rem;
}

.sub-intern-example__text-big {
  margin-top: 2.125rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__text-big {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.sub-intern-example__text-small {
  margin-top: 1.875rem;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-example__text-small {
    margin-top: 1rem;
  }
}

.sub-intern-overview {
  margin-top: 7.375rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview {
    margin-top: 2.5rem;
  }
}

.sub-intern-overview__title {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.sub-intern-overview__text {
  font-size: 1rem;
  line-height: 1.8125;
  letter-spacing: 0.02em;
}

.sub-intern-overview__wrap {
  position: relative;
  margin-top: 2.8125rem;
  margin-left: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(70deg, #42aefd, #536fb9);
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__wrap {
    margin-top: 1.875rem;
    margin-left: initial;
    padding: 0.625rem;
  }
}

.sub-intern-overview__topics {
  position: absolute;
  left: -0.625rem;
  top: 0;
  transform: translate(-0.625rem, -0.625rem);
  width: 7.75rem;
  height: 2.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #051540;
  color: #fff;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.sub-intern-overview__content {
  padding: 3.0625rem 2.46875rem 2.71875rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__content {
    padding: 1.875rem 0.625rem;
  }
}

.sub-intern-overview__content-title {
  font-size: 2.5rem;
  line-height: 1.45;
  color: #42abfa;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__content-title {
    font-size: 1.25rem;
  }
}

.sub-intern-overview__content-text {
  margin-top: 0.90625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__content-text {
    font-size: 0.875rem;
  }
}

.sub-intern-overview__table {
  margin-top: 1.9375rem;
}

.sub-intern-overview__table-title {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sub-intern-overview__table-list {
  padding: 0.3125rem 0rem;
  display: grid;
  grid-template-columns: 16.1875rem 1fr;
  border-bottom: 0.125rem solid #D7E7FF;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__table-list {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
  }
}

.sub-intern-overview__table-list:nth-of-type(1) {
  border-top: 0.125rem solid #D7E7FF;
}

.sub-intern-overview__table-list dt {
  color: #536fb9;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__table-list dt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.sub-intern-overview__table-list dd {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__table-list dd {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.sub-intern-overview__table-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5625rem;
  margin-top: 2.4375rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .sub-intern-overview__table-bottom {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
    gap: 0.9375rem;
  }
}

.sub-intern-detail {
  margin-top: 4.0625rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail {
    margin-top: 3.125rem;
  }
}

.sub-intern-detail__tab-menu {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail__tab-menu {
    flex-wrap: wrap;
    gap: 0.0625rem;
    margin-top: 2.53125rem;
  }
}

.sub-intern-detail__tab {
  width: 25%;
  min-width: fit-content;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail__tab {
    width: calc(50% - 0.0625rem);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 600px) {
  .sub-intern-detail__tab {
    font-size: 0.75rem;
  }
}

.sub-intern-detail__tab span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.625rem;
  background-color: #fff;
  color: #041540;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sub-intern-detail__tab span {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.625rem;
  }
}

.sub-intern-detail__tab.is-active span {
  color: #536fb9;
}

@media screen and (max-width: 768px) {
  .sub-intern-detail__tab--bunkei {
    width: 100%;
    justify-content: center;
    gap: 1.25rem;
  }
}

.sub-intern-detail__tab--bunkei span {
  background-color: #FFDCD1;
}
@media screen and (max-width: 600px) {
  .sub-intern-detail__tab--bunkei span {
    font-size: 0.5rem;
  }
}

.sub-intern-detail-tab__content {
  padding: 2.6875rem 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail-tab__content {
    padding: 1.25rem 0.9375rem;
  }
}

.sub-intern-detail-tab__title {
  text-align: left;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail-tab__title {
    font-size: 1.5rem;
  }
}

.sub-intern-detail-tab__texts {
  margin-top: 2.125rem;
  padding: 1.3125rem 1.125rem 1.625rem 1.8125rem;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail-tab__texts {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding-bottom: 1.25rem;
  }
}

.sub-intern-detail-tab__lists {
  margin-top: 1.0625rem;
  margin-left: 0.25rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail-tab__lists {
    font-size: 0.75rem;
  }
}

.sub-intern-detail-tab__list-wrap {
  display: flex;
}

.sub-intern-detail-tab__lists-heading {
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .sub-intern-detail-tab__lists-heading {
    text-wrap: nowrap;
    min-width: 4.375rem;
  }
}

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

.sub-intern-detail__heading {
  width: fit-content;
  height: 2.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #051540;
  color: #fff;
  padding: 0.3125rem 1.875rem;
  clip-path: polygon(0.9375rem 0, 100% 0, calc(100% - 0.9375rem) 100%, 0 100%);
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.fv__title--business {
  top: calc(3.4375rem + (100% - 3.4375rem) / 2);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv__title--business {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
    top: 2.125rem;
    left: 2.875rem;
    padding-left: initial;
    z-index: 2;
    transform: none;
  }
}

.sub-business {
  padding-top: 9.8125rem;
  padding-bottom: 18.75rem;
}
@media screen and (max-width: 768px) {
  .sub-business {
    padding-top: 1.875rem;
    padding-bottom: 6.25rem;
  }
}

.sub-business__lead {
  font-size: 1.875rem;
  line-height: 1.7333333333;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
}
@media screen and (max-width: 768px) {
  .sub-business__lead {
    font-size: 1rem;
    line-height: 2;
  }
}

.movie_area {
  margin: 0 auto;
  padding-top: 50px;
  width: 1080px;
  height: 658px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.movie_area:before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.movie_area:after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.movie_area iframe {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .movie_area {
    width: 90%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .movie_area {
    padding-top: 30px;
    width: 90%;
    height: 58vw;
  }
  .movie_area:before {
    width: 2px;
  }
  .movie_area:before {
    width: 2px;
  }
}
.sub-business__body {
  margin-top: 5.03125rem;
  padding-top: 6.9375rem;
  background-image: url(../images/business/business-bgi.jpg);
  background-size: 100vw 82.125rem;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sub-business__body {
    padding-top: 3.48125rem;
    margin-top: 2.5rem;
    background-image: url(../images/business/business-bgi_sp.jpg);
    background-size: cover;
    padding-bottom: 4.1875rem;
  }
}

.sub-business__image {
  width: 100%;
}
.sub-business__image img {
  aspect-ratio: 724/285;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sub-business__image img {
    aspect-ratio: 325/130;
  }
}

.sub-business__list {
  width: 67.037037037%;
}
@media screen and (max-width: 768px) {
  .sub-business__list {
    width: 100%;
  }
}

.sub-business__list::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 100%);
  width: 13.625rem;
  height: 8.375rem;
  display: inline-block;
  background-image: url(../images/business/business-treat.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13.625rem 8.375rem;
}
@media screen and (max-width: 768px) {
  .sub-business__list::after {
    width: 6.875rem;
    height: 4.1875rem;
    background-size: 6.875rem 4.1875rem;
  }
}

.sub-business__list + .sub-business__list {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-business__list + .sub-business__list {
    margin-top: 3.0625rem;
  }
}

.sub-business__list a {
  display: block;
  position: relative;
}

.sub-business__list:nth-of-type(odd) {
  margin-left: auto;
}

.sub-business__list:nth-of-type(even) {
  margin-left: 2.75rem;
}
@media screen and (max-width: 768px) {
  .sub-business__list:nth-of-type(even) {
    margin-left: initial;
  }
}

.sub-business__num {
  font-size: 1rem;
  line-height: 2.625;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #051540;
  position: absolute;
  top: 1.25rem;
  left: -2.75rem;
}
@media screen and (max-width: 768px) {
  .sub-business__num {
    font-size: 0.625rem;
    line-height: 1.3;
    left: 0;
    top: -0.3125rem;
    transform: translateY(-100%);
  }
}

.sub-business__num::after {
  content: "";
  display: block;
  width: calc(8.64rem * 1.41421356);
  height: 0.0625rem;
  background-color: hsl(0, 0%, 0%);
  position: absolute;
  transform: rotate(-45deg);
  top: 1.875rem;
  left: -0.625rem;
}
@media screen and (max-width: 768px) {
  .sub-business__num::after {
    content: none;
  }
}

.sub-business__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3.4375rem;
  padding-right: 2.23125rem;
}
@media screen and (max-width: 768px) {
  .sub-business__overlay {
    padding-left: 1.0625rem;
    padding-right: 1.25rem;
  }
}

.sub-business__overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg, rgb(0, 143, 248) 5%, rgb(0, 48, 177) 100%);
  transition: all 0.3s;
  opacity: 0.5;
}

.sub-business__list-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-business__list-title {
    font-size: 1.25rem;
    line-height: 1.35;
  }
}

.sub-business__list-title::after {
  content: attr(data-en);
  display: inline-block;
  font-size: 1.25rem;
  line-height: 2.1;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-business__list-title::after {
    font-size: 0.75rem;
    line-height: 2;
  }
}

.sub-business__arrow {
  width: 0.5rem;
  height: 1rem;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sub-business__arrow {
    width: 0.28125rem;
    height: 0.53125rem;
  }
}
.sub-business__arrow img {
  object-fit: cover;
  transition: all 0.3s;
}

.sub-business__arrow::after {
  content: "";
  display: block;
  width: 4.85625rem;
  height: 0.0625rem;
  background-color: #ffffff;
  position: absolute;
  bottom: -1.3125rem;
  right: -2.23125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sub-business__arrow::after {
    width: 2.5rem;
    bottom: -0.6875rem;
    right: -1.25rem;
  }
}

.sub-business__list:hover .sub-business__overlay::before {
  opacity: 0.6;
  transition: all 0.3s;
}
.sub-business__list:hover .sub-business__arrow img {
  transform: translateX(10px);
  transition: all 0.3s;
}
.sub-business__list:hover .sub-business__arrow::after {
  width: 4.23125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sub-business__list:hover .sub-business__arrow::after {
    width: 1.875rem;
  }
}

.sub-sec-bottom__title--business span {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-top: 0.875rem;
  margin-bottom: -0.125rem;
  display: inline-block;
}

.page-business-fv {
  margin-top: 6.25rem;
  padding-top: 14.3125rem;
  padding-bottom: 10.9375rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(6.25rem 0, 100% 0%, 100% 30%, calc(100% - 6.25rem) 100%, 0% 100%, 0% 70%);
}
@media screen and (max-width: 768px) {
  .page-business-fv {
    margin-top: initial;
    padding-top: 7.5rem;
    padding-bottom: 5.625rem;
    clip-path: polygon(3.125rem 0, 100% 0%, 100% calc(100% - 7.5rem), calc(100% - 3.125rem) 100%, 0% 100%, 0% 7.5rem);
  }
}

.page-business-fv__wrapper {
  position: relative;
  text-align: center;
}

.page-business-fv__title {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #ffffff;
  gap: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-business-fv__title {
    font-size: 2rem;
    line-height: 1.25;
    gap: 0;
  }
}

.page-business-fv__title-en {
  display: block;
  font-size: 1.25rem;
  line-height: 2.1;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-business-fv__title-en {
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.page-business-fv__num {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  position: absolute;
  top: -0.875rem;
  left: -2.3125rem;
  transform: translate(-100%, -100%);
}
@media screen and (max-width: 768px) {
  .page-business-fv__num {
    top: -0.625rem;
    left: 0;
    transform: translate(0, -100%);
  }
}

.page-business-fv__num::after {
  content: "";
  display: block;
  width: calc(8.64rem * 1.41421356);
  height: 0.0625rem;
  transform: rotate(-45deg);
  background-color: #ffffff;
  top: 1.25rem;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .page-business-fv__num::after {
    content: none;
  }
}

.page-business-top {
  padding-top: 5.4375rem;
  padding-bottom: 4.59375rem;
}
@media screen and (max-width: 768px) {
  .page-business-top {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.page-business-top__heading {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
}
@media screen and (max-width: 768px) {
  .page-business-top__heading {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.page-business-top__lead {
  margin-top: 2.0625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page-business-top__lead {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

.page-business-keyword {
  background-image: url(../images/business/page-business-bgi.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 6.8125rem;
  padding-bottom: 5.875rem;
  clip-path: polygon(7.5% 0, 100% 0%, 100% 79%, 92.5% 100%, 0% 100%, 0% 21%);
}
@media screen and (max-width: 768px) {
  .page-business-keyword {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    clip-path: polygon(1.25rem 0, 100% 0%, 100% calc(100% - 5rem), calc(100% - 1.25rem) 100%, 0% 100%, 0% 5rem);
  }
}

.page-business-keyword__title {
  text-align: center;
  color: #051540;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.page-business-keyword__title p {
  display: inline-block;
  padding-bottom: 0.53125rem;
  border-bottom: 1px solid #536fb9;
}

.page-business-keyword__title span {
  color: #536fb9;
}

.page-business-keyword__lists {
  margin-top: 6.525rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__lists {
    margin-top: 3.125rem;
  }
}

.page-business-keyword__list {
  display: flex;
  gap: 2.125rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list {
    flex-direction: column;
    position: relative;
    gap: initial;
  }
}

.page-business-keyword__list + .page-business-keyword__list {
  padding-top: 8.1875rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list + .page-business-keyword__list {
    margin-top: 4.375rem;
    padding-top: initial;
  }
}

.page-business-keyword__list:nth-of-type(even) {
  flex-direction: row-reverse;
  padding-right: 3.6875rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list:nth-of-type(even) {
    flex-direction: column;
    padding-right: initial;
  }
}

.page-business-keyword__list-image {
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-image {
    width: 100%;
  }
}
.page-business-keyword__list-image img {
  aspect-ratio: 400/290;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-image img {
    aspect-ratio: 5/3;
  }
}

.page-business-keyword__list-contents {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-contents {
    display: contents;
  }
}

.page-business-keyword__list:nth-of-type(odd) .page-business-keyword__list-contents {
  padding-left: 2.875rem;
  padding-right: 0.875rem;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list:nth-of-type(odd) .page-business-keyword__list-contents {
    padding-left: initial;
    padding-right: initial;
    padding-top: initial;
  }
}

.page-business-keyword__list-num {
  position: absolute;
  font-size: 1.0625rem;
  line-height: 1.4117647059;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  color: #051540;
  display: inline-block;
  padding: 2.625rem 2.75rem 2.3125rem 2.875rem;
  background-color: #fff;
  top: -2.9375rem;
  left: 0;
  z-index: 1;
  clip-path: polygon(1.875rem 0, 100% 0%, calc(100% - 1.875rem) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-num {
    font-size: 0.9375rem;
    line-height: 1.4;
    padding: 1.25rem 1.875rem;
    top: -2.1875rem;
    left: -1.25rem;
  }
}

.page-business-keyword__list:nth-of-type(even) .page-business-keyword__list-num {
  left: -2.5rem;
  top: -4.375rem;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list:nth-of-type(even) .page-business-keyword__list-num {
    top: -2.1875rem;
    left: -1.25rem;
  }
}

.page-business-keyword__list-title {
  font-size: 5rem;
  line-height: 1.2625;
  letter-spacing: 0em;
  font-weight: 700;
  background: rgb(66, 174, 254);
  background: radial-gradient(circle, rgb(66, 174, 254) 0%, rgb(83, 111, 185) 80%);
  -webkit-background-clip: text;
  /* テキストで切り抜く */
  -webkit-text-fill-color: transparent;
  /* 切り抜いた部分は背景を表示 */
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-title {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-top: 0.625rem;
  }
}

.page-business-keyword__list-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page-business-keyword__list-text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.page-business-product {
  padding-top: 6.5rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .page-business-product {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.page-business-product__title {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-business-product__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.page-business-product__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem;
  margin-top: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .page-business-product__lists {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.page-business-product__list {
  display: block;
  position: relative;
}

.page-business-product__list a {
  display: block;
  position: relative;
}

.page-business-product__list a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg, rgb(0, 143, 248) 5%, rgb(0, 48, 177) 100%);
  transition: all 0.3s;
  opacity: 0.5;
}

.page-business-product__list:hover a::before {
  transition: all 0.3s;
  opacity: 0.6;
}

.page-business-product__list-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
}

.page-business-product__list-title::after {
  content: attr(data-en);
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.02em;
  font-weight: 500;
}

main.wire-main .page-business-fv {
  background-image: url(../images/business/wire/wire-fv.jpg);
}
main.wire-main .page-business-keyword__list-title {
  font-size: 3.75rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  main.wire-main .page-business-keyword__list-title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

main.electronics-main .page-business-fv {
  background-image: url(../images/business/electronics/electronics-fv.jpg);
}

main.hybrid-main .page-business-fv {
  background-image: url(../images/business/hybrid/hybrid-fv.jpg);
}
main.hybrid-main .page-business-keyword__list-title {
  font-size: 3.75rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  main.hybrid-main .page-business-keyword__list-title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

main.connector-main .page-business-fv {
  background-image: url(../images/business/connector/connector.jpg);
}
main.connector-main .page-business-keyword__list-title {
  font-size: 3.75rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  main.connector-main .page-business-keyword__list-title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

.sub-voice {
  padding-bottom: 15.125rem;
  padding-top: 9.875rem;
}
@media screen and (max-width: 768px) {
  .sub-voice {
    padding-bottom: 6.25rem;
    padding-top: 3.125rem;
  }
}

.sub-voice__lead {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-voice__lead {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.sub-voice-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-top: 2.53125rem;
}
@media screen and (max-width: 768px) {
  .sub-voice-buttons {
    gap: 0.625rem;
    padding-left: initial;
    padding-right: initial;
    margin-top: 2.53125rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.sub-voice-button {
  transition: 0.3s;
  will-change: transform, animation, position;
  height: 5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  position: relative;
  clip-path: polygon(1.25rem 0, 100% 0%, calc(100% - 1.25rem) 100%, 0% 100%);
  cursor: pointer;
}
.sub-voice-button:hover {
  transform: scale(1.03, 1.03);
}
@media screen and (max-width: 768px) {
  .sub-voice-button {
    clip-path: polygon(0.5rem 0, 100% 0%, calc(100% - 0.5rem) 100%, 0% 100%);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    padding: 0.8125rem 0rem 0.8125rem;
    font-size: 0.875rem;
    height: 100%;
  }
}

.sub-voice-button.all {
  background-color: #051540;
}

.sub-voice-button.blue {
  background-color: #536fb9;
}

.sub-voice-button.cyan {
  background-color: #00CAFA;
}

.sub-voice-button.green {
  background-color: #00B498;
}

.sub-voice__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8125rem;
  align-items: center;
  margin-top: 5.875rem;
}
@media screen and (max-width: 768px) {
  .sub-voice__cards {
    gap: 0.625rem;
    align-items: normal;
    margin-top: 3.125rem;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.voice-card__modal-inner {
  position: relative;
}

@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
.voice-card__modal-inner {
  position: relative;
}

.voice-card {
  cursor: pointer;
  position: relative;
  display: none;
  width: calc(33.333333% - 2.8125rem * 2 / 3);
  opacity: 0;
  visibility: hidden;
  transform-origin: center;
  animation: zoomOut 20s ease-in forwards;
}
@media screen and (max-width: 768px) {
  .voice-card {
    width: calc(50% - 0.625rem / 2);
  }
}

.voice-card.active {
  display: block;
  visibility: visible;
  animation: zoomIn 0.5s ease-in forwards;
}

.voice-card[class*=cyan] {
  border: 0.25rem solid #00CAFA;
}
.voice-card[class*=cyan] .voice-card__title {
  color: #00CAFA;
}
.voice-card[class*=cyan]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(229, 247, 253) 100%);
  transition: all 0.3s;
}
.voice-card[class*=cyan] .voice-card__inner::after {
  background-image: url(../images/voice/arrow-cyan.svg);
}

.voice-card[class*=green] {
  border: 0.25rem solid #00B498;
}
.voice-card[class*=green] .voice-card__title {
  color: #00B498;
}
.voice-card[class*=green]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(227, 252, 250) 100%);
  transition: all 0.3s;
}
.voice-card[class*=green] .voice-card__inner::after {
  background-image: url(../images/voice/arrow-green.svg);
}

.voice-card[class*=blue] {
  border: 0.25rem solid #536fb9;
}
.voice-card[class*=blue] .voice-card__title {
  color: #536fb9;
}
.voice-card[class*=blue]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(230, 237, 255) 100%);
  transition: all 0.3s;
}
.voice-card[class*=blue] .voice-card__inner::after {
  background-image: url(../images/voice/arrow-blue.svg);
}

.voice-card:hover::before {
  opacity: 0;
  transition: all 0.3s;
}

.voice-card__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice-card__inner {
    height: 100%;
  }
}

.voice-card__inner::after {
  content: "";
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
}
@media screen and (max-width: 768px) {
  .voice-card__inner::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
  }
}

.voice-card__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 15.4375rem;
  padding: 2.25rem 0.625rem 2.625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .voice-card__contents {
    padding: 0.625rem;
    height: 100%;
    justify-content: space-between;
  }
}

.voice-card__title {
  min-height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .voice-card__title {
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.voice-card__title::after {
  content: "";
  display: block;
  width: 3.9375rem;
  height: 0.0625rem;
  background-color: #536fb9;
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
}

.voice-card__detail {
  margin-top: 2.4375rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .voice-card__detail {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.voice-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46.875rem;
  height: auto;
  z-index: 10000;
  padding: 2.875rem 2.5rem 2.375rem;
}
@media screen and (max-width: 768px) {
  .voice-modal {
    width: 90%;
    padding: 1.25rem 0.3125rem 0.9375rem 0.9375rem;
    max-height: 90%;
  }
}

.voice-modal.cyan {
  border: 4px solid #00CAFA;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(229, 247, 253) 100%);
}
.voice-modal.cyan .voice-modal__modal-catch {
  background-color: #00CAFA;
}
.voice-modal.cyan .voice-modal__modal-title {
  color: #00CAFA;
}
.voice-modal.cyan .voice-modal__modal-detail::before {
  background-color: #00CAFA;
}

.voice-modal.green {
  border: 4px solid #00B498;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(227, 252, 250) 100%);
}
.voice-modal.green .voice-modal__modal-catch {
  background-color: #00B498;
}
.voice-modal.green .voice-modal__modal-title {
  color: #00B498;
}
.voice-modal.green .voice-modal__modal-detail::before {
  background-color: #00B498;
}

.voice-modal.blue {
  border: 4px solid #536fb9;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(230, 237, 255) 100%);
}
.voice-modal.blue .voice-modal__modal-catch {
  background-color: #536fb9;
}
.voice-modal.blue .voice-modal__modal-title {
  color: #536fb9;
}
.voice-modal.blue .voice-modal__modal-detail::before {
  background-color: #536fb9;
}

.sub-voice__overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 0.9;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}

.sub-voice__overlay.open {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.voice-modal__close {
  width: 3.8125rem;
  height: 2.1875rem;
  background-image: url(../images/voice/modal-close.png);
  background-size: 3.8125rem 2.1875rem;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -1.0625rem;
  right: -1.625rem;
  cursor: pointer;
}

.voice-modal__modal-inner {
  overflow-y: scroll;
  height: 100%;
}

.voice-modal__modal-catch {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  padding: 0.125rem 1.5625rem 0.125rem 1rem;
  clip-path: polygon(0.9375rem 0, 100% 0%, calc(100% - 0.9375rem) 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .voice-modal__modal-catch {
    font-size: 0.875rem;
    line-height: 2;
    clip-path: polygon(0.625rem 0, 100% 0%, calc(100% - 0.625rem) 100%, 0% 100%);
    margin-right: 0.625rem;
  }
}

.voice-modal__modal-title {
  margin-top: 1.375rem;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .voice-modal__modal-title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    margin-top: 0.625rem;
    padding-right: 0.625rem;
  }
}

.voice-modal__modal-text {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .voice-modal__modal-text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 2;
    padding-right: 0.625rem;
  }
}

.voice-modal__modal-detail {
  margin-top: 0.5625rem;
  padding-top: 0.5625rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
}

.voice-modal__modal-detail::before {
  content: "";
  display: block;
  width: 3.9375rem;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00B498;
}

.fv__title--workflow {
  top: calc(3.4375rem + (100% - 3.4375rem) / 2);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv__title--workflow {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
    top: 2.125rem;
    left: 2.875rem;
    padding-left: initial;
    z-index: 2;
    transform: none;
  }
}

.sub-workflow-anchor {
  padding-top: 9.875rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-anchor {
    padding-top: 3.125rem;
  }
}

.sub-workflow-anchor__lead {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-workflow-anchor__lead {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.sub-workflow-anchor__gradation {
  background-image: url(../images/workflow/workflow-isometric-bgi.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2.65625rem;
  padding-bottom: 2.5rem;
  margin-top: 2.53125rem;
}

.sub-workflow-anchor__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-anchor__inner {
    overflow-x: scroll;
  }
}

.sub-workflow-anchor__note {
  font-size: 0.875rem;
  line-height: 2.2142857143;
  letter-spacing: 0.02em;
  font-weight: 0;
}

.sub-workflow-anchor__image-area {
  margin-top: 1.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-workflow-anchor__image-area {
    overflow-x: scroll;
    width: 1080px;
  }
}

.sub-workflow-anchor__link {
  display: inline-block;
  width: 7.5rem;
  position: absolute;
}

.sub-workflow-anchor__link a {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #ffffff;
  border: 0.25rem solid #ffffff;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sub-workflow-anchor__link.blue a {
  background-color: #536fb9;
  transition: all 0.3s;
}
.sub-workflow-anchor__link.blue a:hover {
  transition: all 0.3s;
  background-color: #6784D3;
}

.sub-workflow-anchor__link.black a {
  background-color: #051540;
  transition: all 0.3s;
}
.sub-workflow-anchor__link.black a:hover {
  transition: all 0.3s;
  background-color: #1D3576;
}

.sub-workflow-anchor__link--01 {
  top: 7.85rem;
  left: 14.65625rem;
}

.sub-workflow-anchor__link--02 {
  top: 6.65rem;
  left: 24.95625rem;
}

.sub-workflow-anchor__link--03 {
  top: 13.54375rem;
  left: 32.5125rem;
}

.sub-workflow-anchor__link--04 {
  top: 5.7rem;
  right: 18.0375rem;
}

.sub-workflow-anchor__link--05 {
  top: 20.36875rem;
  right: 17.425rem;
}

.sub-workflow-anchor__link--06 {
  bottom: 14.85625rem;
  left: 23.70625rem;
}

.sub-workflow-anchor__link--07 {
  bottom: 8.40625rem;
  right: 28.6rem;
}

.sub-workflow-anchor__link--08 {
  top: 14.75rem;
  left: 2.225rem;
}

.sub-workflow-anchor__link--09 {
  bottom: 10.90625rem;
  right: 18.5375rem;
}

.sub-workflow-anchor__link--10 {
  top: 20.5rem;
  left: 11.60625rem;
}

.sub-workflow-anchor__link--11 {
  top: 28.9125rem;
  left: 16.83125rem;
}

.sub-workflow-anchor__link--12 {
  top: 0.4rem;
  left: 28.76875rem;
}

.sub-workflow-position {
  padding-top: 10.375rem;
  padding-bottom: 13.625rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-position {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.sub-workflow-position__title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}

.sub-workflow-position__title--02 {
  color: #051540;
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-position__title--02 {
    margin-top: 3.125rem;
  }
}

.sub-workflow-position__list {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-position__list {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-workflow-position-list__item {
    padding-top: 1.25rem;
  }
}

.sub-workflow-position-list__item + .sub-workflow-position-list__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-workflow-position-list__item + .sub-workflow-position-list__item {
    margin-top: 0rem;
    padding-top: 1.25rem;
  }
}

.sub-workflow-position-list__item-title {
  padding: 0.96875rem 3.75rem 0.96875rem 1.1875rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
  cursor: pointer;
  background: rgb(233, 247, 252);
  background: linear-gradient(105deg, rgb(233, 247, 252) 5%, rgb(214, 231, 254) 95%);
}
@media screen and (max-width: 768px) {
  .sub-workflow-position-list__item-title {
    position: relative;
    font-size: 1rem;
    padding: 1rem 3.125rem 1rem 1rem;
  }
}

.sub-workflow-position-list__item-title::before,
.sub-workflow-position-list__item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.25rem;
  height: 0.0625rem;
  background: #051540;
  transition: 0.3s;
}
.sub-workflow-position-list__item-title::after {
  transform: rotate(90deg);
}

.sub-workflow-position-list__item-title.is-open::after {
  transform: rotate(0deg);
}

.workflow-accordion-main {
  padding: 2rem 0rem 2rem 2rem;
  display: none;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main {
    padding: 0.625rem;
  }
}

.workflow-accordion-main__contents {
  display: flex;
  align-items: center;
  gap: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__contents {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
  }
}

.workflow-accordion-main__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__content {
    display: contents;
  }
}

.workflow-accordion-main__meta {
  background-color: #536fb9;
  display: inline-block;
  padding: 0.25rem 1.6875rem;
  clip-path: polygon(0.625rem 0, 100% 0%, calc(100% - 0.625rem) 100%, 0% 100%);
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__meta {
    padding: 0.25rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    order: 1;
  }
}

.workflow-accordion-main__title {
  margin-top: 0.375rem;
  font-size: 3.125rem;
  line-height: 1.44;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__title {
    order: 2;
    font-size: 2rem;
    line-height: 1.5625;
  }
}

.workflow-accordion-main__lead {
  margin-top: 1.9375rem;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-left: 0.375rem;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__lead {
    order: 4;
    margin-top: 0.625rem;
  }
}

.workflow-accordion-main__discription {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  padding-left: 0.375rem;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__discription {
    order: 5;
    margin-top: 0.5rem;
  }
}

.workflow-accordion-main__image {
  width: 18.125rem;
}
.workflow-accordion-main__image img {
  aspect-ratio: 290/300;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .workflow-accordion-main__image {
    order: 3;
  }
}

.sub-workflow-position__list--purple .sub-workflow-position-list__item-title {
  background: rgb(233, 237, 252);
  background: linear-gradient(105deg, rgb(233, 237, 252) 5%, rgb(213, 214, 240) 95%);
  color: #051540;
}

.sub-workflow-position__list--purple .workflow-accordion-main__meta {
  background-color: #051540;
}

.sub-workflow-position__list--purple .workflow-accordion-main__title {
  color: #051540;
}

/*#################################
社員紹介(/interview)
#################################*/
.sub-interview {
  padding-top: 10.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-interview {
    padding-top: 5rem;
  }
}

.sub-interview__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-interview__list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.875rem 1.25rem;
  }
}

.sub-interview__article {
  transition: all 0.3s;
}
.sub-interview__article:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.sub-interview__image img {
  aspect-ratio: 330/250;
  object-fit: cover;
}

.sub-interview__title {
  margin-top: 1.75rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.1875rem;
  position: relative;
  color: #536fb9;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0em;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .sub-interview__title {
    margin-top: 1rem;
    padding-bottom: 0.3125rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}

.sub-interview__title::after {
  content: "";
  display: block;
  width: 3.92rem;
  height: 0.0625rem;
  background-color: #536fb9;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .sub-interview__title::after {
    width: 2.45rem;
  }
}

.sub-interview__description {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-interview__description {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.sub-sec-bottom--interview {
  margin-top: 14.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom--interview {
    margin-top: 5rem;
  }
}

/*#################################
インタビュー下層ページ
#################################*/
.page-interview-fv.pc {
  margin-top: 6.25rem;
  padding-top: 8.875rem;
  padding-bottom: 7.625rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(6.25rem 0, 100% 0%, 100% 30%, calc(100% - 6.25rem) 100%, 0% 100%, 0% 70%);
}

.page-interview-fv--01.pc {
  background-image: url(../images/interview/interview01/interview01-fv.jpg);
}

.page-interview-fv--02.pc {
  background-image: url(../images/interview/interview02/interview02-fv.jpg);
}

.page-interview-fv--03.pc {
  background-image: url(../images/interview/interview03/interview03-fv.jpg);
}

.page-interview-fv--04.pc {
  background-image: url(../images/interview/interview04/interview04-fv.jpg);
}

.page-interview-fv--05.pc {
  background-image: url(../images/interview/interview05/interview05-fv.jpg);
}

.page-interview-fv--06.pc {
  background-image: url(../images/interview/interview06/interview06-fv.jpg);
}

.page-interview-fv--07.pc {
  background-image: url(../images/interview/interview07/interview07-fv.jpg);
}

.page-interview-fv--08.pc {
  background-image: url(../images/interview/interview08/interview08-fv.jpg);
}

.page-interview-fv--09.pc {
  background-image: url(../images/interview/interview09/interview09-fv.jpg);
}

.page-interview-fv--10.pc {
  background-image: url(../images/interview/interview10/interview10-fv.jpg);
}

.page-interview-fv--11.pc {
  background-image: url(../images/interview/interview11/interview11-fv.jpg);
}

.page-interview-fv.pc .page-interview-fv__overlay {
  display: flex;
  justify-content: flex-end;
  margin-right: -0.625rem;
}
@media screen and (max-width: 1200px) {
  .page-interview-fv.pc .page-interview-fv__overlay {
    margin-right: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .page-interview-fv.pc .page-interview-fv__overlay {
    position: absolute;
    right: 0;
    bottom: 5.91875rem;
  }
}

.page-interview-fv.pc.page-interview-fv--left .page-interview-fv__overlay {
  display: flex;
  justify-content: flex-start;
  margin-left: -0.625rem;
}
@media screen and (max-width: 1200px) {
  .page-interview-fv.pc.page-interview-fv--left .page-interview-fv__overlay {
    margin-right: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .page-interview-fv.pc.page-interview-fv--left .page-interview-fv__overlay {
    position: absolute;
    right: 0;
    bottom: 5.91875rem;
  }
}

.page-interview-fv__title-area {
  position: relative;
}

.page-interview-fv__title {
  display: block;
  width: fit-content;
  max-height: 15rem;
  position: relative;
  background: rgb(65, 174, 254);
  background: linear-gradient(90deg, rgb(65, 174, 254) 0%, rgb(83, 111, 185) 70%);
  font-size: 2.1875rem;
  line-height: 1.5428571429;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 2.5625rem 4.0625rem 2.5rem 4.8125rem;
  color: #ffffff;
  z-index: 10;
  transform: skew(-15deg);
}

.page-interview-fv__title span {
  transform: skew(15deg);
  display: block;
}

.page-interview-fv__num {
  position: absolute;
  left: 0;
  top: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #051540;
  color: #fff;
  transform: skew(-15deg) translate(1.625rem, -50%);
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  z-index: 100;
  padding: 0.4375rem 1.375rem 0.4375rem 1.1875rem;
}

.page-interview-fv__num span {
  transform: skew(15deg);
  text-transform: uppercase;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  display: block;
}

.page-interview-fv-bottom {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-interview-fv-bottom {
    margin-top: 1.625rem;
    width: 100%;
  }
}

.page-interview-fv-bottom__text {
  margin-left: 5.25rem;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page-interview-fv-bottom__text {
    margin-left: initial;
    font-size: 0.875rem;
    line-height: 1.8571428571;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.page-interview-fv-bottom--right .page-interview-fv-bottom__text {
  max-width: 25.75rem;
  margin-left: auto;
}

/*#################################
FVのsp版
#################################*/
.page-interview-fv.sp {
  margin-top: 2.125rem;
}

@media screen and (max-width: 768px) {
  .page-interview-fv__image {
    width: 100%;
    clip-path: polygon(1.875rem 0, 100% 0%, 100% 60%, calc(100% - 1.875rem) 100%, 0% 100%, 0% 40%);
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__title-area {
    display: flex;
    justify-content: flex-end;
    margin-right: 5.3333333333vw;
    margin-top: -2.77rem;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__image img {
    aspect-ratio: 375/231;
    object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__num {
    padding: 0.9333333333vw 2.4vw;
    left: 0;
    transform: skew(-15deg) translate(21.3333333333vw, -50%);
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__num span {
    font-size: 3.2vw;
    line-height: 1.3333333333;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__title {
    padding: 7.2vw 2.6666666667vw 7.2vw 5.3333333333vw;
    width: 77.3333333333vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv__title span {
    font-size: 5.3333333333vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--05 .page-interview-fv__title {
    padding: 7.2vw 2.6666666667vw 7.2vw 5.3333333333vw;
    width: 82.6666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--05 .page-interview-fv__title span {
    font-size: 4.8vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--05 .page-interview-fv__num {
    padding: 0.9333333333vw 2.4vw;
    left: -5.4666666667vw;
    transform: skew(-15deg) translate(21.3333333333vw, -50%);
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--06 .page-interview-fv__title {
    padding: 7.2vw 2.6666666667vw 7.2vw 5.3333333333vw;
    width: 82.6666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--06 .page-interview-fv__title span {
    font-size: 4.8vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--06 .page-interview-fv__num {
    padding: 0.9333333333vw 2.4vw;
    left: -5.4666666667vw;
    transform: skew(-15deg) translate(21.3333333333vw, -50%);
  }
}

@media screen and (max-width: 768px) {
  .page-interview-fv--08 .page-interview-fv__title span {
    font-size: 4.8vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.page-interview {
  position: relative;
  margin-top: 3.5125rem;
}
@media screen and (max-width: 768px) {
  .page-interview {
    margin-top: 3.125rem;
  }
}

.page-interview__bg {
  background: rgb(65, 174, 254);
  background: linear-gradient(120deg, #e9f7fc 0%, #d5e6fe 70%);
  clip-path: polygon(4.375rem 0, 100% 0, calc(100% - 4.375rem) 100%, 0 100%);
  padding: 4.0625rem 0 1.875rem;
  min-height: 14.27rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-interview__bg {
    display: block;
    clip-path: initial;
    padding-top: 3.0625rem;
    padding-bottom: 1.8125rem;
  }
}

.page-interview__title {
  width: 18.958125rem;
  height: 2.285625rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .page-interview__title {
    width: 14.02875rem;
    height: 1.69125rem;
  }
}

.page-interview__text {
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .page-interview__text {
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.page-interview__body {
  margin-top: 8.7625rem;
}
@media screen and (max-width: 768px) {
  .page-interview__body {
    margin-top: 2.1875rem;
  }
}

.step-body__contents {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .step-body__contents {
    flex-direction: column-reverse;
    gap: 2.75rem;
  }
}

.step-body__contents + .step-body__contents {
  margin-top: 6.9375rem;
}
@media screen and (max-width: 768px) {
  .step-body__contents + .step-body__contents {
    margin-top: 2rem;
  }
}

.step-body__contents--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .step-body__contents--reverse {
    flex-direction: column-reverse;
  }
}

.step-body__content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .step-body__content {
    width: 100%;
  }
}

.step-body__title {
  padding-bottom: 0.3125rem;
  margin-bottom: 1.3125rem;
  position: relative;
  color: hsl(0, 0%, 0%);
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .step-body__title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 500;
    padding-bottom: 0.375rem;
    margin-bottom: 1.25rem;
  }
}

.step-body__lead {
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .step-body__lead {
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    font-weight: 500;
    margin-right: -0.0625rem;
  }
}

.step-body__title::after {
  content: "";
  display: block;
  width: 3.92rem;
  height: 0.0625rem;
  background-color: hsl(0, 0%, 0%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.step-body__text {
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .step-body__text {
    margin-top: 0.9375rem;
  }
}

.step-body__text p {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .step-body__text p {
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.step-body__text p + p {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .step-body__text p + p {
    margin-top: 2.0625rem;
  }
}

.step-body__image {
  width: 44.4444444444%;
}
@media screen and (max-width: 768px) {
  .step-body__image {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .step-body__image img {
    aspect-ratio: 325/257;
  }
}

.page-interview-middle-image {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .page-interview-middle-image {
    margin-top: 2.5rem;
  }
}

.page-interview-middle-image img {
  aspect-ratio: 1280/420;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-interview-middle-image img {
    aspect-ratio: 375/123;
  }
}

.page-interview__bottom-body {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .page-interview__bottom-body {
    margin-top: 2.3125rem;
  }
}

.page-interview__bottom-body-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-interview__bottom-body-inner {
    gap: 1.6875rem;
    grid-template-columns: 1fr;
  }
}

.career-card, .schedule-card {
  background: rgb(65, 174, 254);
  background: linear-gradient(135deg, #e9f7fc 0%, #d4e4ff 100%);
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .career-card, .schedule-card {
    padding: 0.78125rem;
  }
}

.career-card__inner {
  background-color: #ffffff;
  padding: 2.9375rem 2.125rem 1.625rem 1.75rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .career-card__inner {
    padding: 1.5625rem 1.15625rem;
  }
}

.career-card__title, .schedule-card__title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #051540;
  text-align: center;
  position: relative;
  margin-bottom: 1.6875rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .career-card__title, .schedule-card__title {
    padding-bottom: 0.3125rem;
    margin-bottom: 1.3125rem;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.career-card__title::after, .schedule-card__title::after {
  content: "";
  display: block;
  width: 3.92rem;
  height: 0.0625rem;
  background-color: hsl(0, 0%, 0%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .career-card__title::after, .schedule-card__title::after {
    width: 2.45rem;
  }
}

.career-card__lead {
  color: #536fb9;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .career-card__lead {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}

.career-card__text {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .career-card__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.schedule-card__inner {
  background-color: #ffffff;
  padding: 2.9375rem 1.53125rem 1.625rem 1.75rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .schedule-card__inner {
    padding: 1.5625rem 1.09375rem 0.125rem 1.09375rem;
  }
}

.schedule-card__table {
  margin-top: 2.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .schedule-card__table {
    margin-top: 0.8125rem;
  }
}

.schedule-card__table dl {
  border-bottom: 1px dashed hsl(0, 0%, 0%);
  padding-top: 0.75rem;
  padding-bottom: 0.5625rem;
  display: flex;
  align-items: baseline;
  gap: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .schedule-card__table dl {
    flex-direction: column;
    padding: 0.5rem 0rem;
    gap: 0.0625rem;
  }
}

.schedule-card__table dl:nth-last-of-type(1) {
  border: none;
}

.schedule-card__table dt {
  width: 2.375rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}

.schedule-card__table dd {
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .schedule-card__table dd {
    font-size: 0.875rem;
    line-height: 1.9285714286;
  }
}

.page-interview__off {
  margin-top: 5.83125rem;
}
@media screen and (max-width: 768px) {
  .page-interview__off {
    margin-top: 3.125rem;
  }
}

.off-card__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .off-card__inner {
    flex-direction: column-reverse;
  }
}

.off-card__image {
  width: 20.625rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .off-card__image {
    width: 76.9230769231%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3.9375rem;
  }
}

.off-card__image img {
  aspect-ratio: 330/224;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .off-card__image img {
    aspect-ratio: 250/168;
  }
}

.off-card__contents {
  background: rgb(65, 174, 254);
  background: linear-gradient(135deg, #e9f7fc 0%, #d4e4ff 100%);
  padding: 0.1875rem;
  position: relative;
  width: 50.125rem;
  flex-shrink: 0;
  margin-top: 50px;
  margin-left: calc(67.5rem - 50.125rem - 20.625rem);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .off-card__contents {
    width: 100%;
    margin-left: initial;
  }
}

.off-card__contents-inner {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  padding: 3.375rem 3.25rem 2.75rem 6.4375rem;
}
@media screen and (max-width: 768px) {
  .off-card__contents-inner {
    padding: 3.375rem 1.59375rem 5.25rem;
  }
}

.off-card__title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: hsl(0, 0%, 0%);
  background-color: #ffffff;
  padding: 0rem 0.90625rem;
  display: inline-block;
  position: absolute;
  top: 0rem;
  left: 5.625rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .off-card__title {
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    min-width: 11.25rem;
  }
}

.off-card__text {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .off-card__text {
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.page-interview-other {
  padding-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .page-interview-other {
    padding-top: 4.4375rem;
  }
}

.page-interview-other__title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-align: center;
  color: #051540;
}

.page-interview-other__contents {
  margin-top: 1.875rem;
  background: rgb(65, 174, 254);
  background: linear-gradient(135deg, #e9f7fc 0%, #d4e4ff 100%);
  padding-bottom: 2.4375rem;
  position: relative;
  min-height: 21.5625rem;
}
@media screen and (max-width: 768px) {
  .page-interview-other__contents {
    padding-top: 4.225rem;
    padding-bottom: 3.0625rem;
  }
}

.page-interview-other__inner {
  padding-left: 4.375rem;
  padding-right: 4.375rem;
}
@media screen and (max-width: 768px) {
  .page-interview-other__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.page-interview-other__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-interview-other__cards {
    gap: 1.5625rem;
  }
}

.page-interview-other__article {
  margin-top: -3.3125rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .page-interview-other__article {
    margin-top: initial;
  }
}

.page-interview-other__image {
  overflow: hidden;
}

.page-interview-other__image img {
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-interview-other__image img {
    aspect-ratio: 150/112;
  }
}

.page-interview-other__article:hover .page-interview-other__image img {
  transition: all 0.3s;
}

.page-interview-other__article:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.page-interview-other__text {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #000;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .page-interview-other__text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
}

.page-interview-other__btn {
  position: absolute;
  width: 6.875rem;
  height: 6.875rem;
  background-color: #fff;
  padding: 2.0625rem 1.1875rem 0.8125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.0625rem;
  top: 6.975rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-interview-other__btn {
    position: static;
    transform: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}

.page-interview-other__btn-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: hsl(0, 0%, 0%);
  transition: all 0.3s;
}

.page-interview-other__line-area {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: grid;
  gap: 0.375rem 0.4375rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  height: 100%;
}

.page-interview-other__line {
  display: block;
  background-color: #536fb9;
  transition: all 0.3s;
}

.page-interview-other__line.black {
  background-color: hsl(0, 0%, 0%);
  transition: all 0.3s;
}

.page-interview-other__btn:hover {
  background-color: #536fb9;
  transition: all 0.3s;
}
.page-interview-other__btn:hover .page-interview-other__line {
  background-color: #ffffff;
  transition: all 0.3s;
}
.page-interview-other__btn:hover .page-interview-other__line.black {
  background-color: hsl(0, 0%, 0%);
  transition: all 0.3s;
}
.page-interview-other__btn:hover .page-interview-other__btn-text {
  color: #ffffff;
  transition: all 0.3s;
}

.sub-symposium-fv {
  position: relative;
}

.sub-symposium-fv__image {
  clip-path: polygon(6.25rem 0, 100% 0%, 100% 30%, calc(100% - 6.25rem) 100%, 0% 100%, 0% 70%);
}
@media screen and (max-width: 768px) {
  .sub-symposium-fv__image {
    width: 100%;
    clip-path: polygon(1.875rem 0, 100% 0%, 100% 60%, calc(100% - 1.875rem) 100%, 0% 100%, 0% 40%);
  }
}

.sub-symposium-fv__title {
  background-color: #536FB9;
  background: linear-gradient(100deg, #42ADFC 5%, #536FB9 100%);
  width: fit-content;
  padding: 0.40625rem 2.625rem;
  color: #ffffff;
  clip-path: polygon(1.25rem 0, 100% 0, calc(100% - 1.25rem) 100%, 0 100%);
  font-size: 2.5rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: absolute;
  bottom: 3.125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sub-symposium-fv__title {
    font-size: 1rem;
    line-height: 1.6875;
    width: 12.5rem;
    bottom: 0.625rem;
  }
}

.sub-symposium-profile {
  padding-top: 6.5625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-symposium-profile {
    padding-top: 5rem;
  }
}

.sub-symposium-profile__title {
  width: 24.934375rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-profile__title {
    width: 15.625rem;
  }
}

.sub-symposium-profile__title img {
  aspect-ratio: 398.95/36.57;
  object-fit: cover;
}

.sub-symposium-profile__lists {
  margin-top: 2.28125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sub-symposium-profile__lists {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
  }
}

.sub-symposium-profile::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 38.625rem;
  background-color: #E9F7FC;
  background: linear-gradient(135deg, #E9F7FC 5%, #D5E6FE 100%);
  z-index: 1;
  height: 90%;
}

@media screen and (max-width: 768px) {
  .sub-symposium-profile__list-image {
    width: 60%;
    margin: auto;
  }
}

.sub-symposium-profile__list-info {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  font-weight: 400;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #041540;
  min-height: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-profile__list-info {
    margin-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    min-height: auto;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}

.sub-symposium-profile__list-text {
  margin-top: 1.0625rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-symposium-profile__list-text {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

/*#################################
共通部分
#################################*/
.sub-symposium-sec__num span {
  padding: 0.4375rem 1.5625rem 0.4375rem 1.75rem;
  background-color: #051540;
  color: #ffffff;
  font-size: 1.0625rem;
  line-height: 1.3529411765;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-transform: uppercase;
  clip-path: polygon(0.625rem 0, 100% 0, calc(100% - 0.625rem) 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .sub-symposium-sec__num span {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.sub-symposium-sec__title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #536fb9;
}
@media screen and (max-width: 768px) {
  .sub-symposium-sec__title {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 0.625rem;
  }
}

.sub-symposium-voice {
  display: flex;
  gap: 1.375rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-voice {
    gap: 0.625rem;
  }
}

.sub-symposium-voice__image {
  width: 5.625rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-voice__image {
    width: 4.6875rem;
  }
}

.sub-symposium-voice__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-symposium-voice__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.01em;
  }
}

.mt30 {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .mt30 {
    margin-top: 1.25rem;
  }
}

.mt43 {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .mt43 {
    margin-top: 1.25rem;
  }
}

.mt102 {
  margin-top: 6.375rem;
}
@media screen and (max-width: 768px) {
  .mt102 {
    margin-top: 1.25rem;
  }
}

/*#################################
theme1
#################################*/
.sub-symposium-theme1 {
  padding-top: 12.0875rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme1 {
    padding-top: 5rem;
  }
}

.sub-symposium-theme1__inner {
  position: relative;
}

.sub-symposium-theme1__inner::before {
  content: "";
  background-image: url(../images/symposium/arrow01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 37.24375rem 35.116875rem;
  position: absolute;
  top: -6.875rem;
  left: 0;
  width: 37.24375rem;
  height: 35.116875rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme1__inner::before {
    width: 15.625rem;
    height: calc(15.625rem * 595.9 / 612.9);
    background-size: cover;
    top: 25rem;
  }
}

.sub-symposium-theme1__top-body {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme1__top-body {
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.sub-symposium-theme1__top-body-content {
  flex: 1;
}

.sub-symposium-theme1__image {
  width: 28.125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme1__image {
    width: 100%;
  }
}

.sub-symposium-middle-image {
  margin-top: 6.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-middle-image {
    margin-top: 3.125rem;
  }
}

/*#################################
theme2
#################################*/
.sub-symposium-theme2 {
  padding-top: 6.125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme2 {
    padding-top: 5rem;
  }
}

.sub-symposium-theme2__inner {
  max-width: 812px;
  position: relative;
}

.sub-symposium-theme2__inner::before {
  content: "";
  background-image: url(../images/symposium/arrow02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38.30625rem 35.116875rem;
  position: absolute;
  top: -8.61875rem;
  left: -6.9875rem;
  width: 38.30625rem;
  height: 35.116875rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme2__inner::before {
    width: 15.625rem;
    height: calc(15.625rem * 561.87 / 612.9);
    background-size: cover;
    top: -3.75rem;
    left: 0;
  }
}

.sub-symposium-theme2 .sub-symposium-voice {
  margin-top: 1.875rem;
}

/*#################################
theme3
#################################*/
.sub-symposium-theme3 {
  padding-top: 14.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme3 {
    padding-top: 5rem;
  }
}

.sub-symposium-theme3__inner {
  position: relative;
}

.sub-symposium-theme3__inner::before {
  content: "";
  background-image: url(../images/symposium/arrow03.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36.925rem 35.116875rem;
  position: absolute;
  top: -9.49375rem;
  right: 3.125rem;
  width: 36.925rem;
  height: 35.116875rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme3__inner::before {
    width: 15.625rem;
    height: calc(15.625rem * 561.87 / 590.8);
    background-size: cover;
    top: 23.75rem;
    right: initial;
    left: 0;
  }
}

.sub-symposium-theme3__top-body {
  display: flex;
  flex-direction: row-reverse;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme3__top-body {
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.sub-symposium-theme3__top-body-content {
  flex: 1;
}

.sub-symposium-theme3__image {
  width: 28.125rem;
}
@media screen and (max-width: 768px) {
  .sub-symposium-theme3__image {
    width: 100%;
  }
}

.sub-sec-bottom--symposium {
  margin-top: 9.125rem;
}
@media screen and (max-width: 768px) {
  .sub-sec-bottom--symposium {
    margin-top: 5rem;
  }
}

@keyframes slide_in {
  0% {
    clip-path: inset(0 50% 0 51%);
    opacity: 0;
  }
  50% {
    clip-path: inset(0 0 0 51%);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.brsp {
  display: none;
}
@media screen and (max-width: 768px) {
  .brsp {
    display: block;
  }
}

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

@media screen and (max-width: 768px) {
  #course header {
    height: calc(3.125rem + 50px);
  }
}
#course header .header__course_nav {
  display: flex;
  align-items: center;
}
#course header .header__course_nav nav {
  display: flex;
  gap: 1.8em;
}
@media screen and (max-width: 768px) {
  #course header .header__course_nav nav {
    position: fixed;
    left: 0;
    top: 3.125rem;
    width: 100vw;
    background-color: #fff;
    border-top: solid 1px #041540;
    gap: 0;
  }
}
#course header .header__course_nav nav a {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #course header .header__course_nav nav a {
    font-size: 0.8125rem;
    line-height: 1.4;
    width: 33.33%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px #ddd;
  }
}
#course header .header__course_nav .header__btn_entry {
  background-color: #041540;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #course header .header__course_nav .header__btn_entry {
    font-size: 0.9375rem;
    width: 100px;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
#course .btn_entry {
  position: relative;
  width: 380px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  padding-right: 1em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #course .btn_entry {
    width: 100%;
    height: 70px;
    font-size: 1.5rem;
  }
}
#course .btn_entry::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #041540;
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-12deg);
  z-index: -1;
  border: solid 2px #041540;
  transition: 0.4s;
}
#course .btn_entry::after {
  content: "";
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateY(-75%);
  border-top: solid 3px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 1.2em;
  top: 50%;
  transition: 0.4s;
}
#course .btn_entry:hover {
  color: #041540;
}
#course .btn_entry:hover::before {
  background-color: #fff;
}
#course .btn_entry:hover::after {
  border-color: #041540;
}
#course .sec-main {
  width: 100%;
  animation: slide_in 2.4s ease forwards;
}
#course .sec-01 {
  margin: 100px 0 110px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #course .sec-01 {
    margin: 50px 0 100px;
  }
}
#course .sec-01::before {
  content: "";
  width: 100%;
  height: calc(100% - 60px);
  background-color: #f6f6f6;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #course .sec-01::before {
    height: calc(100% - 30px);
    top: 40px;
  }
}
#course .sec-01 .inner {
  position: relative;
}
#course .sec-01__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #course .sec-01__box {
    flex-direction: column;
  }
}
#course .sec-01__title {
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  width: 390px;
  height: 154px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  #course .sec-01__title {
    width: 300px;
    height: 100px;
    font-size: 1.5625rem;
  }
}
#course .sec-01__title::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e0abd2 30%, #c2d3e5 60%, #7fd7d9 100%);
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-12deg);
  z-index: -1;
}
#course .sec-01__lead {
  width: 640px;
  padding: 110px 0 70px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #course .sec-01__lead {
    width: 100%;
    padding: 25px 0 60px;
  }
}
#course .sec-01 .btn_entry {
  position: absolute;
  right: 36px;
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  #course .sec-01 .btn_entry {
    right: auto;
    left: 20px;
    width: calc(100% - 40px);
  }
}
#course .sec-02 {
  background: linear-gradient(#44bcb6 10%, #bccdd3 50%, #d8a0c7 90%);
  padding: 60px 0 70px;
}
@media screen and (max-width: 768px) {
  #course .sec-02 {
    padding: 40px 0 60px;
  }
}
#course .sec-02__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #course .sec-02__title {
    gap: 16px;
    margin-bottom: 25px;
  }
}
#course .sec-02__title span:nth-child(1) {
  color: #3CBAB7;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 0.5em 1.2em;
  background-color: #fff;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #course .sec-02__title span:nth-child(1) {
    font-size: 1.1875rem;
    padding: 0.4em 1.1em;
  }
}
#course .sec-02__title span:nth-child(1)::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 9px);
  bottom: -16px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 768px) {
  #course .sec-02__title span:nth-child(1)::before {
    width: 16px;
    height: 16px;
    bottom: -14px;
    left: calc(50% - 7px);
  }
}
#course .sec-02__title span:nth-child(2) {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #course .sec-02__title span:nth-child(2) {
    font-size: 1.875rem;
  }
}
#course .sec-02 .movie {
  margin: 0 auto;
  padding-top: 56.25%;
  width: 1080px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #course .sec-02 .movie {
    width: 100%;
  }
}
#course .sec-02 .movie iframe {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
#course .sec-03 {
  padding: 60px 0 40px;
}
#course .sec-03__ttl01 {
  margin-bottom: 2.8em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #course .sec-03__ttl01 {
    margin-bottom: 2.4em;
  }
}
#course .sec-03__ttl01 span {
  color: #051540;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
}
@media screen and (max-width: 768px) {
  #course .sec-03__ttl01 span {
    font-size: 1.5rem;
  }
}
#course .sec-03__ttl01 span::before {
  content: "";
  width: 100%;
  height: 15px;
  background-color: #EFD6E9;
  position: absolute;
  left: -3px;
  bottom: 0;
  transform: skewX(-12deg);
  z-index: -1;
}
#course .sec-03__ttl02 {
  text-align: center;
  margin-bottom: 0.2em;
}
#course .sec-03__ttl02 span {
  color: #051540;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  padding: 0 1.6em;
}
@media screen and (max-width: 768px) {
  #course .sec-03__ttl02 span {
    font-size: 2.25rem;
    padding: 0 1.4em;
  }
}
#course .sec-03__ttl02 span::before {
  content: "";
  width: 2px;
  height: 1.2em;
  background-color: #051540;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: rotate(12deg) translateY(-50%);
}
#course .sec-03__ttl02 span::after {
  content: "";
  width: 2px;
  height: 1.2em;
  background-color: #051540;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: rotate(12deg) translateY(-50%);
}
#course .sec-03 .btn_entry {
  margin: 50px auto 100px;
}
#course .sec-04 {
  background: url(../images/course/bg_cont.jpg) no-repeat center top/cover;
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  #course .sec-04 {
    padding: 50px 0 80px;
  }
}
#course .sec-04__title {
  text-align: center;
  color: #536FB9;
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  #course .sec-04__title {
    margin-bottom: 1.3em;
    font-size: 1.5rem;
  }
}
#course .box_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  justify-content: center;
  padding-right: 70px;
}
@media screen and (max-width: 768px) {
  #course .box_cont {
    padding-right: 40px;
    gap: 30px 0;
  }
}
#course .box_cont__item {
  width: 445px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #course .box_cont__item {
    width: 100%;
  }
}
#course .box_cont__item figure {
  width: 410px;
  margin-left: 35px;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #course .box_cont__item figure {
    width: 100%;
  }
}
#course .box_cont__item p {
  width: 270px;
  height: 35px;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 3em 0 1.2em;
  color: #000;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #course .box_cont__item p {
    width: 250px;
    left: 10px;
  }
}
#course .box_cont__item p::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-12deg);
  z-index: -1;
}
#course .box_cont__item p::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translateY(-75%);
  border-top: solid 2px #0360D0;
  border-right: solid 2px #0360D0;
  position: absolute;
  right: 1.2em;
  top: 50%;
  transition: 0.4s;
}
#course .box_cont__item:hover figure {
  opacity: 0.7;
}
#course .box_cont__item:hover p {
  color: #536fb9;
}
#course .box_cont__item:hover p::after {
  right: 0.8em;
}

.box_course01 {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .box_course01 {
    flex-direction: column;
    gap: 15px;
  }
}
.box_course01 dl {
  width: calc(50% - 10px);
  border: solid 2px #ddd;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .box_course01 dl {
    width: 100%;
  }
}
.box_course01 dl dt {
  color: #C474BA;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  width: calc(100% - 10px);
  margin-top: 10px;
  padding: 0.7em 20px;
  background: linear-gradient(45deg, #FAEFF7 0%, #F3F6FA 48.28%, #E3F7F7 100%);
}
@media screen and (max-width: 768px) {
  .box_course01 dl dt {
    font-size: 1.0625rem;
    padding: 0.7em 15px;
  }
}
.box_course01 dl dd {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .box_course01 dl dd {
    padding: 13px 15px 17px;
  }
}

.box_course02 dl {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #f6f6f6;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .box_course02 dl {
    flex-direction: column;
    padding: 15px 15px;
  }
}
.box_course02 dl dt {
  position: relative;
  width: 100px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .box_course02 dl dt {
    font-size: 1.0625rem;
    height: 32px;
    margin-bottom: 0.5em;
  }
}
.box_course02 dl dt::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #45BCB6;
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-12deg);
  z-index: -1;
}
.box_course02 dl dd {
  flex: 1;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .box_course02 dl dd {
    width: 100%;
    padding-left: 0;
  }
}

.list_kome {
  margin-top: 1em;
  margin-bottom: 3em;
}
.list_kome li {
  text-indent: -1em;
  padding-left: 1em;
}

.recruit_course__ttl {
  color: #051540;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding: 1em 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit_course__ttl {
    font-size: 1.25rem;
  }
}

.recruit_course__lead {
  width: 100%;
  padding: 2em 0;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit_course__lead {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */