:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red: #D01212;
  --color-green: #22C635;
  --font-color: #242424;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-en2: "Timmana", sans-serif;
  --font-mincho: "Zen Old Mincho", serif;
  --hover-opacity: .7;
  --hover-transition: .3s;
  --leading-trim: calc((1em - 1lh) / 2);
}

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

:where(html, body) {
  margin: 0;
}

:where(body) {
  position: relative;
  font-family: var(--font-jp);
  color: var(--font-color);
}

:where(h1, h2, h3, h4, h5, h6, p) {
  margin: 0;
}

:where(img) {
  max-width: 100%;
  vertical-align: bottom;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 27px 14px 23px;
}
@media (max-width: 768px) {
  .l-header {
    padding: 16px 22px 15px 16px;
  }
}
.l-header__logo {
  z-index: 10000;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
@media (max-width: 768px) {
  .l-header__logo img {
    width: 135px;
  }
}
.l-header__contents {
  display: flex;
  gap: 26px;
  align-items: center;
}
.l-header__buttons {
  display: flex;
  gap: 9px;
  align-items: center;
}
@media (max-width: 768px) {
  .l-header__buttons {
    display: none;
  }
}

.l-hamburger {
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 52px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .l-hamburger {
    gap: 4px;
    width: 32px;
  }
}
.l-hamburger__item {
  width: 100%;
  height: 2px;
  background: #0C6BB0;
  transition: transform 0.3s;
}
.l-hamburger.js-active .l-hamburger__item:nth-child(1) {
  transform: translateY(9px) rotate(20deg);
}
@media (max-width: 768px) {
  .l-hamburger.js-active .l-hamburger__item:nth-child(1) {
    transform: translateY(6px) rotate(20deg);
  }
}
.l-hamburger.js-active .l-hamburger__item:nth-child(2) {
  opacity: 0;
}
.l-hamburger.js-active .l-hamburger__item:nth-child(3) {
  transform: translateY(-9px) rotate(-20deg);
}
@media (max-width: 768px) {
  .l-hamburger.js-active .l-hamburger__item:nth-child(3) {
    transform: translateY(-6px) rotate(-20deg);
  }
}

.l-gnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9999;
  width: 100%;
  height: 100svh;
  padding: 0 22px 60px;
  overflow: auto;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(110deg, #A2B4FF 0%, #9BF6CC 99.52%);
  opacity: 0;
  transition: opacity 0.3s;
}
.l-gnavi.js-open {
  z-index: 9999;
  pointer-events: auto;
  opacity: 1;
}
@media (any-hover: hover) {
  .l-gnavi a {
    transition: opacity 0.3s;
  }
  .l-gnavi a:hover {
    opacity: 0.7;
  }
}
.l-gnavi__inner {
  width: 1100px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 100px;
}
.l-gnavi__top {
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .l-gnavi__top {
    flex-direction: column;
  }
}
.l-gnavi__title {
  margin-bottom: 30px;
  font-family: var(--font-en);
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid currentcolor;
}
@media (max-width: 1024px) {
  .l-gnavi__title {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 1.4;
  }
}
.l-gnavi__contents-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px 32px;
}
@media (max-width: 768px) {
  .l-gnavi__contents-list {
    gap: 37px 0;
  }
}
.l-gnavi__contents-dl {
  padding: 0;
  margin: 0;
}
.l-gnavi__contents-dl dt,
.l-gnavi__contents-dl dd {
  padding: 0;
  margin: 0;
}
.l-gnavi__contents-dl dt {
  margin-bottom: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #0C6BB0;
  letter-spacing: 0.04em;
}
.l-gnavi__contents-dl dt a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--font-color);
}
.l-gnavi__contents-dl dt svg {
  flex-shrink: 0;
}
.l-gnavi__contents-dl dd {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.04em;
}
.l-gnavi__contents-dl dd:not(:last-child) {
  margin-bottom: 5px;
}
.l-gnavi__contents-dl dd a {
  color: var(--font-color);
}
.l-gnavi__entry-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media (max-width: 1024px) {
  .l-gnavi__entry-top {
    gap: 20px;
  }
  .l-gnavi__entry-top .c-button02 {
    width: 100%;
  }
}
.l-gnavi__entry-dl {
  padding: 0;
  margin: 0;
}
.l-gnavi__entry-dl dt,
.l-gnavi__entry-dl dd {
  padding: 0;
  margin: 0;
}
.l-gnavi__entry-dl dt {
  margin-bottom: 25px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .l-gnavi__entry-dl dt {
    margin-bottom: 17px;
  }
}
.l-gnavi__entry-dl dt a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--font-color);
}
.l-gnavi__entry-bottom {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .l-gnavi__entry-bottom {
    margin-top: 30px;
  }
}
.l-gnavi__bd {
  margin-top: 45px;
}
.l-gnavi__bd-text {
  margin-bottom: 23px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.04em;
}
.l-gnavi__bd-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-gnavi__bd-tag a {
  display: block;
  padding: 4px 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.04em;
  background: #fff;
  border-radius: 9999px;
}

.l-footer {
  padding: 40px 20px 20px;
  color: var(--font-color);
  background: #F4F4F4;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 47px 13px 30px;
  }
}
.l-footer__top {
  display: flex;
  gap: 36px;
}
@media (max-width: 768px) {
  .l-footer__top {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}
.l-footer__logo a {
  display: block;
}
@media (any-hover: hover) {
  .l-footer__logo a {
    transition: opacity 0.3s;
  }
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (max-width: 768px) {
  .l-footer__info {
    gap: 22px;
    margin-top: 17px;
    text-align: center;
  }
}
.l-footer__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .l-footer__name {
    font-size: 14px;
    line-height: 24px;
  }
}
.l-footer__address {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
}
.l-footer__privacy {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .l-footer__privacy {
    margin-top: 34px;
  }
}
.l-footer__privacy-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
}
.l-footer__bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column;
    gap: 29px;
    justify-content: center;
  }
}
.l-footer__navi {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .l-footer__navi {
    gap: 12px;
  }
}
.l-footer__navi-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--font-color);
  letter-spacing: 0.04em;
  text-decoration-line: underline;
}
@media (any-hover: hover) {
  .l-footer__navi-link {
    transition: opacity 0.3s;
  }
  .l-footer__navi-link:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    text-align: center;
  }
}

.c-accordion01 {
  display: grid;
  padding: 38px 49px;
  margin-inline: auto;
  background: #F9F9F9;
  border: 1px solid #008FBE;
}
@media (max-width: 768px) {
  .c-accordion01 {
    padding: 23px 26px 23px 14px;
  }
}
.c-accordion01__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-accordion01__toggle-icon {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  width: 26px;
  aspect-ratio: 1;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .c-accordion01__toggle-icon {
    width: 16px;
  }
}
.c-accordion01__toggle-icon::before, .c-accordion01__toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #008FBE;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.c-accordion01__toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.c-accordion02__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  background: #008FBE;
  border: 1px solid #0097C9;
}
@media (max-width: 768px) {
  .c-accordion02__header {
    padding: 21px 15px 21px 25px;
  }
}
.c-accordion02__header-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #FFF;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-accordion02__header-text {
    font-size: 18px;
  }
}
.c-accordion02__toggle-icon {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  width: 26px;
  aspect-ratio: 1;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .c-accordion02__toggle-icon {
    width: 16px;
  }
}
.c-accordion02__toggle-icon::before, .c-accordion02__toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #FFF;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.c-accordion02__toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.c-accordion02__body-inner {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 54px 50px 47px;
  background: #fff;
}
@media (max-width: 768px) {
  .c-accordion02__body-inner {
    gap: 10px;
    padding: 20px 25px 28px;
  }
}
.c-accordion02__body-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-accordion02__body-title {
    font-size: 16px;
  }
}
.c-accordion02__body-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-accordion02__body-text {
    font-size: 14px;
    line-height: 24px;
  }
}
.c-accordion02__body-dl {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 18px 26px;
  margin: 0;
  background: #E2F6FF;
}
@media (max-width: 768px) {
  .c-accordion02__body-dl {
    gap: 23px;
    padding: 13px 24px;
  }
}
.c-accordion02__body-dl-dt, .c-accordion02__body-dl-dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-accordion02__body-dl-dt, .c-accordion02__body-dl-dd {
    font-size: 14px;
  }
}
.c-accordion02__body-dl-dt {
  flex-shrink: 0;
  font-weight: 700;
}
.c-accordion02__body-dl-dd {
  margin: 0;
}

.c-breadcrumbs {
  display: flex;
  gap: 6px;
  width: 1300px;
  max-width: calc(100% - 120px);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
@media (max-width: 768px) {
  .c-breadcrumbs {
    max-width: calc(100% - 44px);
  }
}
.c-breadcrumbs__item {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.8;
  letter-spacing: 0.04em;
}
.c-breadcrumbs__item:not(:last-child)::after {
  display: block;
  width: 5px;
  height: 7px;
  content: "";
  background: url("../img/common/breadcrumbs_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-breadcrumbs__link {
  color: var(--font-color);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-breadcrumbs__link {
    transition: opacity 0.3s;
  }
  .c-breadcrumbs__link:hover {
    opacity: 0.7;
  }
}

.c-button01 {
  display: inline-flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  padding: 25px 35px 26px 85px;
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.04em;
  background: #000;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .c-button01 {
    padding: 16px 18px 17px 53px;
    font-size: 18px;
    line-height: 26px;
  }
}
.c-button01::after {
  display: block;
  width: 33px;
  aspect-ratio: 1;
  content: "";
  background: url("../img/common/button_arrow01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 768px) {
  .c-button01::after {
    width: 26px;
  }
}
@media (any-hover: hover) {
  .c-button01 {
    transition: opacity 0.3s;
  }
  .c-button01:hover {
    opacity: 0.7;
  }
}

.c-button02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  max-width: 100%;
  height: 48px;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  background: #0C6BB0;
  border-radius: 9999px;
}
@media (any-hover: hover) {
  .c-button02 {
    transition: opacity 0.3s;
  }
  .c-button02:hover {
    opacity: 0.7;
  }
}
.c-button02 span {
  flex-grow: 1;
  text-align: center;
}
.c-button02 svg {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}
.c-button02--white {
  color: #008FBE;
  background: #fff;
}
.c-button02--white svg path,
.c-button02--white svg circle {
  stroke: #008FBE;
}

.c-button03 {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 22px 22px 23px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.04em;
  background: #242424;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .c-button03 {
    padding: 12px 12px 13px;
  }
}

.c-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 1280px) {
  .c-card01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .c-card01 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-card01__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 20px;
  padding: 33px 17px 47px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 1280px) {
  .c-card01__item {
    padding-inline: 13px;
  }
}
@media (max-width: 768px) {
  .c-card01__item {
    padding: 32px 13px;
  }
}
.c-card01__title {
  align-self: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  color: #008FBE;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-card01__title {
    font-size: 20px;
    line-height: 1.6;
  }
}
.c-card01__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-card01__text {
    font-size: 14px;
    line-height: 26px;
  }
}

.c-case-slide {
  overflow: hidden;
}
.c-case-slide__inner {
  width: 840px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .c-case-slide__inner {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .c-case-slide__inner {
    width: 302px;
  }
}
.c-case-slide__content {
  padding: 26px;
}
@media (max-width: 768px) {
  .c-case-slide__content {
    padding: 10px 18px 20px;
  }
}
.c-case-slide__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-case-slide__title {
    font-size: 16px;
  }
}
.c-case-slide__title02 {
  margin-bottom: 17px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.04em;
}
.c-case-slide__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-case-slide__text {
    font-size: 14px;
    line-height: 24px;
  }
}
.c-case-slide__text02 {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.c-case-slide__text03 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #909090;
  letter-spacing: 0.04em;
}
.c-case-slide .swiper {
  overflow: visible;
}
.c-case-slide .swiper-slide {
  display: block;
  height: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
}
.c-case-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.c-case-slide .swiper-pagination {
  position: static;
  margin-top: 65px;
  line-height: 0;
}
@media (max-width: 768px) {
  .c-case-slide .swiper-pagination {
    margin-top: 20px;
  }
}
.c-case-slide .swiper-pagination-bullet {
  background: #242424;
  opacity: 1;
}
.c-case-slide .swiper-pagination-bullet-active {
  background: #76B8D1;
}

.c-faq01 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
}
.c-faq01__title {
  padding: 18px 49px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
  background: #F9F9F9;
  border: 1px solid #008FBE;
}
@media (max-width: 768px) {
  .c-faq01__title {
    padding: 10px 14px;
    font-size: 18px;
  }
}
.c-faq01__contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-faq01__item {
  padding: 20px 49px;
  background: #FFF;
  border: 1px solid #E3E3E3;
}
@media (max-width: 768px) {
  .c-faq01__item {
    padding: 21px 13px;
  }
}
.c-faq01__question, .c-faq01__answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.c-faq01__question::before, .c-faq01__answer-inner::before {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 32px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-faq01__question {
  display: flex;
  gap: 40px;
}
.c-faq01__question::before {
  background-image: url("../img/common/faq_q.svg");
}
@media (max-width: 768px) {
  .c-faq01__question {
    gap: 18px;
  }
}
.c-faq01__answer-inner {
  display: flex;
  gap: 40px;
}
.c-faq01__answer-inner::before {
  margin-top: 24px;
  background-image: url("../img/common/faq_a.svg");
}
@media (max-width: 768px) {
  .c-faq01__answer-inner {
    gap: 18px;
  }
}
.c-faq01__answer-text {
  margin-top: 24px;
}
.c-faq01__answer-text a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-faq01__answer-text a {
    transition: opacity 0.3s;
  }
  .c-faq01__answer-text a:hover {
    opacity: 0.7;
  }
}
.c-faq01__toggle-icon {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  width: 21px;
  aspect-ratio: 1;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .c-faq01__toggle-icon {
    align-self: flex-start;
    margin-top: 4px;
  }
}
.c-faq01__toggle-icon::before, .c-faq01__toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #CFE5EE;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.c-faq01__toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.c-gradation-bg01 {
  position: relative;
  z-index: 1;
  padding-top: 7.4305555556vw;
  padding-bottom: 170px;
  overflow-x: clip;
}
.c-gradation-bg01::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(110deg, #A2B4FF 0%, #9BF6CC 99.52%);
  animation: Grad 4s infinite alternate;
}
@media (max-width: 768px) {
  .c-gradation-bg01 {
    padding-top: 7.4666666667vw;
  }
}
.c-gradation-bg01::before {
  position: relative;
  display: block;
  width: 100%;
  height: 7.4305555556vw;
  margin-top: -7.4305555556vw;
  content: "";
  background: #fff;
  mask-image: url("../img/common/mask01.webp");
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: cover;
}
@media (max-width: 768px) {
  .c-gradation-bg01::before {
    height: 7.7333333333vw;
    margin-top: calc(-7.7333333333vw - 1px);
    mask-image: url("../img/common/mask01_sp.webp");
  }
}
.c-gradation-bg01__top img {
  width: 100%;
}

.c-inner01 {
  width: 1100px;
  max-width: calc(100% - 120px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .c-inner01 {
    max-width: calc(100% - 44px);
  }
}

.c-inner02 {
  width: 1200px;
  max-width: calc(100% - 120px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .c-inner02 {
    max-width: calc(100% - 44px);
  }
}

.c-step01 {
  display: flex;
  flex-wrap: wrap;
  gap: 68px 52px;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-inline: auto;
  list-style-type: "";
}
@media (max-width: 768px) {
  .c-step01 {
    gap: 44px;
  }
}
.c-step01__item {
  position: relative;
  width: calc((100% - 104px) / 3);
  padding: 53px 36px 31px;
}
@media (max-width: 768px) {
  .c-step01__item {
    width: 100%;
    min-height: 167px;
    padding: 37px 35px 16px;
  }
}
.c-step01__item::after {
  position: absolute;
  top: 50%;
  right: -34px;
  width: 12px;
  height: 23px;
  content: "";
  background: url("../img/common/step_next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .c-step01__item::after {
    inset: auto;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.c-step01__item:nth-child(1) {
  background: #47CAEB;
}
.c-step01__item:nth-child(2) {
  background: #53C0DA;
}
.c-step01__item:nth-child(3) {
  background: #3AA2C2;
}
@media (min-width: 769px) {
  .c-step01__item:nth-child(3)::after {
    display: none;
  }
}
.c-step01__item:nth-child(4) {
  background: #2895C7;
}
.c-step01__item:nth-child(5) {
  background: #157DAC;
}
.c-step01__item:nth-child(5)::after {
  display: none;
}
.c-step01__no {
  position: absolute;
  top: -16px;
  left: 12px;
}
@media (max-width: 768px) {
  .c-step01__no img {
    width: 106px;
  }
}
.c-step01__title {
  margin-bottom: 15px;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-step01__title {
    margin-bottom: 4px;
    font-size: 25px;
  }
}
.c-step01__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  color: #FFF;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-step01__text {
    font-size: 14px;
    line-height: 26px;
  }
}

.c-table01 {
  border-collapse: collapse;
}
.c-table01 th,
.c-table01 td {
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.04em;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 768px) {
  .c-table01 th,
  .c-table01 td {
    display: block;
    width: 100%;
    padding: 10px 22px;
    border: none;
  }
}
.c-table01 th {
  vertical-align: top;
  color: #FFF;
  background: #008FBE;
}
.c-table01 td {
  background: #fff;
}
.c-table01 tr:first-child th,
.c-table01 tr:first-child td {
  border-top: none;
}
.c-table01 tr:last-child th,
.c-table01 tr:last-child td {
  border-bottom: none;
}

.c-page-title01 {
  position: relative;
  width: fit-content;
  padding: 187px 16px 105px;
  margin-inline: auto;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #0C6BB0;
}
@media (max-width: 768px) {
  .c-page-title01 {
    padding: 179px 16px 37px;
    font-size: 20px;
  }
}
.c-page-title01__inner {
  position: relative;
  z-index: 1;
}
.c-page-title01__image {
  position: absolute;
  top: 50%;
  left: -24px;
  display: block;
  transform: translate(-100%, -50%);
}
@media (max-width: 768px) {
  .c-page-title01__image {
    top: -10px;
    left: 50%;
    width: 100vw;
    text-align: center;
    transform: translate(-50%, -100%);
  }
}

.c-section-title01 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-section-title01__main {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .c-section-title01__main {
    font-size: 30px;
  }
}
.c-section-title01__sub {
  font-family: var(--font-en);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #008FBE;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .c-section-title01__sub {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.c-section-title02 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .c-section-title02 {
    font-size: 18px;
  }
}

.c-title01 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}

.c-toggle-button {
  cursor: pointer;
}
.c-toggle-button.js-open .c-faq01__toggle-icon::after,
.c-toggle-button.js-open .c-accordion01__toggle-icon::after,
.c-toggle-button.js-open .c-accordion02__toggle-icon::after {
  opacity: 0;
}

.c-toggle-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.c-toggle-content.js-open {
  grid-template-rows: 1fr;
}
.c-toggle-content__inner {
  overflow: hidden;
}
.c-toggle-content__inner .c-table01 {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-toggle-content__inner .c-table01 {
    margin-top: 25px;
  }
}

.c-wave-section__mask {
  width: 100%;
}
.c-wave-section__inner {
  background: #fff;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
#pagetop.is-show {
  opacity: 1;
}
#pagetop a {
  display: block;
}
@media (any-hover: hover) {
  #pagetop a {
    transition: opacity 0.3s;
  }
  #pagetop a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .p-top-main {
    padding-bottom: 150px;
    background: url("/recruit/assets/img/top/bubble_sp.svg");
    background-position: top -170px center;
    background-size: 512px auto;
  }
}

.top-bg {
  position: relative;
  padding-bottom: 107px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-bg {
    padding-bottom: 0;
  }
}
.top-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("/recruit/assets/img/top/bubble.svg"), linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(110deg, #A2B4FF 0%, #9BF6CC 99.52%);
  background-position: top -120px center, top center, top center;
  background-size: auto;
  animation: Grad 4s infinite alternate;
}
@media (max-width: 768px) {
  .top-bg::before {
    display: none;
  }
}
.top-bg__image {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 1440px;
  max-width: none;
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
}

.top-content {
  position: relative;
  z-index: 1;
}
.top-content [data-aos=fade-up] {
  transform: translate3d(0, 20px, 0);
}
.top-content [data-aos=fade-down] {
  transform: translate3d(0, -20px, 0);
}

@keyframes Grad {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
.top-main-title {
  padding-top: 193px;
  margin-bottom: 71px;
  text-align: center;
}
.top-main-title__image {
  display: none;
}
@media (max-width: 768px) {
  .top-main-title {
    position: relative;
    z-index: 1;
    padding: 115px 0 155px;
  }
  .top-main-title__image {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    pointer-events: none;
    transform: translateX(-50%);
  }
  .top-main-title__inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(110deg, #A2B4FF 0%, #9BF6CC 99.52%);
    animation: Grad 4s infinite alternate;
  }
  .top-main-title__inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16.5333333333vw;
    content: "";
    background: #fff;
    mask-image: url("../img/top/kv_mask_sp.webp");
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-position: top center;
    mask-size: cover;
  }
}

.top-lead {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .top-lead {
    display: none;
  }
}
.top-lead span {
  color: #0071BC;
}

.top-down-arrow {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .top-down-arrow {
    display: none;
  }
}

.top-comment01 {
  position: relative;
  right: 73px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .top-comment01 {
    right: auto;
    margin-bottom: 24px;
  }
}
.top-comment01__deco {
  position: absolute;
  right: -36px;
  bottom: -114px;
  z-index: 2;
}
.top-comment01__deco-sp01 {
  position: absolute;
  bottom: 84px;
  left: 197px;
  z-index: 2;
}
.top-comment01__deco-sp02 {
  position: absolute;
  bottom: -44px;
  left: 35px;
  z-index: 2;
}

.top-comment02 {
  position: relative;
  left: 146px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .top-comment02 {
    left: auto;
    margin-bottom: 30px;
  }
}
.top-comment02__deco {
  position: absolute;
  bottom: -74px;
  left: -34px;
  z-index: 3;
}
.top-comment02__deco-sp01 {
  position: absolute;
  bottom: 64px;
  left: 35px;
  z-index: 2;
}
.top-comment02__deco-sp02 {
  position: absolute;
  bottom: -64px;
  left: 201px;
  z-index: 2;
}

.top-comment03 {
  position: relative;
  right: 80px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 89px;
}
@media (max-width: 768px) {
  .top-comment03 {
    right: auto;
    margin-bottom: 24px;
  }
}
.top-comment03__deco {
  position: absolute;
  right: -6px;
  bottom: -126px;
  z-index: 4;
}
.top-comment03__deco-sp01 {
  position: absolute;
  bottom: 62px;
  left: 197px;
  z-index: 2;
}
.top-comment03__deco-sp02 {
  position: absolute;
  bottom: -66px;
  left: 34px;
  z-index: 2;
}

.top-comment04 {
  position: relative;
  left: 162px;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-comment04 {
    left: auto;
  }
}

.top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 15px;
  width: 1415px;
  max-width: calc(100% - 120px);
  padding: 38px 0 32px;
  margin-inline: auto;
  margin-bottom: 150px;
}
@media (max-width: 1280px) {
  .top-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    max-width: calc(100% - 120px);
    padding: 60px 0;
    margin-bottom: 0;
  }
}

.top-card {
  display: flex;
  padding: 70px 40px 70px 60px;
  border-radius: 10px;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .top-card {
    flex-direction: column;
    padding: 22px;
  }
}
.top-card--bdcorp {
  background: linear-gradient(90deg, #00C3D9 0%, #3D81FF 100%);
}
.top-card--works {
  background: linear-gradient(90deg, #CE8DFF 0%, #FF96C3 100%);
}
.top-card--voice {
  background: linear-gradient(270deg, #FF917D 0%, #FFBB3D 100%);
}
.top-card--office {
  background: linear-gradient(270deg, #91D268 0.01%, #00B3B3 99.94%);
}
@media (any-hover: hover) {
  .top-card {
    transition: filter 0.3s;
  }
  .top-card:hover {
    filter: contrast(1.5);
  }
}
.top-card__image {
  margin-right: 50px;
}
@media (max-width: 768px) {
  .top-card__image {
    margin-inline: auto;
    margin-bottom: 12px;
  }
  .top-card__image img {
    width: 150px;
  }
}
.top-card__title {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #FFF;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.top-card__title svg {
  display: none;
}
@media (max-width: 768px) {
  .top-card__title {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 34px;
  }
  .top-card__title svg {
    display: block;
  }
}
.top-card__subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #FFF;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .top-card__subtitle {
    margin-bottom: 0;
    font-size: 12px;
  }
}
.top-card__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #FFF;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .top-card__description {
    font-size: 16px;
  }
}
.top-card__arrow {
  align-self: center;
  margin-right: 0;
  margin-left: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .top-card__arrow {
    display: none;
  }
}

.p-philosophy-intro__title01 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-philosophy-intro__lead01 {
  font-weight: 500;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-philosophy-intro__lead01 {
    text-align: left;
  }
}

.p-philosophy-message {
  padding: 100px 60px 160px;
  margin-bottom: 64px;
  background: #fff;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .p-philosophy-message {
    padding: 62px 37px 42px;
    border-radius: 22px;
  }
}
.p-philosophy-message__inner {
  width: 700px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-philosophy-message__header {
    margin-inline: -17px;
  }
}
.p-philosophy-message__title {
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-philosophy-message__title {
    margin-bottom: 5px;
    text-align: left;
  }
}
.p-philosophy-message__text {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-philosophy-message__text:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-philosophy-message__text:not(:last-child) {
    margin-bottom: 35px;
  }
}
.p-philosophy-message__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .p-philosophy-message__bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}
.p-philosophy-message__name {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.04em;
}

.p-philosophy-individuality__inner {
  padding: 56px 60px 170px;
}
@media (max-width: 768px) {
  .p-philosophy-individuality__inner {
    padding-inline: 16px;
  }
}
.p-philosophy-individuality__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 1200px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-philosophy-individuality__card {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.p-philosophy-individuality__card-item {
  display: grid;
  grid-template-columns: 167px 1fr;
  gap: 20px;
  padding: 35px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .p-philosophy-individuality__card-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding: 37px 25px 25px;
  }
}
.p-philosophy-individuality__card-item--color01 {
  background: #47CAEB;
}
.p-philosophy-individuality__card-item--color02 {
  background: #53C0DA;
}
.p-philosophy-individuality__card-item--color03 {
  background: #3AA2C2;
}
.p-philosophy-individuality__card-item--color04 {
  background: #2895C7;
}
.p-philosophy-individuality__card-image {
  place-self: center center;
}
@media (max-width: 768px) {
  .p-philosophy-individuality__card-image img {
    width: 150px;
  }
}
.p-philosophy-individuality__card-title {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  color: #FFF;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-philosophy-individuality__card-title {
    margin-bottom: 20px;
    font-size: 33px;
    line-height: 40px;
  }
}
.p-philosophy-individuality__card-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
  letter-spacing: 0.04em;
}

.p-office-bdc {
  margin-bottom: 82px;
}
@media (max-width: 768px) {
  .p-office-bdc {
    margin-bottom: 50px;
  }
}
.p-office-bdc__header {
  margin-bottom: 53px;
}
@media (max-width: 768px) {
  .p-office-bdc__header {
    margin-bottom: 31px;
  }
}
.p-office-bdc__content {
  padding: 38px 22px;
  background: #FFF;
  border-radius: 16px;
}
.p-office-bdc__title {
  margin-bottom: 22px;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  color: #008FBE;
  letter-spacing: 0.04em;
}
.p-office-bdc__text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-office-education-policy {
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .p-office-education-policy {
    margin-bottom: 62px;
  }
}
.p-office-education-policy__header {
  margin-bottom: 53px;
}
@media (max-width: 768px) {
  .p-office-education-policy__header {
    margin-bottom: 31px;
  }
}
.p-office-education-policy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-office-education-policy__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-office-education-policy__list-item {
  position: relative;
  min-height: 290px;
  padding: 106px 40px 56px;
  background: #FFF;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-office-education-policy__list-item {
    padding-inline: 30px;
  }
}
.p-office-education-policy__list-no {
  position: absolute;
  top: 15px;
  left: 50%;
  font-family: var(--font-en2);
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #E7F3F8;
  letter-spacing: -1.4px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-office-education-policy__list-no {
    left: 30px;
    transform: none;
  }
}
.p-office-education-policy__list-text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-office-advancement {
  padding: 114px 60px 137px;
  margin-bottom: 92px;
  background: #FFF;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .p-office-advancement {
    padding: 68px 22px 102px;
    border-radius: 22px;
  }
}
.p-office-advancement__header {
  margin-bottom: 135px;
}
.p-office-advancement__title01 {
  position: relative;
  z-index: 1;
  width: 780px;
  max-width: 100%;
  padding-left: 74px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 33px;
  font-weight: 700;
  line-height: 32px;
  color: #008FBE;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-office-advancement__title01 {
    padding-left: 55px;
    font-size: 25px;
    color: #008FBE;
    letter-spacing: 1px;
  }
}
.p-office-advancement__title01 span {
  position: absolute;
  top: -116px;
  left: 0;
  z-index: -1;
  font-family: var(--font-en2);
  font-size: 190px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #F2F8FF;
  letter-spacing: -3.8px;
}
@media (max-width: 768px) {
  .p-office-advancement__title01 span {
    top: -72px;
    font-size: 130px;
  }
}
.p-office-advancement__title02 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  color: #008FBE;
  letter-spacing: 0.04em;
}
.p-office-advancement__text {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-office-advancement__section:not(:last-child) {
  margin-bottom: 170px;
}
.p-office-advancement__content {
  width: 720px;
  max-width: 100%;
  margin-inline: auto;
}
.p-office-advancement__content:not(:last-child) {
  margin-bottom: 78px;
}
.p-office-advancement__content--overflow {
  overflow: auto;
}
.p-office-advancement__content--schedule {
  width: 992px;
}
.p-office-advancement__content--schedule img {
  width: 992px;
  max-width: none;
}
.p-office-advancement__content--step {
  width: 1100px;
}
.p-office-advancement__content--step img {
  width: 1100px;
  max-width: none;
}
.p-office-advancement__card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  justify-content: center;
  width: 680px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin-block: 20px;
  margin-inline: auto;
  list-style: none;
}
@media (max-width: 768px) {
  .p-office-advancement__card {
    gap: 6px;
  }
}
.p-office-advancement__card-item {
  display: grid;
  width: calc((100% - 32px) / 3);
  padding: 20px 0;
  background: #F2F8FF;
  border-radius: 24px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .p-office-advancement__card-item {
    width: calc((100% - 6px) / 2);
  }
  .p-office-advancement__card-item:last-child {
    width: 100%;
  }
}
.p-office-advancement__card-image {
  display: block;
  margin-inline: auto;
  margin-bottom: 10px;
}
.p-office-advancement__card-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.04em;
}

.p-office-gallery__inner {
  padding-bottom: 170px;
}
.p-office-gallery__tokyo {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .p-office-gallery__tokyo {
    margin-bottom: 60px;
  }
}
.p-office-gallery__name {
  position: absolute;
  top: 68px;
  right: 0;
  padding: 17px 22px;
  font-size: 19px;
  font-weight: 500;
  line-height: 32px;
  color: #FFF;
  letter-spacing: 0.76px;
  background: #008FBE;
}
@media (max-width: 768px) {
  .p-office-gallery__name {
    top: 11px;
    padding-block: 6px;
    font-size: 12px;
  }
}
.p-office-gallery .swiper-slide {
  position: relative;
  transform: scale(0.608);
  transition: transform 0.3s;
}
.p-office-gallery .swiper-slide img {
  width: 100%;
}
.p-office-gallery .swiper-slide-active {
  transform: scale(1) !important;
}
.p-office-gallery .swiper-pagination {
  position: static;
  margin-top: 65px;
  line-height: 0;
}
@media (max-width: 768px) {
  .p-office-gallery .swiper-pagination {
    margin-top: 20px;
  }
}
.p-office-gallery .swiper-pagination-bullet {
  background: #242424;
  opacity: 1;
}
.p-office-gallery .swiper-pagination-bullet-active {
  background: #76B8D1;
}

.p-work-case-outline__content {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  padding: 45px 22px;
  margin-bottom: 100px;
  background: #FFF;
  border-radius: 38px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .p-work-case-outline__content {
    gap: 13px;
    padding: 37px 15px 36px;
    margin-bottom: 54px;
    border-radius: 22px;
  }
}
.p-work-case-outline__title {
  display: flex;
  justify-content: center;
  width: 866px;
  max-width: 100%;
  margin-inline: auto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #0C6BB0;
}
@media (max-width: 768px) {
  .p-work-case-outline__title {
    font-size: 25px;
  }
}
.p-work-case-outline__description {
  width: 866px;
  max-width: 100%;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-work-case-outline__title02 {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
.p-work-case-outline__title02::before {
  display: block;
  width: 9px;
  aspect-ratio: 1;
  content: "";
  background: #008FBE;
  border-radius: 50%;
}
.p-work-case-outline__charge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 94px;
  padding: 0;
  padding-left: 125px;
  margin: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 768px) {
  .p-work-case-outline__charge-list {
    flex-direction: column;
    gap: 34px;
    padding-left: 0;
    margin-top: 15px;
  }
}
.p-work-case-outline__charge-list-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-work-case-outline__charge-list-item {
    gap: 10px;
  }
}
.p-work-case-outline__charge-list-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}
.p-work-case-outline__product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.p-work-case-outline__product-list-item {
  padding: 13px 25px 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.04em;
  background: #FFF;
  border-radius: 9999px;
}

.p-work-case-interview {
  margin-top: 113px;
}
@media (max-width: 768px) {
  .p-work-case-interview {
    margin-top: 100px;
  }
}
.p-work-case-interview__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-work-case-interview__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 51px 47px;
  background: #FFF;
  border-radius: 38px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .p-work-case-interview__item {
    gap: 18px;
    padding: 32px 15px;
    border-radius: 22px;
  }
}
.p-work-case-interview__answer {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-work-case-interview__answer {
    flex-direction: column;
    gap: 12px;
  }
}
.p-work-case-interview__answer-icon {
  flex-shrink: 0;
}
.p-work-case-interview__answer-icon img {
  width: 69px;
}
@media (max-width: 768px) {
  .p-work-case-interview__answer-icon img {
    width: 112px;
  }
}
.p-work-case-interview__answer-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-work-case-interview__answer-text .is-sales {
  color: #0C6BB0;
}
.p-work-case-interview__answer-text .is-designer {
  color: #D319A8;
}

.p-voice-faq {
  padding: 72px 0 90px;
  margin-bottom: 97px;
  background: #F2F8FF;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .p-voice-faq {
    padding: 66px 0 81px;
    margin-bottom: 54px;
    border-radius: 22px;
  }
}
.p-voice-faq__image {
  text-align: center;
}
.p-voice-faq__image img {
  filter: drop-shadow(0 4px 45px rgba(0, 0, 0, 0.03));
}

.p-voice-event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .p-voice-event-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-voice-event-list__item:nth-child(1) {
  background: #47CAEB;
}
.p-voice-event-list__item:nth-child(2) {
  background: #53C0DA;
}
.p-voice-event-list__item:nth-child(3) {
  background: #3AA2C2;
}
.p-voice-event-list__item:nth-child(4) {
  background: #2895C7;
}
.p-voice-event-list__image {
  background: #fff;
}
.p-voice-event-list__content {
  padding: 40px 50px;
}
@media (max-width: 768px) {
  .p-voice-event-list__content {
    padding: 37px 22px;
  }
}
.p-voice-event-list__title {
  margin-bottom: 16px;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  color: #FFF;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-event-list__title {
    font-size: 30px;
    line-height: 1.2;
  }
}
.p-voice-event-list__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
  letter-spacing: 0.04em;
}

.p-voice-profile__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-right: calc(clamp(162px, 32.2222222222vw, 468px) + 20px);
  padding-bottom: 53px;
}
@media (max-width: 768px) {
  .p-voice-profile__content {
    padding-right: 44.8vw;
    padding-bottom: 11px;
  }
}
.p-voice-profile__title {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-profile__title {
    display: none;
  }
}
.p-voice-profile__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-profile__name {
    font-size: 12px;
  }
}
.p-voice-profile__department {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-profile__department {
    font-size: 12px;
  }
}
.p-voice-profile__year {
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-profile__year {
    font-size: 10px;
  }
}
.p-voice-profile__image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-voice-profile__image img {
  width: clamp(162px, 32.2222222222vw, 464px);
}
@media (max-width: 768px) {
  .p-voice-profile__image {
    bottom: -22px;
  }
}

.p-voice-interview {
  padding: 75px 22px 160px;
  margin-bottom: 78px;
  background: #F2F8FF;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .p-voice-interview {
    padding: 22px 22px 42px;
    border-radius: 22px;
  }
}
.p-voice-interview__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-voice-interview__inner {
    gap: 0;
    width: 100%;
  }
}
.p-voice-interview__item {
  position: relative;
  width: min(54.1666666667vw, 780px);
  max-width: 100%;
  padding: 36px 60px;
  background: #FFF;
  border-radius: 38px;
  box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.03);
}
.p-voice-interview__item:nth-child(odd) {
  margin-right: 0;
  margin-left: 170px;
}
.p-voice-interview__item:nth-child(odd)::before {
  position: absolute;
  top: 60px;
  left: 5px;
  display: block;
  width: 25px;
  height: 21px;
  content: "";
  background: url("../img/voice/interview_down.svg");
  transform: translateX(-100%) rotate(90deg);
}
.p-voice-interview__item:nth-child(odd)::after {
  position: absolute;
  top: 0;
  left: -170px;
  content: url("../img/voice/interview_deco01.svg");
}
@media (max-width: 768px) {
  .p-voice-interview__item:nth-child(odd) {
    margin-left: 0;
  }
}
.p-voice-interview__item:nth-child(even) {
  margin-right: 170px;
  margin-left: 0;
}
.p-voice-interview__item:nth-child(even)::before {
  position: absolute;
  top: 60px;
  right: 5px;
  display: block;
  width: 25px;
  height: 21px;
  content: "";
  background: url("../img/voice/interview_down.svg");
  transform: translateX(100%) rotate(-90deg);
}
.p-voice-interview__item:nth-child(even)::after {
  position: absolute;
  top: 0;
  right: -170px;
  content: url("../img/voice/interview_deco02.svg");
}
@media (max-width: 768px) {
  .p-voice-interview__item:nth-child(even) {
    margin-right: 0;
  }
}
.p-voice-interview__item:last-child::after {
  position: absolute;
  top: 0;
  right: -170px;
  content: url("../img/voice/interview_deco03.svg");
}
@media (max-width: 768px) {
  .p-voice-interview__item {
    width: 100%;
    padding: 31px 15px 32px;
    margin-bottom: 200px;
    border-radius: 22px;
  }
  .p-voice-interview__item:nth-child(odd)::before, .p-voice-interview__item:nth-child(even)::before, .p-voice-interview__item:last-child::before {
    position: absolute;
    inset: auto auto 1px 50%;
    display: block;
    width: 25px;
    height: 21px;
    content: "";
    background: url("../img/voice/interview_down.svg");
    transform: translate(-50%, 100%);
  }
  .p-voice-interview__item:nth-child(odd)::after, .p-voice-interview__item:nth-child(even)::after, .p-voice-interview__item:last-child::after {
    position: absolute;
    inset: auto auto -20px 50%;
    content: url("../img/voice/interview_deco_sp.svg");
    transform: translate(-100px, 100%);
  }
}
.p-voice-interview__question {
  position: relative;
  padding-left: 60px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-interview__question {
    padding-left: 54px;
    font-size: 18px;
    line-height: 30px;
  }
}
.p-voice-interview__question span {
  position: absolute;
  top: calc(1em - 0.5lh);
  left: 0;
  font-family: var(--font-en2);
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #93C1EF;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-voice-interview__question span {
    font-size: 37px;
    line-height: 30px;
  }
}
.p-voice-interview__answer {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (min-width: 769px) {
  .p-voice-interview__answer--reverse {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1024px) {
  .p-voice-interview__answer {
    flex-direction: column;
    gap: 10px;
  }
}
.p-voice-interview__answer p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-voice-interview__answer p strong {
  font-weight: 700;
  color: #0C6BB0;
}
.p-voice-interview__answer-image {
  flex-shrink: 0;
}
.p-voice-interview__answer-image--q2 img {
  width: 184px;
}
.p-voice-interview__answer-image--q4 img {
  width: 278px;
}

.p-voice-schedule {
  position: relative;
  z-index: 1;
  width: 950px;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 170px;
  overflow: hidden;
}
.p-voice-schedule::before {
  position: absolute;
  top: 49px;
  left: 3px;
  z-index: -1;
  display: block;
  width: 4px;
  height: 100%;
  content: "";
  background: url("../img/voice/schedule_line.svg");
  background-repeat: repeat-y;
}
.p-voice-schedule__item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 0;
  margin-left: 20px;
  border-bottom: 1px solid #E0F4F9;
}
@media (max-width: 768px) {
  .p-voice-schedule__item {
    flex-direction: column;
    gap: 17px;
  }
}
.p-voice-schedule__time-event {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-left: -20px;
}
@media (max-width: 768px) {
  .p-voice-schedule__time-event {
    gap: 17px;
  }
}
.p-voice-schedule__time {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #008FBE;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-schedule__time {
    font-size: 20px;
  }
}
.p-voice-schedule__time::before {
  display: block;
  width: 10px;
  aspect-ratio: 1;
  content: "";
  background: #008FBE;
  border-radius: 50%;
}
.p-voice-schedule__event {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-voice-schedule__event {
    font-size: 20px;
  }
}
.p-voice-schedule__image {
  justify-self: center;
  width: 273px;
  margin-block: -14px;
}
@media (max-width: 768px) {
  .p-voice-schedule__image {
    margin: 0 auto;
  }
}

.p-entry__inner {
  width: 1300px;
  max-width: calc(100% - 120px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-entry__inner {
    max-width: calc(100% - 44px);
  }
}
.p-entry__content {
  padding: 46px 50px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .p-entry__content {
    padding: 15px;
  }
}

.u-pb0 {
  padding-bottom: 0;
}

.u-mb2 {
  margin-bottom: 2px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb64 {
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .u-mb27sp {
    margin-bottom: 27px;
  }
  .u-mb30sp {
    margin-bottom: 30px;
  }
  .u-mb35sp {
    margin-bottom: 35px;
  }
  .u-mb36sp {
    margin-bottom: 36px;
  }
  .u-mb40sp {
    margin-bottom: 40px;
  }
  .u-mb55sp {
    margin-bottom: 55px;
  }
  .u-mb70sp {
    margin-bottom: 70px;
  }
  .u-mb80sp {
    margin-bottom: 80px;
  }
  .u-gap9sp {
    gap: 9px;
  }
  .u-gap20sp {
    gap: 20px;
  }
  .u-gap40sp {
    gap: 40px;
  }
}
@media (min-width: 769px) {
  .u-mb22pc {
    margin-bottom: 22px;
  }
  .u-mb25pc {
    margin-bottom: 25px;
  }
  .u-mb32pc {
    margin-bottom: 32px;
  }
  .u-mb39pc {
    margin-bottom: 39px;
  }
  .u-mb44pc {
    margin-bottom: 44px;
  }
  .u-mb51pc {
    margin-bottom: 51px;
  }
  .u-mb60pc {
    margin-bottom: 60px;
  }
  .u-mb64pc {
    margin-bottom: 64px;
  }
  .u-mb70pc {
    margin-bottom: 70px;
  }
  .u-mb88pc {
    margin-bottom: 88px;
  }
  .u-mb120pc {
    margin-bottom: 120px;
  }
  .u-gap15pc {
    gap: 15px;
  }
  .u-gap40pc {
    gap: 40px;
  }
  .u-gap56pc {
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
}

.u-visibility-hidden {
  visibility: hidden;
}

.u-marker {
  font-weight: 700;
  background: #F9DC00;
}

.u-flex-column {
  display: flex;
  flex-direction: column;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form dl,
.form dt,
.form dd {
  margin: 0;
}