/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #00478d;
  --color-black: #282828;
  --gradient-pink-orange: linear-gradient(90deg, rgba(240, 145, 167, 1) 0%, rgba(246, 174, 84, 1) 50%, rgb(246, 147, 26) 100%);
  --gradient-purple-pink: linear-gradient(90deg, rgba(127, 144, 199, 1) 0%, rgba(240, 145, 167, 1) 50%, rgb(239, 78, 115) 100%);
  --gradient-purple-blue: linear-gradient(90deg, rgba(108, 123, 187, 1) 0%, rgba(0, 144, 224, 1) 50%, rgba(0, 144, 224, 1) 100%);
  --gradient-skyblue-blue: linear-gradient(90deg, rgba(0, 163, 230, 1) 0%, rgba(0, 71, 141, 1) 50%, rgb(1, 54, 107) 100%);
  --font-mont: "Montserrat", sans-serif;
}

/* =============================================
  mixin parts
============================================= */
/* =============================================
initial settings
============================================= */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--color-black);
}
body.is-active {
  overflow: hidden !important;
}

.font-mont, .ct-fv__title, .faq__accordions .accordion__answer::before, .faq__accordions .accordion__question::before, .req-entry__boxes .link, .data__box .skill-list .item::before, .data__box .number, .btn--link {
  font-family: var(--font-mont);
}

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

.img {
  width: 100%;
}

p {
  line-height: 2;
}

a {
  text-decoration: none;
  color: var(--color-black);
}

ul, ol {
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .list li {
    font-size: 14px;
    padding-left: 10px;
  }
}
.list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00a3e6;
}
@media screen and (max-width: 768px) {
  .list li::before {
    top: 12px;
    width: 6px;
    height: 6px;
  }
}
.list li.notes {
  font-size: 12px;
  padding-left: 0;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .list li.notes {
    font-size: 10px;
  }
}
.list li.notes::before {
  content: none;
}
.list li.circle-none {
  padding-left: 0;
}
.list li.circle-none::before {
  content: none;
}

main {
  margin-top: -120px;
}
@media screen and (max-width: 1536px) {
  main {
    margin-top: -84px;
  }
}
@media screen and (max-width: 768px) {
  main {
    margin-top: -50px;
  }
}

.main {
  overflow-x: clip;
}

section {
  position: relative;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}
.inner--sm {
  max-width: 1080px;
}
.inner--xs {
  max-width: 880px;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .logo {
    gap: 20px;
  }
}
.logo:hover {
  opacity: 0.7;
}
.logo--blue span {
  color: var(--color-primary);
}
.logo--blue span::before {
  background-color: var(--color-primary);
}
.logo--white span {
  color: #fff;
}
.logo--white span::before {
  background-color: #fff;
}
.logo span {
  display: inline-block;
  position: relative;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .logo span {
    font-size: 12px;
  }
}
.logo span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 1px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .logo span::before {
    left: -10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  .logo img {
    width: 180px;
    aspect-ratio: 180/10;
  }
}

.js-observe {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity ease 0.8s, transform ease 0.8s;
}
.js-observe.is-active {
  opacity: 1;
  transform: translateY(0px);
}

.page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 998;
  display: none;
}
@media screen and (max-width: 768px) {
  .page-top {
    right: 20px;
  }
}
.page-top button {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  z-index: 998;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .page-top button {
    width: 36px;
    height: 36px;
  }
}
.page-top button:hover {
  opacity: 0.7;
}
.page-top button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat url(../img/icon-arrow-blue.svg) center center/contain;
}

.tac {
  text-align: center;
}

.breadcrumb > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .breadcrumb > span {
    gap: 10px 20px;
  }
}
.breadcrumb > span span {
  color: #fff;
  font-size: 13px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .breadcrumb > span span {
    font-size: 10px;
  }
}
.breadcrumb > span span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumb > span span::after {
    right: -10px;
    width: 4px;
    height: 4px;
  }
}
.breadcrumb > span span:last-child::after {
  content: none;
}
.breadcrumb > span span a {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: opacity ease 0.3s;
}
.breadcrumb > span span a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.breadcrumb > span span a:hover {
  opacity: 0.7;
}

.bg-gradient {
  background: linear-gradient(179deg, rgba(6, 52, 122, 0.1) 0%, rgba(0, 144, 224, 0.2) 100%);
}
.bg-gradient.is-message {
  padding-bottom: 135px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bg-gradient.is-message {
    padding-bottom: 70px;
  }
}
.bg-gradient.is-radius {
  border-radius: 0 190px 0 190px;
}
@media screen and (max-width: 1000px) {
  .bg-gradient.is-radius {
    border-radius: 0 100px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .bg-gradient.is-radius {
    border-radius: 0 50px 0 50px;
  }
}
.bg-white {
  background-color: #fff;
  position: relative;
}
.bg-white.is-radius {
  border-radius: 0 190px 0 190px;
  padding: 0 100px;
}
@media screen and (max-width: 1000px) {
  .bg-white.is-radius {
    border-radius: 0 100px 0 100px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .bg-white.is-radius {
    border-radius: 0 40px 0 40px;
    padding: 0 20px;
  }
}

.maker {
  padding: 2px;
}
.maker--skyblue {
  background-color: #bfd1e2;
}
.maker--blue {
  background-color: #ccedfa;
}
.maker--green {
  background-color: #d1ead4;
}
.maker--pink {
  background-color: #fad9e0;
}

.interview-slide {
  position: relative;
  z-index: 1;
  padding: 0 0 70px;
}
.interview-slide__swiper {
  margin: 30px auto 0;
  padding-top: 70px;
  max-width: 1050px;
}
@media screen and (max-width: 768px) {
  .interview-slide__swiper {
    padding-top: 0;
  }
}
.interview-slide__paginate {
  z-index: 2;
}
.interview-slide__paginate .swiper-pagination-bullet {
  background-color: var(--color-primary);
  width: 10px !important;
  height: 10px !important;
}
@media screen and (max-width: 768px) {
  .interview-slide__paginate .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}
.interview-slide__prev, .interview-slide__next {
  top: 190px;
  width: 34px;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .interview-slide__prev, .interview-slide__next {
    top: 120px;
  }
}
.interview-slide__prev:hover, .interview-slide__next:hover {
  transform: scale(1.2);
}
.interview-slide__prev::after, .interview-slide__next::after {
  content: none;
}
.interview-slide__prev {
  background: no-repeat url(../img/icon-prev-gray.svg) center center/contain;
}
.interview-slide__next {
  background: no-repeat url(../img/icon-next-gray.svg) center center/contain;
}
.interview-slide__item {
  width: 300px;
  display: block;
  transition: opacity ease 0.3s;
}
.interview-slide__item:hover {
  opacity: 0.7;
}
.interview-slide__item.swiper-slide-active .interview-slide__item-head {
  transform: scale(1.2);
  transform-origin: bottom center;
}
@media screen and (max-width: 768px) {
  .interview-slide__item.swiper-slide-active .interview-slide__item-head {
    transform: none;
  }
}
.interview-slide__item.swiper-slide-active .interview-slide__item-year {
  background-color: var(--color-primary);
  color: #fff;
}
.interview-slide__item.swiper-slide-active .interview-slide__item-text {
  color: var(--color-primary);
}
.interview-slide__item.swiper-slide-active .interview-slide__item-profile {
  color: #6a85af;
}
.interview-slide__item.swiper-slide-active .interview-slide__item-profile span {
  color: var(--color-primary);
}
.interview-slide__item-head {
  position: relative;
  transition: transform ease 0.9s;
}
.interview-slide__item-number {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary);
  font-style: italic;
  font-size: 66px;
  font-weight: 400;
}
.interview-slide__item-year {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  font-size: 13px;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  transition: color ease 0.9s, background-color ease 0.9s;
}
.interview-slide__item-text {
  margin-top: 30px;
  font-size: 18px;
  transition: color ease 0.9s;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .interview-slide__item-text {
    font-size: 15px;
  }
}
.interview-slide__item-profile {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 14px;
  position: relative;
  transition: color ease 0.9s;
  color: #7e7e7e;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .interview-slide__item-profile {
    font-size: 13px;
  }
}
.interview-slide__item-profile::before {
  content: "";
  width: 13px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  top: 15px;
  left: 0;
}
.interview-slide__item-profile span {
  font-size: 17px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .interview-slide__item-profile span {
    font-size: 14px;
  }
}
.interview-slide__link {
  position: absolute !important;
}
@media screen and (max-width: 768px) {
  .interview-slide__link {
    bottom: -50px !important;
    right: auto !important;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pagination {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .pagination {
    border-top: 1px solid #9a9a9a;
    margin-top: 55px;
    padding-top: 40px;
  }
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .pagination .nav-links {
    gap: 5px;
  }
}
.pagination .nav-links .page-numbers {
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: var(--color-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  transition: color ease 0.3s, background ease 0.3s, border ease 0.3s;
  position: relative;
}
.pagination .nav-links .page-numbers::before, .pagination .nav-links .page-numbers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: opacity ease 0.3s;
}
.pagination .nav-links .page-numbers::before {
  background-color: #fff;
  border: 1px solid #9a9a9a;
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.pagination .nav-links .page-numbers::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 163, 230) 0%, rgb(0, 71, 141) 100%);
  z-index: -2;
}
.pagination .nav-links .page-numbers:hover {
  color: #fff;
}
.pagination .nav-links .page-numbers:hover::before {
  opacity: 0;
}
.pagination .nav-links .page-numbers.dots {
  border: none;
  width: 14px;
  pointer-events: none;
}
.pagination .nav-links .page-numbers.dots::before, .pagination .nav-links .page-numbers.dots::after {
  content: none;
}
.pagination .nav-links .page-numbers.current {
  color: #fff;
}
.pagination .nav-links .page-numbers.current::before {
  opacity: 0;
}
.pagination .nav-links .page-numbers.prev, .pagination .nav-links .page-numbers.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pagination .nav-links .page-numbers.prev:hover .icon, .pagination .nav-links .page-numbers.next:hover .icon {
  background: no-repeat url(../img/icon-paginate-active.svg) center center/contain;
}
.pagination .nav-links .page-numbers.prev .icon, .pagination .nav-links .page-numbers.next .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  display: block;
  background: no-repeat url(../img/icon-paginate.svg) center center/contain;
  transition: background ease 0.3s;
}
.pagination .nav-links .page-numbers.prev .icon--prev, .pagination .nav-links .page-numbers.next .icon--prev {
  transform: translate(-50%, -50%) rotate(180deg);
}
.pagination .nav-links .page-numbers.prev {
  left: 0;
}
.pagination .nav-links .page-numbers.next {
  right: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.3s, visibility ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background-color: #fff;
  max-width: 1200px;
  padding: 65px 100px;
  border-radius: 10px;
  max-height: calc(100% - 100px);
  width: calc(100% - 100px);
  overflow: scroll;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal__content {
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 80px 20px 50px;
    border-radius: 20px;
  }
}
.modal__content--sm {
  padding: 100px;
}
@media screen and (max-width: 768px) {
  .modal__content--sm {
    padding: 70px 20px;
  }
}
.modal__title {
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .modal__title {
    font-size: 15px;
    padding-left: 20px;
  }
}
.modal__title::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .modal__title::before {
    width: 14px;
    height: 14px;
    top: 8px;
  }
}
.modal__title span {
  font-size: 34px;
  margin-right: 15px;
  color: var(--color-primary);
  font-style: italic;
  font-weight: 600;
  margin-top: -16px;
}
@media screen and (max-width: 768px) {
  .modal__title span {
    font-size: 24px;
    margin-right: 15px;
    margin-top: -10px;
  }
}
.modal__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .modal__cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  display: block;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .modal__close {
    top: 20px;
    right: 20px;
  }
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-black);
  position: absolute;
  top: 50%;
  left: 50%;
}
.modal__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-card {
  background-color: #f2f2f6;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .modal-card {
    padding: 30px 20px;
  }
}
.modal-card__name {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .modal-card__name {
    font-size: 16px;
  }
}
.modal-card__profile {
  color: #686868;
  font-size: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .modal-card__profile {
    font-size: 12px;
  }
}
.modal-card__text {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .modal-card__text {
    font-size: 14px;
  }
}
.modal-media {
  display: grid;
  grid-template-columns: 42.83% 1fr;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .modal-media {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.modal-media__title {
  font-size: 23px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .modal-media__title {
    font-size: 20px;
  }
}
.modal-media__text {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .modal-media__text {
    font-size: 14px;
  }
}
.modal-media__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .modal-media__list {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.modal-media__list--single {
  grid-template-columns: 1fr;
}
.modal-media__interview-title {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .modal-media__interview-title {
    margin-top: 20px;
    font-size: 14px;
  }
}
.modal-media__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.modal-media__icon {
  transition: opacity ease 0.3s;
}
.modal-media__icon:hover {
  opacity: 0.7;
}

.map {
  position: relative;
}
.map__title {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  z-index: 2;
  font-size: 24px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 650px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .map__title {
    height: 70px;
    max-width: 240px;
    top: -35px;
    font-size: 16px;
  }
}
.map__maker {
  position: absolute;
  width: 5.729%;
  z-index: 4;
  transition: filter ease 0.3s;
  animation: makerAnimation ease-in-out 1.2s infinite alternate-reverse;
}
.map__maker:hover {
  filter: brightness(1.4);
}
.map__maker01 {
  top: 28.83%;
  left: 3.8%;
}
.map__maker02 {
  top: 57.37%;
  left: 22.76%;
}
.map__maker03 {
  top: 55.64%;
  left: 37.5%;
}
.map__maker04 {
  top: 17.55%;
  left: 60.2%;
}
.map__maker05 {
  top: 55.23%;
  left: 64.58%;
}
.map__maker06 {
  top: 3.13%;
  left: 75.05%;
}
.map__maker07 {
  top: 15.41%;
  left: 88.8%;
}
.map #js-map {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .map #js-map {
    min-width: 1000px;
  }
}
@media screen and (max-width: 450px) {
  .map #js-map {
    min-width: 850px;
  }
}

.index {
  position: fixed;
  right: 130px;
  bottom: 43px;
  background: linear-gradient(90deg, rgb(0, 163, 230) 0%, rgb(0, 71, 141) 100%);
  z-index: 998;
  border-radius: 10px;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .index {
    width: 160px;
    right: 75px;
  }
}
.index__head {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .index__head {
    padding-left: 20px;
  }
}
.index__head:hover .ct-index__title {
  color: #fff;
}
.index__title {
  color: #99b5d1;
  font-size: 22px;
  font-weight: 600;
  height: 65px;
  line-height: 65px;
  transition: color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .index__title {
    font-size: 19px;
    height: 40px;
    line-height: 40px;
  }
}
.index__button {
  position: absolute;
  background: no-repeat url(../img/icon-button-arrow.svg) center center/contain;
  width: 18px;
  height: 18px;
  display: block;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  transition: transform ease 0.3s;
}
.index__button.is-active {
  transform: translateY(-50%) rotate(-90deg);
}
.index__list {
  padding: 30px 35px;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index__list {
    padding: 20px;
  }
}
.index__list::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: calc(100% - 40px);
  height: 1px;
  background: #99b5d1;
}
@media screen and (max-width: 768px) {
  .index__list::after {
    width: calc(100% - 20px);
    left: 10px;
  }
}
.index__list .item {
  margin-bottom: 15px;
}
.index__list .item:last-child {
  margin-bottom: 0;
}
.index__list .item .link {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: relative;
  transition: font-weight ease 0.3s;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .index__list .item .link {
    font-size: 10px;
  }
}
.index__list .item .link:hover {
  opacity: 0.7;
}
.index__list .item .link::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -15px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .index__list .item .link::before {
    width: 4px;
    height: 4px;
    left: -8px;
    top: 6.2px;
  }
}
.index__list .item .link.is-current {
  font-weight: 600;
}
.index__list .item .link.is-current::before {
  opacity: 1;
}

.object {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 1536px) {
  .object img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 1200px) {
  .object img {
    transform: scale(0.6);
  }
}
@media screen and (max-width: 768px) {
  .object img {
    transform: scale(1);
  }
}

.fluffy-animation, .int-member__list .item:nth-child(5)::after, .int-member__list .item:nth-child(2)::after {
  display: block;
  animation: fluffyAnimation ease-in-out 1.2s infinite alternate-reverse;
}
@media screen and (max-width: 768px) {
  .fluffy-animation, .int-member__list .item:nth-child(5)::after, .int-member__list .item:nth-child(2)::after {
    animation: fluffySpAnimation ease-in-out 1.2s infinite alternate-reverse;
  }
}

.rotate-animation, .int-member__list .item:nth-child(6)::after, .int-member__list .item:nth-child(3)::after, .office-topics__content .image:before, .top-msg__box::before {
  display: block;
  animation: rotateAnimation linear 5s infinite;
}

.scroll-hint-icon-wrap {
  z-index: 2;
}
.scroll-hint-icon-wrap .scroll-hint-icon {
  border-radius: 20px;
  width: 90px;
  height: 90px;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
  padding: 30px 10px 15px;
}
.scroll-hint-icon-wrap .scroll-hint-icon::before {
  width: 25px;
  height: 30px;
}
.scroll-hint-icon-wrap .scroll-hint-icon::after {
  width: 33px;
  height: 10px;
  background-size: contain;
  margin-left: -15px;
  top: 15px;
}
.scroll-hint-icon-wrap .scroll-hint-icon .scroll-hint-text {
  font-weight: 700;
}

#js-header-logo,
#js-header-link {
  opacity: 0;
  transform: translateY(-30px);
}

#js-fv-copy {
  opacity: 0;
  transform: translateY(30px);
}

/* =============================================
  btn
============================================= */
.btn {
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  font-size: 18px;
  text-align: center;
  transition: background ease 0.3s;
  background-position: 0% 50%;
  background-size: 200% 100%;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn--orange {
  color: #fff;
  background-image: var(--gradient-pink-orange);
}
.btn--orange:hover {
  background-position: 100% 0%;
}
.btn--pink {
  color: #fff;
  background-image: var(--gradient-purple-pink);
}
.btn--pink:hover {
  background-position: 100% 0%;
}
.btn--blue {
  color: #fff;
  background-image: var(--gradient-skyblue-blue);
  min-width: 206px;
  width: auto;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  text-align: left;
  padding-left: 30px;
  padding-right: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn--blue {
    min-width: 255px;
    font-size: 14px;
  }
}
.btn--blue:hover {
  background-position: 100% 0%;
}
.btn--blue::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 15px;
  height: 15px;
  background: no-repeat url(../img/icon-button-arrow.svg) center center/contain;
}
.btn--external {
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgb(145, 165, 199) 0%, rgb(46, 142, 211) 100%);
}
.btn--external:hover span {
  background: transparent;
}
.btn--external .bg {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  background-color: var(--color-primary);
  border-radius: 25px;
  transition: background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--external .bg {
    text-align: center;
    padding-left: 0;
  }
}
.btn--external .text {
  display: block;
  padding-left: 40px;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .btn--external .text {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-left: 0;
  }
}
.btn--external .text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  background: no-repeat url(../img/icon-external.svg) center center/contain;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .btn--external .text::after {
    right: -20px;
  }
}
.btn--external02 {
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgb(11, 55, 132) 0%, rgb(46, 142, 211) 100%);
}
.btn--external02:hover .bg {
  background: transparent;
}
.btn--external02:hover .text {
  color: #fff;
}
.btn--external02:hover .text::after {
  background: no-repeat url(../img/icon-external.svg) center center/contain;
}
.btn--external02 .bg {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  background-color: #fff;
  border-radius: 25px;
  transition: background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--external02 .bg {
    text-align: center;
    padding-left: 0;
  }
}
.btn--external02 .text {
  display: block;
  padding-left: 40px;
  text-align: left;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
  transition: color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--external02 .text {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-left: 0;
  }
}
.btn--external02 .text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  background: no-repeat url(../img/icon-external-blue.svg) center center/contain;
  width: 14px;
  height: 14px;
  transition: background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--external02 .text::after {
    right: -20px;
  }
}
.btn--link {
  position: relative;
  bottom: 5px;
  right: 0;
  font-size: 14px;
  padding-left: 50px;
  z-index: 3;
  transition: color ease 0.3s;
  color: var(--color-black);
}
.btn--link:hover {
  color: #7e7e7e;
}
.btn--link:hover::before {
  background: no-repeat url(../img/icon-next-gray.svg) center center/contain;
  transform: scale(1.2) translateY(-50%);
}
.btn--link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: no-repeat url(../img/icon-arrow-gray.svg) center center/contain;
  width: 34px;
  height: 34px;
  transition: background ease 0.3s, transform ease 0.3s;
  transform-origin: top center;
}
.btn--index {
  width: 166px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  color: var(--color-black);
  text-align: left;
  padding-left: 15px;
  position: relative;
  transition: color ease 0.3s;
  overflow: hidden;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .btn--index {
    width: 100%;
    font-size: 14px;
  }
}
.btn--index::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 163, 230) 0%, rgb(0, 71, 141) 100%);
  transition: opacity ease 0.3s;
  opacity: 0;
  z-index: -1;
}
.btn--index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid var(--color-black);
  transition: opacity ease 0.3s;
  border-radius: 20px;
}
.btn--index .arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 16px;
  height: 16px;
}
.btn--index .arrow::before, .btn--index .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity ease 0.3s;
}
.btn--index .arrow::before {
  background: no-repeat url(../img/icon-index.svg) center center/contain;
}
.btn--index .arrow::after {
  background: no-repeat url(../img/icon-index-active.svg) center center/contain;
  opacity: 0;
}
.btn--index:hover, .btn--index.is-active {
  color: #fff;
}
.btn--index:hover::before, .btn--index.is-active::before {
  opacity: 0;
}
.btn--index:hover::after, .btn--index.is-active::after {
  opacity: 1;
}
.btn--index:hover .arrow::before, .btn--index.is-active .arrow::before {
  opacity: 0;
}
.btn--index:hover .arrow::after, .btn--index.is-active .arrow::after {
  opacity: 1;
}
.btn--sm {
  width: 206px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .btn--sm {
    width: auto;
    min-width: 117px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 0;
    height: 40px;
    line-height: 40px;
  }
  .btn--sm::after {
    right: 15px;
  }
}

/* =============================================
  section
============================================= */
.section {
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
}
.section__title {
  text-align: center;
  font-size: 46px;
  color: var(--color-primary);
  letter-spacing: 5px;
  position: relative;
  padding-top: 70px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 22px;
    padding-top: 30px;
    letter-spacing: 0px;
  }
}
.section__title::before {
  content: "";
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .section__title::before {
    width: 15px;
    height: 15px;
  }
}
.section__title span {
  font-size: 30px;
}
.section__title02 {
  text-align: center;
  font-size: 36px;
  color: var(--color-primary);
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section__title02 {
    font-size: 18px;
  }
}
.section__title02::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 50px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .section__title02::before {
    width: 20px;
    bottom: -20px;
  }
}
.section__title03 {
  text-align: center;
  font-size: 46px;
  color: var(--color-primary);
  letter-spacing: 5px;
  position: relative;
  padding-bottom: 60px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section__title03 {
    font-size: 22px;
    padding-bottom: 30px;
    letter-spacing: 0px;
  }
}
.section__title03::before {
  content: "";
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .section__title03::before {
    width: 15px;
    height: 15px;
  }
}
.section__title04 {
  text-align: center;
  font-size: 46px;
  color: var(--color-primary);
  letter-spacing: 5px;
  position: relative;
  padding-top: 50px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section__title04 {
    font-size: 22px;
    padding-top: 30px;
    letter-spacing: 0px;
  }
}
.section__title04::before {
  content: "";
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .section__title04::before {
    width: 15px;
    height: 15px;
  }
}
.section__title04 span {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .section__title04 span {
    font-size: 15px;
  }
}
.section__title05 {
  text-align: center;
  font-size: 46px;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section__title05 {
    font-size: 22px;
  }
}
.section__explain {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .section__explain {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
.section__explain .font-mont, .section__explain .ct-fv__title, .section__explain .faq__accordions .accordion__answer::before, .faq__accordions .section__explain .accordion__answer::before, .section__explain .faq__accordions .accordion__question::before, .faq__accordions .section__explain .accordion__question::before, .section__explain .req-entry__boxes .link, .req-entry__boxes .section__explain .link, .section__explain .data__box .skill-list .item::before, .data__box .skill-list .section__explain .item::before, .section__explain .data__box .number, .data__box .section__explain .number, .section__explain .btn--link {
  font-size: 30px;
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .section__explain .font-mont, .section__explain .ct-fv__title, .section__explain .faq__accordions .accordion__answer::before, .faq__accordions .section__explain .accordion__answer::before, .section__explain .faq__accordions .accordion__question::before, .faq__accordions .section__explain .accordion__question::before, .section__explain .req-entry__boxes .link, .req-entry__boxes .section__explain .link, .section__explain .data__box .skill-list .item::before, .data__box .skill-list .section__explain .item::before, .section__explain .data__box .number, .data__box .section__explain .number, .section__explain .btn--link {
    font-size: 18px;
  }
}
.section__explain02 {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .section__explain02 {
    margin-top: 20px;
    font-size: 14px;
  }
}
.section__explain02 .font-mont, .section__explain02 .ct-fv__title, .section__explain02 .faq__accordions .accordion__answer::before, .faq__accordions .section__explain02 .accordion__answer::before, .section__explain02 .faq__accordions .accordion__question::before, .faq__accordions .section__explain02 .accordion__question::before, .section__explain02 .req-entry__boxes .link, .req-entry__boxes .section__explain02 .link, .section__explain02 .data__box .skill-list .item::before, .data__box .skill-list .section__explain02 .item::before, .section__explain02 .data__box .number, .data__box .section__explain02 .number, .section__explain02 .btn--link {
  font-size: 28px;
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section__explain02 .font-mont, .section__explain02 .ct-fv__title, .section__explain02 .faq__accordions .accordion__answer::before, .faq__accordions .section__explain02 .accordion__answer::before, .section__explain02 .faq__accordions .accordion__question::before, .faq__accordions .section__explain02 .accordion__question::before, .section__explain02 .req-entry__boxes .link, .req-entry__boxes .section__explain02 .link, .section__explain02 .data__box .skill-list .item::before, .data__box .skill-list .section__explain02 .item::before, .section__explain02 .data__box .number, .data__box .section__explain02 .number, .section__explain02 .btn--link {
    font-size: 18px;
  }
}
.section__text {
  text-align: center;
  color: var(--color-primary);
  font-size: 36px;
  margin-top: 60px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section__text {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* =============================================
  header
============================================= */
.header {
  position: relative;
  width: 100%;
  z-index: 999;
}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateY(-120px);
  transition: transform ease 0.3s;
}
@media screen and (max-width: 1536px) {
  .header--fixed {
    transform: translateY(-84px);
  }
}
@media screen and (max-width: 768px) {
  .header--fixed {
    transform: translateY(-50px);
  }
}
.header--fixed.is-active {
  transform: translateY(0);
}
.header__inner {
  padding: 0 40px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1536px) {
  .header__inner {
    height: 84px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 50px;
    padding: 0 20px;
  }
}
.header__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1000px) {
  .header__entry {
    display: none;
  }
}

/* =============================================
  hamburger
============================================= */
.hamburger {
  width: 45px;
  height: 16px;
  display: block;
  position: relative;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 20px;
    height: 10px;
  }
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger span {
  position: absolute;
  left: 0;
  background-color: var(--color-primary);
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
}
.hamburger span:nth-child(3) {
  top: 100%;
}
@media screen and (max-width: 768px) {
  .hamburger--circle {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger--circle span {
    width: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .hamburger--circle span:nth-child(1) {
    top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger--circle span:nth-child(3) {
    top: calc(100% - 15px);
  }
}
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.3s, visibility ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.hamburger-menu__content {
  background-color: #fff;
  height: calc(100% - 100px);
  width: calc(100% - 100px);
  border-radius: 60px;
  padding: 50px;
  position: relative;
  overflow: scroll;
  max-height: 800px;
  max-width: 1820px;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__content {
    height: calc(100% - 70px);
    width: calc(100% - 70px);
    border-radius: 42px;
    padding: 35px;
    max-height: 560px;
    max-width: 1270px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__content {
    border-radius: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    max-height: none;
  }
}
.hamburger-menu__logo span {
  color: var(--color-primary);
}
.hamburger-menu__logo span::before {
  background-color: var(--color-primary);
}
.hamburger-menu__inner {
  max-width: 1200px;
  margin: 150px auto 0;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__inner {
    margin: 105px auto 0;
    max-width: 840px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__inner {
    margin: 60px auto 0;
  }
}
.hamburger-menu__close {
  width: 80px;
  height: 80px;
  background-color: #b4c2d7;
  border-radius: 20px;
  position: absolute;
  top: 50px;
  right: 30px;
  transition: opacity ease 0.3s;
}
.hamburger-menu__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__close {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    top: 35px;
    right: 21px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__close {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    border-radius: 10px;
  }
}
.hamburger-menu__close span {
  width: 40px;
  height: 3px;
  display: inline-block;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__close span {
    height: 2px;
    width: 28px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__close span {
    width: 20px;
  }
}
.hamburger-menu__close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(25deg);
}
.hamburger-menu__close span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-25deg);
}
.hamburger-menu__nav {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #2d2929;
  padding-bottom: 60px;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__nav {
    padding-bottom: 42px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__nav {
    padding-bottom: 0;
    gap: 0;
    grid-template-columns: 1fr;
    border-bottom: 1px solid #9d9b9a;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__list {
    border-top: 1px solid #9d9b9a;
  }
}
.hamburger-menu__label {
  color: var(--color-primary);
  font-size: 26px;
  margin-bottom: 15px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__label {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__label {
    padding: 20px 20px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 16px;
    pointer-events: auto;
  }
}
.hamburger-menu__toggle {
  width: 24px;
  height: 24px;
  border: 1px solid #3c3736;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: background-color ease 0.3s;
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__toggle {
    display: block;
  }
}
.hamburger-menu__toggle::before, .hamburger-menu__toggle::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #3c3736;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color ease 0.4s, transform ease 0.4s;
}
.hamburger-menu__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.hamburger-menu__toggle.is-active {
  background-color: #9d9b9a;
  border: 1px solid #9d9b9a;
}
.hamburger-menu__toggle.is-active::before {
  background-color: #fff;
}
.hamburger-menu__toggle.is-active::after {
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(0deg);
}
.hamburger-menu__submenu {
  display: block;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__submenu {
    max-height: 0px;
    transition: max-height ease-in-out 0.4s;
    overflow: hidden;
  }
  .hamburger-menu__submenu.is-active {
    max-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__submenu-inner {
    padding: 0px 20px 10px 20px;
  }
}
.hamburger-menu__item {
  margin-bottom: 10px;
}
.hamburger-menu__link {
  font-size: 22px;
  color: #2d2929;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__link {
    font-size: 16px;
    padding-left: 14px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__link {
    font-size: 14px;
    padding-left: 12px;
  }
}
.hamburger-menu__link:hover {
  opacity: 0.7;
}
.hamburger-menu__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #2d2929;
  border-bottom: 2px solid #2d2929;
  transform: rotate(-45deg);
  position: absolute;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__link::before {
    width: 5.6px;
    height: 5.6px;
    top: 8.35px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__link::before {
    width: 5px;
    height: 5px;
    border-right: 1px solid #2d2929;
    border-bottom: 1px solid #2d2929;
  }
}
.hamburger-menu__buttons {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1536px) {
  .hamburger-menu__buttons {
    margin-top: 42px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu__buttons {
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
  }
}
.hamburger-menu__buttons .btn:nth-of-type(3) {
  margin-left: auto;
}

/* =============================================
  first view
============================================= */
.fv {
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 1536px) {
  .fv {
    margin-top: 84px;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 75px;
  }
}
.fv__copy {
  position: absolute;
  left: 28.7%;
  bottom: 0;
  width: 1010px;
  aspect-ratio: 1010/320;
  z-index: 3;
}
@media screen and (max-width: 1536px) {
  .fv__copy {
    width: 707px;
    left: 22.96%;
  }
}
@media screen and (max-width: 1000px) {
  .fv__copy {
    width: 494px;
  }
}
@media screen and (max-width: 768px) {
  .fv__copy {
    bottom: 30px;
    width: 314px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fv__swiper {
  opacity: 0;
}
.fv__wrapper {
  transition-timing-function: linear !important;
}
.fv__title {
  position: absolute;
  top: 365px;
  left: 374px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
}
@media screen and (max-width: 1536px) {
  .fv__title {
    top: 255px;
    left: 261px;
    gap: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__title {
    left: 161px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    left: 20px;
    top: auto;
    bottom: 125px;
    gap: 8px;
  }
}
.fv__title span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 35px;
  padding: 10px 20px;
  letter-spacing: 10px;
  font-weight: 500;
}
@media screen and (max-width: 1536px) {
  .fv__title span {
    font-size: 24.5px;
    padding: 7px 14px;
    letter-spacing: 5px;
  }
}
@media screen and (max-width: 768px) {
  .fv__title span {
    font-size: 19px;
    padding: 5px;
  }
}
.fv__title span strong {
  transition: background ease 0.3s;
  background-position: 0% 50%;
  background-size: 200% 100%;
  background: var(--gradient-pink-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv__slide {
  width: 1100px;
  overflow: hidden;
  border-radius: 60px;
}
@media screen and (max-width: 1536px) {
  .fv__slide {
    width: 770px;
    border-radius: 42px;
  }
}
@media screen and (max-width: 768px) {
  .fv__slide {
    width: 315px;
    border-radius: 30px;
  }
}
.fv__paginate {
  width: 1115px !important;
  position: relative !important;
  margin: 60px auto 0 !important;
  display: flex;
  justify-content: flex-end;
  z-index: 4;
  opacity: 0;
}
@media screen and (max-width: 1536px) {
  .fv__paginate {
    width: 780px !important;
    margin: 42px auto 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .fv__paginate {
    width: auto;
    margin: 35px auto 0 !important;
    padding-left: 30px;
    justify-content: flex-start;
  }
}
.fv__paginate .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 7.5px !important;
  background-color: var(--color-primary);
}
@media screen and (max-width: 1536px) {
  .fv__paginate .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
  }
}
@media screen and (max-width: 768px) {
  .fv__paginate .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }
}
.fv__entry {
  background-image: var(--gradient-pink-orange);
  position: absolute;
  top: 70px;
  right: 40px;
  z-index: 3;
  width: 334px;
  height: 132px;
  line-height: 132px;
  font-size: 30px;
  padding-left: 70px;
  color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px rgba(40, 40, 40, 0.2);
  transition: background ease 0.3s;
  background-position: 0% 50%;
  background-size: 200% 100%;
  opacity: 0;
}
@media screen and (max-width: 1536px) {
  .fv__entry {
    top: 49px;
    right: 28px;
    width: 233px;
    height: 92px;
    line-height: 92px;
    font-size: 21px;
    padding-left: 49px;
    box-shadow: 7px 7px rgba(40, 40, 40, 0.2);
  }
}
@media screen and (max-width: 768px) {
  .fv__entry {
    top: -15px;
    right: 25px;
    width: 147px;
    height: 62px;
    line-height: 62px;
    font-size: 14px;
    border-radius: 15px;
    padding-left: 25px;
    box-shadow: 5px 5px rgba(40, 40, 40, 0.2);
  }
}
.fv__entry:hover {
  background-position: 100% 0%;
}
.fv__entry:hover::after {
  transform: translate(0.5208333333vw, -50%);
}
.fv__entry::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 55px;
  transform: translateY(-50%);
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
  display: block;
  width: 40px;
  height: 40px;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 1536px) {
  .fv__entry::after {
    right: 38.5px;
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .fv__entry::after {
    width: 18px;
    height: 18px;
    right: 25px;
  }
}
.fv__topics {
  position: absolute;
  bottom: 120px;
  right: 0;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  width: 266px;
  display: block;
  z-index: 4;
  opacity: 0;
}
@media screen and (max-width: 1536px) {
  .fv__topics {
    bottom: 84px;
    width: 186px;
    border-radius: 21px 0 0 21px;
  }
}
@media screen and (max-width: 768px) {
  .fv__topics {
    bottom: -30px;
    width: 168px;
    border-radius: 15px 0 0 15px;
  }
}
.fv__topics:hover .fv__topics-title {
  background-position: 100% 0%;
}
.fv__topics:hover .fv__topics-text::after {
  transform: translate(0.2604166667vw, -50%);
}
.fv__topics-title {
  background: var(--gradient-purple-blue);
  display: block;
  height: 52px;
  line-height: 52px;
  color: #fff;
  font-size: 21px;
  padding-left: 30px;
  font-weight: 400;
  transition: background ease 0.3s;
  background-position: 0% 50%;
  background-size: 200% 100%;
}
@media screen and (max-width: 1536px) {
  .fv__topics-title {
    height: 36.4px;
    line-height: 36.4px;
    font-size: 11px;
    padding-left: 17px;
  }
}
@media screen and (max-width: 768px) {
  .fv__topics-title {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    padding-left: 15px;
  }
}
.fv__topics-text {
  background-color: #f4f4f4;
  font-size: 16px;
  height: 75px;
  padding-left: 30px;
  padding-right: 80px;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 1536px) {
  .fv__topics-text {
    font-size: 11px;
    height: 52.5px;
    padding-left: 21px;
    padding-right: 56px;
  }
}
@media screen and (max-width: 768px) {
  .fv__topics-text {
    font-size: 11px;
    height: 50px;
    padding-left: 15px;
    padding-right: 45px;
  }
}
.fv__topics-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: no-repeat url(../img/icon-arrow-darkblue.svg) center center/contain;
  width: 30px;
  height: 30px;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 1536px) {
  .fv__topics-text::after {
    right: 14px;
    width: 21px;
    height: 21px;
  }
}
@media screen and (max-width: 768px) {
  .fv__topics-text::after {
    width: 18px;
    height: 18px;
  }
}
.fv__scroll {
  position: absolute;
  left: 12%;
  bottom: 0;
  transition: opacity ease 0.3s;
  z-index: 4;
  opacity: 0;
}
@media screen and (max-width: 1536px) {
  .fv__scroll {
    left: 8.5%;
  }
}
@media screen and (max-width: 768px) {
  .fv__scroll {
    left: 25px;
    bottom: -45px;
  }
}
.fv__scroll::before, .fv__scroll::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: 1px;
}
@media screen and (max-width: 1536px) {
  .fv__scroll::before, .fv__scroll::after {
    bottom: -77px;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .fv__scroll::before, .fv__scroll::after {
    bottom: -63px;
    height: 58px;
  }
}
.fv__scroll::before {
  background-color: #939393;
}
.fv__scroll::after {
  left: calc(50% - 0.5px);
  background-color: var(--color-black);
  animation: scrollDownAnimation 3s infinite;
}
.fv__scroll:hover {
  opacity: 0.7;
}
.fv__scroll span {
  font-size: 15px;
}
@media screen and (max-width: 1536px) {
  .fv__scroll span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fv__scroll span {
    font-size: 10px;
  }
}
.fv__object {
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.fv__object01 {
  top: 352px;
  right: -136px;
  z-index: 3;
  transform: translateX(50px);
}
@media screen and (max-width: 1536px) {
  .fv__object01 {
    width: 193px;
    top: 246px;
    right: -95px;
  }
}
@media screen and (max-width: 768px) {
  .fv__object01 {
    width: 86px;
    top: 150px;
    right: -45px;
  }
}
.fv__object02 {
  top: 413px;
  right: -240px;
  transform: translateX(50px);
}
@media screen and (max-width: 1536px) {
  .fv__object02 {
    width: 326px;
    top: 289px;
    right: -168px;
  }
}
@media screen and (max-width: 768px) {
  .fv__object02 {
    width: 146px;
    top: 269px;
    right: -83px;
  }
}
.fv__object03 {
  top: 90px;
  left: 274px;
  transform: translateX(-50px);
}
@media screen and (max-width: 1536px) {
  .fv__object03 {
    width: 61px;
    top: 63px;
    left: 191px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__object03 {
    left: 91px;
  }
}
@media screen and (max-width: 768px) {
  .fv__object03 {
    width: 26px;
    top: 30px;
    left: 15px;
  }
}
.fv__object04 {
  top: 190px;
  left: 213px;
  transform: translateX(-50px);
}
@media screen and (max-width: 1536px) {
  .fv__object04 {
    width: 270px;
    top: 133px;
    left: 149px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__object04 {
    left: 49px;
  }
}
@media screen and (max-width: 768px) {
  .fv__object04 {
    width: 120px;
    top: 149px;
    left: -24px;
  }
}
.fv__object05 {
  bottom: -169px;
  left: -356px;
  transform: translateX(-50px);
}
@media screen and (max-width: 1536px) {
  .fv__object05 {
    width: 534px;
    bottom: -118px;
    left: -249px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__object05 {
    left: -289px;
  }
}
@media screen and (max-width: 768px) {
  .fv__object05 {
    width: 238px;
    top: 204px;
    left: -173px;
  }
}

/* =============================================
  top
============================================= */
.top-msg {
  padding: 170px 0 250px;
}
@media screen and (max-width: 768px) {
  .top-msg {
    padding: 170px 0 100px;
  }
}
.top-msg__sentence {
  text-align: center;
  font-size: 20px;
  line-height: 3;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .top-msg__sentence {
    font-size: 13px;
    margin: 0 auto;
    letter-spacing: 0px;
    line-height: 2.9;
  }
}
@media screen and (max-width: 450px) {
  .top-msg__sentence {
    max-width: 295px;
  }
}
.top-msg__sentence strong {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-msg__sentence strong {
    font-size: 16px;
  }
}
.top-msg__sentence strong span {
  font-stretch: condensed;
}
.top-msg__box {
  margin: 140px auto 0;
  max-width: 634px;
  border: 3px solid #bebebe;
  padding: 55px 20px;
  text-align: center;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-msg__box {
    margin: 60px auto 0;
    padding: 25px 20px;
    border-radius: 30px;
  }
}
.top-msg__box::before {
  position: absolute;
  width: 50px;
  height: 50px;
  background: no-repeat url(../img/objects/object08.svg) center center/contain;
  top: -30px;
  left: 15px;
  content: none;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-msg__box::before {
    content: "";
  }
}
.top-msg__box-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.top-msg__box-title span {
  color: var(--color-primary);
  display: inline-block;
  letter-spacing: 3.5px;
}
@media screen and (max-width: 768px) {
  .top-msg__box-title span {
    letter-spacing: 2.5px;
  }
}
.top-msg__box-title span:nth-child(1) {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: -6px;
}
@media screen and (max-width: 768px) {
  .top-msg__box-title span:nth-child(1) {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
  }
}
.top-msg__box-title span:nth-child(2) {
  font-size: 23px;
  transform: rotate(90deg);
  font-weight: 300;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .top-msg__box-title span:nth-child(2) {
    font-size: 20px;
    margin-top: 0;
    line-height: 1.4;
  }
}
.top-msg__box-title span:nth-child(3) {
  font-size: 29px;
  border-bottom: 1px solid #ea6f2b;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-msg__box-title span:nth-child(3) {
    font-size: 20px;
    line-height: 1.3;
  }
}
.top-msg__box-title span strong {
  color: #ea6f2b;
  font-weight: 400;
}
.top-msg__box-text {
  margin-top: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .top-msg__box-text {
    margin-top: 20px;
    font-weight: 400;
  }
}
.top-msg__object01 {
  top: 282px;
  right: 224px;
}
@media screen and (max-width: 1536px) {
  .top-msg__object01 {
    right: 124px;
  }
}
@media screen and (max-width: 1200px) {
  .top-msg__object01 {
    right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__object01 {
    display: none;
  }
}
.top-msg__object02 {
  top: 580px;
  right: -200px;
}
@media screen and (max-width: 1536px) {
  .top-msg__object02 {
    right: -300px;
  }
}
@media screen and (max-width: 1200px) {
  .top-msg__object02 {
    right: -330px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__object02 {
    width: 238px;
    top: auto;
    bottom: -45px;
    right: -130px;
  }
}
.top-msg__object03 {
  bottom: 535px;
  left: 198px;
}
@media screen and (max-width: 1536px) {
  .top-msg__object03 {
    left: 98px;
  }
}
@media screen and (max-width: 1200px) {
  .top-msg__object03 {
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__object03 {
    display: none;
  }
}
.top-msg__object04 {
  bottom: -123px;
  left: -167px;
}
@media screen and (max-width: 1536px) {
  .top-msg__object04 {
    left: -267px;
  }
}
@media screen and (max-width: 1200px) {
  .top-msg__object04 {
    left: -167px;
    bottom: -153px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__object04 {
    display: none;
  }
}
.top-msg__object05 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-msg__object05 {
    display: block;
    top: 54px;
    right: -46px;
  }
}
.top-recs__swiper {
  margin-top: 100px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-recs__swiper {
    margin-top: 30px;
    padding-bottom: 10px;
  }
}
.top-recs__wrapper {
  transition-timing-function: linear !important;
}
.top-recs__slide {
  position: relative;
  width: 334px;
  box-shadow: 10px 10px rgba(40, 40, 40, 0.2);
  border-radius: 60px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .top-recs__slide {
    width: 137px;
    box-shadow: 5px 5px rgba(40, 40, 40, 0.2);
    border-radius: 25px;
  }
}
.top-recs__slide:hover {
  opacity: 0.7;
}
.top-recs__slide-image {
  position: relative;
}
.top-recs__slide-image01::after {
  content: "";
  position: absolute;
  bottom: 22.45%;
  right: -4.49%;
  width: 32.93%;
  height: 40.11%;
  background: no-repeat url(../img/top/content01-text.png) right bottom/contain;
  z-index: 2;
}
.top-recs__slide-image04::after {
  content: "";
  position: absolute;
  bottom: 22.45%;
  right: -4.49%;
  width: 43.41%;
  height: 40.11%;
  background: no-repeat url(../img/top/content04-text.png) right bottom/contain;
  z-index: 2;
}
.top-recs__slide-title {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 58px;
  line-height: 58px;
  background-color: #336ca4;
  display: block;
  width: 100%;
  font-size: 20px;
  color: #fff;
  padding-left: 40px;
  border-radius: 0 0 60px 60px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top-recs__slide-title {
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    border-radius: 0 0 20px 20px;
    padding-left: 15px;
  }
}
.top-recs__slide-title::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -20px;
  width: 60px;
  height: 60px;
  background: no-repeat url(../img/icon-arrow-blue.svg) center center/contain;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .top-recs__slide-title::after {
    right: 5px;
    bottom: -10px;
    width: 25px;
    height: 25px;
  }
}
.top-about__list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px 80px;
}
@media screen and (max-width: 1000px) {
  .top-about__list {
    gap: 45px 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 0px;
    border-top: 1px solid #ccc;
  }
}
@media screen and (max-width: 768px) {
  .top-about__item {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
}
.top-about__item-link {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-about__item-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 15px;
  }
}
.top-about__item-link:hover .top-about__item-image::before {
  opacity: 0.3;
}
.top-about__item-link:hover .top-about__item-image img {
  transform: scale(1.1);
}
.top-about__item-image {
  display: block;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-about__item-image {
    border-radius: 20px;
  }
}
.top-about__item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(179deg, rgb(0, 144, 224) 0%, rgb(106, 185, 112) 100%);
  z-index: 2;
  opacity: 0.8;
  transition: opacity ease 0.3s;
}
.top-about__item-image img {
  transition: transform ease 0.3s;
}
.top-about__item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 27px;
  text-align: center;
  padding-bottom: 10px;
  z-index: 3;
  word-break: keep-all;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .top-about__item-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__item-title {
    position: static;
    transform: none;
    font-size: 16px;
    color: var(--color-primary);
    text-align: left;
    padding-bottom: 0;
    line-height: 1.75;
  }
}
.top-about__item-title::after {
  content: "";
  width: 260px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-about__item-title::after {
    content: none;
  }
}
.top-about__object01 {
  top: -120px;
  right: -106px;
}
@media screen and (max-width: 768px) {
  .top-about__object01 {
    display: none;
  }
}
.top-about__object02 {
  top: 265px;
  left: -200px;
}
@media screen and (max-width: 1536px) {
  .top-about__object02 {
    top: 205px;
    left: -250px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__object02 {
    display: none;
  }
}
.top-about__object03 {
  bottom: -50px;
  right: 115px;
}
@media screen and (max-width: 768px) {
  .top-about__object03 {
    display: none;
  }
}
.top-about__object04 {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-about__object04 {
    display: block;
    top: -20px;
    left: -70px;
  }
}
.top-staff__talks {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1px, 3.90625vw, 50px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-staff__talks {
    margin-top: 140px;
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 50px;
  }
}
.top-staff__talks::after {
  content: none;
  position: absolute;
  width: 234px;
  height: 114px;
  background: no-repeat url(../img/objects/object05.svg) center center/contain;
  top: -157px;
  right: -151px;
}
@media screen and (max-width: 768px) {
  .top-staff__talks::after {
    content: "";
  }
}
.top-staff__talk-link {
  position: relative;
  display: block;
  z-index: 1;
}
.top-staff__talk-link:hover .top-staff__talk-image::before {
  opacity: 0.5;
}
.top-staff__talk-link:hover .top-staff__talk-image img {
  transform: scale(1.1);
}
.top-staff__talk-image {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, 4.6875vw, 60px);
}
.top-staff__talk-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.5);
  z-index: 2;
  transition: opacity ease 0.3s;
}
.top-staff__talk-image img {
  transition: transform ease 0.3s;
}
.top-staff__talk-title {
  position: absolute;
  top: clamp(1px, 2.734375vw, 35px);
  left: clamp(1px, 3.90625vw, 50px);
  color: #fff;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: clamp(1px, 1.953125vw, 25px);
  letter-spacing: clamp(1px, 0.390625vw, 5px);
  padding-top: clamp(1px, 4.296875vw, 55px);
}
@media screen and (max-width: 768px) {
  .top-staff__talk-title {
    position: static;
    font-size: 16px;
    padding-top: 0px;
    letter-spacing: 0px;
    color: var(--color-primary);
    writing-mode: initial;
    margin-top: 16px;
    display: block;
  }
}
.top-staff__talk-title::before {
  content: "";
  width: clamp(1px, 3.28125vw, 42px);
  height: clamp(1px, 3.28125vw, 42px);
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
  position: absolute;
  top: 0;
  left: clamp(-2px, -0.15625vw, 10px);
}
@media screen and (max-width: 768px) {
  .top-staff__talk-title::before {
    content: none;
  }
}
.top-staff__talk-text {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top-staff__talk-text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.top-staff__voice {
  margin-top: 150px;
  display: block;
  position: relative;
  transition: filter ease 0.3s;
}
@media screen and (max-width: 768px) {
  .top-staff__voice {
    margin-top: 75px;
  }
}
.top-staff__voice:hover {
  filter: brightness(1.1);
}
.top-staff__voice::before, .top-staff__voice::after {
  content: "";
  position: absolute;
  width: 19.5%;
  aspect-ratio: 234/113;
}
@media screen and (max-width: 768px) {
  .top-staff__voice::before, .top-staff__voice::after {
    width: 42%;
    aspect-ratio: 142/70;
  }
}
.top-staff__voice::before {
  top: 16%;
  left: -1%;
  background: no-repeat url(../img/top/voice-text01.png?v=1) center center/contain;
}
@media screen and (max-width: 768px) {
  .top-staff__voice::before {
    background: no-repeat url(../img/top/voice-text01-sp.png?v=1) center center/contain;
    top: 7.46%;
  }
}
.top-staff__voice::after {
  bottom: 17%;
  right: -2%;
  background: no-repeat url(../img/top/voice-text02.png?v=1) center center/contain;
}
@media screen and (max-width: 768px) {
  .top-staff__voice::after {
    background: no-repeat url(../img/top/voice-text02-sp.png?v=1) center center/contain;
    bottom: 3.5%;
  }
}
.top-staff__object01 {
  top: 275px;
  left: -125px;
}
@media screen and (max-width: 1536px) {
  .top-staff__object01 {
    top: 185px;
    left: -155px;
  }
}
@media screen and (max-width: 768px) {
  .top-staff__object01 {
    display: none;
  }
}
.top-staff__object02 {
  bottom: -60px;
  right: -315px;
}
@media screen and (max-width: 1536px) {
  .top-staff__object02 {
    right: -415px;
    bottom: -105px;
  }
}
@media screen and (max-width: 768px) {
  .top-staff__object02 {
    display: none;
  }
}
.top-staff__object03 {
  display: none;
  top: -15px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .top-staff__object03 {
    display: block;
  }
}
.top-staff__object04 {
  display: none;
  top: -30px;
  right: -60px;
}
@media screen and (max-width: 768px) {
  .top-staff__object04 {
    display: block;
  }
}
.top-env__list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 768px) {
  .top-env__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 0px;
    border-top: 1px solid #ccc;
  }
}
@media screen and (max-width: 768px) {
  .top-env__item {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
}
.top-env__item-link {
  position: relative;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-env__item-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 15px;
  }
}
.top-env__item-link:hover .top-env__item-image::before {
  opacity: 0.5;
}
.top-env__item-link:hover .top-env__item-image img {
  transform: scale(1.1);
}
.top-env__item-image {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1px, 4.6875vw, 60px);
}
.top-env__item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, 0.5);
  z-index: 2;
  transition: opacity ease 0.3s;
}
.top-env__item-image img {
  transition: transform ease 0.3s;
}
.top-env__item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 3;
  font-size: clamp(1px, 1.953125vw, 25px);
  padding-bottom: clamp(1px, 4.6875vw, 60px);
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top-env__item-title {
    position: static;
    transform: none;
    color: var(--color-primary);
    padding-bottom: 0;
    text-align: left;
    font-size: 16px;
  }
}
.top-env__item-title::before {
  content: "";
  width: clamp(1px, 3.28125vw, 42px);
  height: clamp(1px, 3.28125vw, 42px);
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-env__item-title::before {
    content: none;
  }
}
.top-env__object01 {
  top: 245px;
  left: 165px;
}
@media screen and (max-width: 1536px) {
  .top-env__object01 {
    left: 65px;
  }
}
@media screen and (max-width: 768px) {
  .top-env__object01 {
    display: none;
  }
}
.top-env__object02 {
  bottom: -155px;
  left: -125px;
}
@media screen and (max-width: 768px) {
  .top-env__object02 {
    display: none;
  }
}
.top-env__object03 {
  display: none;
  top: -20px;
  left: -25px;
}
@media screen and (max-width: 768px) {
  .top-env__object03 {
    display: block;
  }
}
.top-env__object04 {
  display: none;
  top: 55px;
  right: 25px;
}
@media screen and (max-width: 768px) {
  .top-env__object04 {
    display: block;
  }
}
.top-env__object05 {
  display: none;
  bottom: -20px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .top-env__object05 {
    display: block;
  }
}
.top-env__object06 {
  display: none;
  bottom: 15px;
  right: -25px;
}
@media screen and (max-width: 768px) {
  .top-env__object06 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top-movie {
    display: none;
  }
}
.top-movie__button {
  position: relative;
  z-index: 1;
  transition: background ease 0.3s;
  overflow: hidden;
  width: 100%;
  display: block;
  text-align: center;
}
.top-movie__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(179deg, rgba(0, 144, 224, 0.6) 0%, rgba(6, 52, 122, 0.6) 100%);
  z-index: 2;
  transition: opacity ease 0.3s;
}
.top-movie__button:hover::after {
  opacity: 0.5;
}
.top-movie__button img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-movie__button span {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  font-size: 30px;
  z-index: 3;
  letter-spacing: 5px;
}
.top-movie__button span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -100px;
  width: 56px;
  height: 56px;
  background: no-repeat url(../img/icon-movie.svg);
}
.top-other__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .top-other__list {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.top-other__item {
  height: clamp(1px, 17.03125vw, 218px);
  text-align: center;
  color: #fff;
  border-radius: clamp(1px, 4.6875vw, 60px);
  box-shadow: clamp(1px, 1.171875vw, 15px) clamp(1px, 1.171875vw, 15px) rgba(40, 40, 40, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .top-other__item {
    border-radius: 5.3333333333vw;
    height: 29.3333333333vw;
    box-shadow: 2.6666666667vw 2.6666666667vw rgba(40, 40, 40, 0.2);
  }
}
.top-other__item:hover {
  opacity: 0.7;
}
.top-other__item::before {
  content: "";
  position: absolute;
  bottom: clamp(1px, 2.34375vw, 30px);
  right: clamp(1px, 2.734375vw, 35px);
  width: clamp(1px, 3.4375vw, 44px);
  height: clamp(1px, 3.4375vw, 44px);
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-other__item::before {
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    right: 5.3333333333vw;
    bottom: 2.6666666667vw;
  }
}
.top-other__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 364/258;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-other__item::after {
    height: 29.3333333333vw;
  }
}
.top-other__item:nth-child(1) {
  background-color: #6c7bbb;
}
.top-other__item:nth-child(1)::after {
  background: no-repeat url(../img/top/other01.png) center center/cover;
}
@media screen and (max-width: 768px) {
  .top-other__item:nth-child(1)::after {
    background: no-repeat url(../img/top/other01-sp.png) center center/cover;
  }
}
.top-other__item:nth-child(2) {
  background-color: #6ab970;
}
.top-other__item:nth-child(2)::after {
  background: no-repeat url(../img/top/other02.png) center center/cover;
}
@media screen and (max-width: 768px) {
  .top-other__item:nth-child(2)::after {
    background: no-repeat url(../img/top/other02-sp.png) center center/cover;
  }
}
.top-other__item:nth-child(3) {
  background-color: #0090e0;
}
.top-other__item:nth-child(3)::after {
  background: no-repeat url(../img/top/other03.png) center center/cover;
}
@media screen and (max-width: 768px) {
  .top-other__item:nth-child(3)::after {
    background: no-repeat url(../img/top/other03-sp.png) center center/cover;
  }
}
.top-other__item-title {
  font-size: clamp(1px, 1.796875vw, 23px);
}
@media screen and (max-width: 768px) {
  .top-other__item-title {
    font-size: 4.8vw;
  }
}

/* =============================================
  page
============================================= */
.page-fv {
  width: calc(100% - 160px);
  height: 560px;
  background: linear-gradient(135deg, rgb(0, 163, 230) 0%, rgb(255, 228, 80) 100%);
  border-radius: 0 0 60px 0;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .page-fv {
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 768px) {
  .page-fv {
    width: calc(100% - 40px);
    height: 390px;
    border-radius: 0 0 30px 0;
    margin-bottom: 5px;
  }
}
.page-fv--sm {
  height: 208px;
}
@media screen and (max-width: 768px) {
  .page-fv--sm {
    height: 133px;
  }
}
.page-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background: #d4d4d4;
  z-index: -1;
  border-radius: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .page-fv::after {
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    border-radius: 0 0 30px 0;
  }
}
.page-fv__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .page-fv__inner {
    padding: 0 20px 0 30px;
  }
}
.page-fv__breadcrumb {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .page-fv__breadcrumb {
    left: 30px;
  }
}
.page-fv__title {
  color: #fff;
  font-size: 62px;
  letter-spacing: 5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page-fv__title {
    font-size: 28px;
  }
}
.page-fv__explain {
  color: #fff;
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .page-fv__explain {
    font-size: 14px;
  }
}
.page-fv__object {
  position: absolute;
  bottom: -275px;
  right: -454px;
}
@media screen and (max-width: 768px) {
  .page-fv__object {
    width: 172px;
    bottom: -60px;
    right: -135px;
  }
}

/* =============================================
  data
============================================= */
.data {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .data {
    margin-top: 80px;
  }
}
.data:last-child {
  margin-top: 150px;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .data:last-child {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.data__boxes {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__boxes {
    margin-top: 60px;
  }
}
.data__grid {
  display: grid;
  gap: clamp(1px, 3.125vw, 40px);
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .data__grid {
    gap: 8vw;
    margin-bottom: 8vw;
  }
}
.data__grid:last-child {
  margin-bottom: 0;
}
.data__grid--45-55 {
  grid-template-columns: 44.1% 1fr;
}
@media screen and (max-width: 768px) {
  .data__grid--45-55 {
    grid-template-columns: 1fr;
  }
}
.data__grid--45-55 > div:nth-of-type(1) {
  grid-row: 1/3;
}
.data__grid--55-45 {
  grid-template-columns: 1fr 44.1%;
}
@media screen and (max-width: 768px) {
  .data__grid--55-45 {
    grid-template-columns: 1fr;
  }
}
.data__grid--55-45 > div:nth-of-type(3) {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .data__grid--55-45 > div:nth-of-type(3) {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
.data__grid--33-33-33 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .data__grid--33-33-33 {
    grid-template-columns: 1fr;
  }
}
.data__grid--30-70 {
  grid-template-columns: 31.6% 1fr;
}
@media screen and (max-width: 768px) {
  .data__grid--30-70 {
    grid-template-columns: 1fr;
  }
}
.data__grid--30-70 > div:nth-of-type(1) {
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .data__grid--30-70 > div:nth-of-type(1) {
    grid-row: auto;
  }
}
.data__grid--50-25-25 {
  grid-template-columns: 1fr 25% 25%;
}
@media screen and (max-width: 768px) {
  .data__grid--50-25-25 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .data__grid--50-25-25 > div:nth-child(1) {
    grid-column: 1/3;
  }
}
.data__grid--100 {
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #ebf6ec;
  border-radius: clamp(1px, 4.6875vw, 60px);
  padding: 0 clamp(1px, 6.25vw, 80px);
}
@media screen and (max-width: 768px) {
  .data__grid--100 {
    grid-template-columns: 1fr;
    border-radius: 8vw;
    padding: 0 5.3333333333vw;
  }
}
.data__grid--52-48 {
  grid-template-columns: 52% 1fr;
}
@media screen and (max-width: 768px) {
  .data__grid--52-48 {
    grid-template-columns: 1fr;
  }
}
.data__grid--50-50 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .data__grid--50-50 {
    grid-template-columns: 1fr;
  }
}
.data__grid--50 {
  grid-template-columns: 1fr 1fr;
  background-color: #fdeff2;
  border-radius: clamp(1px, 4.6875vw, 60px);
  padding: 0;
}
@media screen and (max-width: 768px) {
  .data__grid--50 {
    grid-template-columns: 1fr;
  }
}
.data__grid--random {
  display: flex;
  flex-wrap: wrap;
}
.data__box {
  background-color: #e5f6fd;
  border-radius: clamp(1px, 4.6875vw, 60px);
  padding: clamp(1px, 3.90625vw, 50px) clamp(1px, 3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box {
    border-radius: 6.6666666667vw;
    padding: 8vw 4vw;
  }
}
.data__box--staff {
  background-color: #ebf6ec;
}
.data__box--voice {
  background-color: #fdeff2;
}
.data__box-button {
  display: block;
  text-align: center;
  padding: clamp(1px, 1.5625vw, 20px) 0;
  transition: opacity ease 0.3s;
}
.data__box-button:hover {
  opacity: 0.7;
}
.data__box-link {
  position: absolute;
  right: clamp(1px, 3.125vw, 40px);
  bottom: clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 768px) {
  .data__box-link {
    right: 5.3333333333vw;
    bottom: 8vw;
  }
}
.data__box01 .image {
  margin: clamp(1px, 4.6875vw, 60px) auto 0;
  width: clamp(1px, 18.203125vw, 233px);
  display: block;
}
@media screen and (max-width: 768px) {
  .data__box01 .image {
    width: 39.2vw;
    margin: 10.6666666667vw auto 0;
  }
}
.data__box04 .image {
  width: clamp(1px, 11.5625vw, 148px);
}
@media screen and (max-width: 768px) {
  .data__box04 .image {
    width: 27.4666666667vw;
  }
}
.data__box05 .image {
  width: clamp(1px, 24.53125vw, 314px);
}
@media screen and (max-width: 768px) {
  .data__box05 .image {
    width: 54.1333333333vw;
  }
}
.data__box06 .number {
  margin-top: clamp(1px, 5.46875vw, 70px);
}
@media screen and (max-width: 768px) {
  .data__box06 .number {
    margin-top: 8vw;
  }
}
.data__box06 .image {
  margin: clamp(-110px, -8.59375vw, 1px) auto 0;
  display: block;
  width: clamp(1px, 30.15625vw, 386px);
}
@media screen and (max-width: 768px) {
  .data__box06 .image {
    width: 59.4666666667vw;
    margin: -17.3333333333vw auto 0;
  }
}
.data__box07, .data__box08, .data__box09 {
  width: calc((100% - clamp(1px, 3.125vw, 40px) * 2) / 3);
}
@media screen and (max-width: 768px) {
  .data__box07, .data__box08, .data__box09 {
    width: calc(50% - 4vw);
  }
}
.data__box10 {
  width: clamp(1px, 45.3125vw, 580px);
}
@media screen and (max-width: 768px) {
  .data__box10 {
    width: calc(50% - 4vw);
  }
}
.data__box11 {
  width: calc((100% - clamp(1px, 45.3125vw, 580px) - clamp(1px, 3.125vw, 40px) * 2) / 2);
}
@media screen and (max-width: 768px) {
  .data__box11 {
    width: calc(50% - 4vw);
  }
}
.data__box12 {
  width: calc((100% - clamp(1px, 45.3125vw, 580px) - clamp(1px, 3.125vw, 40px) * 2) / 2);
}
@media screen and (max-width: 768px) {
  .data__box12 {
    width: calc(50% - 4vw);
  }
}
.data__box12 .image {
  width: clamp(1px, 12.890625vw, 165px);
}
@media screen and (max-width: 768px) {
  .data__box12 .image {
    width: 22.6666666667vw;
  }
}
.data__box16 {
  padding: clamp(1px, 3.90625vw, 50px) 0;
}
@media screen and (max-width: 768px) {
  .data__box16 {
    padding: 8vw 0;
  }
}
.data__box17 {
  padding: clamp(1px, 3.90625vw, 50px) 0 clamp(1px, 3.90625vw, 50px) clamp(1px, 5.46875vw, 70px);
}
@media screen and (max-width: 768px) {
  .data__box17 {
    padding: 0;
  }
}
.data__box18 {
  padding: clamp(1px, 3.90625vw, 50px) 0;
}
@media screen and (max-width: 768px) {
  .data__box18 {
    padding: 8vw 0;
  }
}
.data__box19 {
  grid-column: 1/4;
  border-radius: none;
  position: relative;
  margin-top: clamp(1px, -3.125vw, -40px);
}
@media screen and (max-width: 768px) {
  .data__box19 {
    grid-column: auto;
    margin-top: 0;
    padding: 8vw 0;
  }
}
.data__box19::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  background-color: #fff;
  width: 100vw;
  height: 2px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .data__box19::before {
    left: -5.3333333333vw;
  }
}
.data__box20 > .number {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(0px, 2.34375vw, 30px);
}
.data__box20 > .number::after {
  content: "";
  position: absolute;
  top: clamp(-5px, -0.390625vw, 1px);
  right: 0;
  width: clamp(1px, 1.40625vw, 18px);
  height: clamp(1px, 1.5625vw, 20px);
  background: no-repeat url(../img/icon-sparkle.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .data__box20 > .number::after {
    width: 4.2666666667vw;
    height: 4.8vw;
    top: -1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box20 > .number .text80 {
    font-size: 17.6vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box20 > .number .text36 {
    font-size: 5.8666666667vw;
  }
}
.data__box22 {
  grid-column: 1/3;
}
.data__box24 {
  grid-row: 1/3;
}
.data__box26 .ratio-flex {
  align-items: flex-start !important;
  gap: clamp(1px, 2.34375vw, 30px) !important;
  margin-top: clamp(1px, 5.46875vw, 70px) !important;
}
@media screen and (max-width: 768px) {
  .data__box26 .ratio-flex {
    gap: 5.3333333333vw !important;
  }
}
.data__box26 .ratio-flex .ratio {
  gap: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 768px) {
  .data__box26 .ratio-flex .ratio {
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box26 .ratio-flex .ratio .number {
    font-size: 11.4666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box26 .ratio-flex .ratio .colon {
    margin-top: 3.2vw;
  }
}
.data__box26 .ratio-flex > img {
  margin-top: clamp(1px, 0.3125vw, 4px);
  width: clamp(1px, 9.765625vw, 125px);
}
@media screen and (max-width: 768px) {
  .data__box26 .ratio-flex > img {
    margin-top: 1.171875vw;
    width: 22.4vw;
  }
}
.data__box28 {
  padding: clamp(1px, 3.90625vw, 50px) clamp(1px, 3.125vw, 40px) clamp(1px, 3.90625vw, 50px) 0;
}
@media screen and (max-width: 768px) {
  .data__box28 {
    padding: 0 5.3333333333vw 8vw;
  }
}
.data__box31 {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .data__box31 {
    grid-column: auto;
    grid-row: auto;
  }
}
.data__box .title {
  font-size: clamp(1px, 1.5625vw, 20px);
  padding-left: clamp(1px, 2.34375vw, 30px);
  position: relative;
  margin-bottom: clamp(1px, 1.5625vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .data__box .title {
    font-size: 4vw;
    padding-left: 5.3333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}
.data__box .title::before {
  content: "";
  position: absolute;
  width: clamp(1px, 1.40625vw, 18px);
  height: clamp(1px, 1.40625vw, 18px);
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  top: clamp(1px, 0.4296875vw, 5.5px);
  left: 0;
}
@media screen and (max-width: 768px) {
  .data__box .title::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: 1.2vw;
  }
}
.data__box .title span {
  font-size: clamp(1px, 0.9375vw, 12px);
  margin-left: clamp(1px, 1.171875vw, 15px);
}
@media screen and (max-width: 768px) {
  .data__box .title span {
    font-size: 2.6666666667vw;
    margin-left: 2.6666666667vw;
  }
}
.data__box .title02 {
  font-size: clamp(1px, 1.5625vw, 20px);
  padding-left: clamp(1px, 2.34375vw, 30px);
  position: relative;
  margin-bottom: clamp(1px, 1.5625vw, 20px);
  display: flex;
  align-items: flex-start;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .data__box .title02 {
    font-size: 4vw;
    padding-left: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.data__box .title02::before {
  content: "";
  position: absolute;
  width: clamp(1px, 1.40625vw, 18px);
  height: clamp(1px, 1.40625vw, 18px);
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  top: clamp(1px, 0.390625vw, 5px);
  left: 0;
}
@media screen and (max-width: 768px) {
  .data__box .title02::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: 0.8vw;
  }
}
.data__box .title02 span {
  font-size: clamp(1px, 2.65625vw, 34px);
  margin-right: clamp(1px, 1.171875vw, 15px);
  color: var(--color-primary);
  font-style: italic;
  font-weight: 600;
  margin-top: clamp(-6px, -0.46875vw, 1px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .data__box .title02 span {
    font-size: 6.4vw;
    margin-right: 4vw;
    margin-top: -1.3333333333vw;
  }
}
.data__box .image.center {
  margin: clamp(1px, 2.34375vw, 30px) auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .data__box .image.center {
    margin: 5.3333333333vw auto 0;
  }
}
.data__box .number {
  color: var(--color-primary);
  font-size: clamp(1px, 5.46875vw, 70px);
  display: block;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .data__box .number {
    font-size: 10.6666666667vw;
  }
}
.data__box .number .text20,
.data__box .number .text25 {
  align-self: flex-end;
  padding-bottom: clamp(1px, 0.390625vw, 5px);
  font-weight: 600;
  margin-left: clamp(1px, 0.390625vw, 5px);
}
@media screen and (max-width: 768px) {
  .data__box .number .text20,
  .data__box .number .text25 {
    font-size: 5.3333333333vw;
    margin-left: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.data__box .text105 {
  font-size: clamp(1px, 8.203125vw, 105px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .data__box .text105 {
    font-size: 17.6vw;
  }
}
.data__box .text36 {
  font-size: clamp(1px, 2.8125vw, 36px);
  margin-left: clamp(1px, 0.78125vw, 10px);
}
@media screen and (max-width: 768px) {
  .data__box .text36 {
    font-size: 4.8vw;
    margin-left: 1.3333333333vw;
  }
}
.data__box .text20 {
  font-size: clamp(1px, 1.5625vw, 20px);
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .data__box .text20 {
    font-size: 3.4666666667vw;
  }
}
.data__box .text25 {
  font-size: clamp(1px, 1.953125vw, 25px);
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .data__box .text25 {
    font-size: 3.4666666667vw;
  }
}
.data__box .text12 {
  color: var(--color-black);
  font-size: clamp(1px, 0.9375vw, 12px);
}
@media screen and (max-width: 768px) {
  .data__box .text12 {
    font-size: 2.6666666667vw;
  }
}
.data__box .text18 {
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
}
@media screen and (max-width: 768px) {
  .data__box .text18 {
    font-size: 3.2vw;
  }
}
.data__box .text50 {
  color: var(--color-primary);
  font-size: clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 768px) {
  .data__box .text50 {
    font-size: 10.6666666667vw;
  }
}
.data__box .text55 {
  color: var(--color-primary);
  font-size: clamp(1px, 4.296875vw, 55px);
}
@media screen and (max-width: 768px) {
  .data__box .text55 {
    font-size: 10.6666666667vw;
  }
}
.data__box .text70 {
  color: var(--color-primary);
  font-size: clamp(1px, 5.46875vw, 70px);
}
@media screen and (max-width: 768px) {
  .data__box .text70 {
    font-size: 13.3333333333vw;
  }
}
.data__box .text95 {
  color: var(--color-primary);
  font-size: clamp(1px, 7.421875vw, 95px);
}
@media screen and (max-width: 768px) {
  .data__box .text95 {
    font-size: 17.6vw;
  }
}
.data__box .sentence {
  margin: clamp(1px, 1.5625vw, 20px) auto 0;
  font-size: clamp(1px, 1.25vw, 16px);
  max-width: clamp(1px, 22.65625vw, 290px);
}
@media screen and (max-width: 768px) {
  .data__box .sentence {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
    max-width: none;
  }
}
.data__box .description-list > div {
  display: grid;
  grid-template-columns: clamp(1px, 7.8125vw, 100px) 1fr;
  gap: clamp(1px, 1.5625vw, 20px);
  align-items: center;
  margin-bottom: clamp(1px, 1.953125vw, 25px);
  padding-left: clamp(1px, 7.8125vw, 100px);
}
@media screen and (max-width: 768px) {
  .data__box .description-list > div {
    grid-template-columns: 26.6666666667vw 1fr;
    gap: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.data__box .description-list > div:last-child {
  margin-bottom: 0;
}
.data__box .description-list > div dt {
  font-weight: 500;
}
.data__box .description-list > div dt span {
  display: block;
}
.data__box .ratio {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1px, 2.34375vw, 30px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .data__box .ratio {
    gap: 2.6666666667vw;
  }
}
.data__box .ratio .colon {
  margin-top: clamp(1px, 1.5625vw, 20px);
  width: clamp(1px, 0.671875vw, 8.6px);
}
@media screen and (max-width: 768px) {
  .data__box .ratio .colon {
    width: 1.6vw;
    margin-top: 4.8vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .ratio .number {
    font-size: 13.3333333333vw;
  }
}
.data__box .ratio .text20 {
  display: block;
  text-align: center;
  margin-top: clamp(1px, 0.78125vw, 10px);
  margin-left: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .data__box .ratio .text20 {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.data__box .ratio-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1px, 4.6875vw, 60px);
  margin-top: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .data__box .ratio-flex {
    gap: 8vw;
    margin-top: 5.3333333333vw;
  }
}
.data__box .ratio-flex .ratio {
  margin: 0;
}
.data__box .group-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 5.46875vw, 70px);
}
@media screen and (max-width: 768px) {
  .data__box .group-flex {
    gap: 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .group-flex .number {
    font-size: 13.3333333333vw;
  }
}
.data__box .office-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1px, 5.46875vw, 70px);
  margin-top: clamp(-45px, -3.515625vw, 1px);
}
@media screen and (max-width: 1200px) {
  .data__box .office-flex {
    gap: clamp(1px, 3.125vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .data__box .office-flex {
    gap: 5.3333333333vw;
    margin-top: -2.6666666667vw;
    justify-content: flex-start;
  }
}
.data__box .office-flex .number {
  padding-bottom: clamp(1px, 2.34375vw, 30px);
}
@media screen and (max-width: 768px) {
  .data__box .office-flex .number {
    padding-bottom: 12vw;
  }
}
.data__box .sex-flex {
  display: flex;
  align-items: flex-end;
  gap: clamp(1px, 3.90625vw, 50px);
  padding-left: clamp(1px, 10.546875vw, 135px);
  margin-top: clamp(-115px, -8.984375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .sex-flex {
    margin-top: -29.3333333333vw;
    gap: 10.6666666667vw;
    padding-left: 10.6666666667vw;
  }
}
.data__box .sex-flex .image {
  width: clamp(1px, 26.796875vw, 343px);
}
@media screen and (max-width: 768px) {
  .data__box .sex-flex .image {
    width: 41.3333333333vw;
  }
}
.data__box .childcare-flex {
  display: flex;
  align-items: center;
  gap: clamp(1px, 2.734375vw, 35px);
  margin-top: clamp(1px, 2.34375vw, 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .childcare-flex {
    padding-left: 0;
    gap: 0;
    margin-top: 0;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .data__box .childcare-flex-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    margin-left: -4vw;
  }
}
.data__box .childcare-flex:nth-of-type(1)::after {
  content: "";
  width: clamp(1px, 10.9375vw, 140px);
  height: clamp(1px, 10.9375vw, 140px);
  background: no-repeat url(../img/data/childcare-acce.png) center center/contain;
  position: absolute;
  top: clamp(-125px, -9.765625vw, 1px);
  right: clamp(-55px, -4.296875vw, 1px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .data__box .childcare-flex:nth-of-type(1)::after {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    top: -26.6666666667vw;
    right: -48vw;
  }
}
.data__box .childcare-flex .text03 {
  word-break: keep-all;
}
.data__box .childcare-flex .text20 {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .data__box .return {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.data__box .return .number {
  margin-top: clamp(1px, 2.734375vw, 35px);
}
@media screen and (max-width: 768px) {
  .data__box .return .number {
    margin-top: 0;
  }
}
.data__box .return .image {
  margin-top: clamp(1px, 2.34375vw, 30px);
  margin-left: clamp(1px, 1.5625vw, 20px);
  width: clamp(1px, 11.875vw, 152px);
}
@media screen and (max-width: 768px) {
  .data__box .return .image {
    margin-top: 0;
    margin-left: 6.1333333333vw;
    width: 28.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .female-manager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    margin-left: -4vw;
  }
}
.data__box .female-manager .number {
  margin-top: clamp(-10px, -0.78125vw, -1px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .data__box .female-manager .number {
    margin-top: 0;
  }
}
.data__box .female-manager .image {
  margin-top: clamp(1px, 2.734375vw, 35px);
  margin-left: clamp(1px, 3.90625vw, 50px);
  width: clamp(1px, 15.546875vw, 199px);
}
@media screen and (max-width: 768px) {
  .data__box .female-manager .image {
    margin-top: 0;
    margin-left: 0;
    width: 37.0666666667vw;
  }
}
.data__box .ratio-bar {
  display: flex;
  margin-top: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .data__box .ratio-bar {
    margin-top: 8vw;
  }
}
.data__box .ratio-bar .engineer-bar {
  background: linear-gradient(134deg, rgb(187, 211, 106) 0%, rgb(123, 195, 131) 100%);
  height: clamp(1px, 3.90625vw, 50px);
  border-radius: clamp(1px, 1.5625vw, 20px) 0 0 clamp(1px, 1.5625vw, 20px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .ratio-bar .engineer-bar {
    height: 8.8vw;
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
  }
}
.data__box .ratio-bar .engineer-bar::after {
  content: "";
  position: absolute;
  bottom: clamp(-9.5px, -0.7421875vw, 1px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1px, 1.5625vw, 20px);
  height: clamp(1px, 0.78125vw, 10px);
  background: linear-gradient(134deg, rgb(163, 199, 44) 0%, rgb(123, 195, 131) 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  .data__box .ratio-bar .engineer-bar::after {
    width: 4vw;
    height: 1.8666666667vw;
    bottom: -1.8666666667vw;
  }
}
.data__box .ratio-bar .other-bar {
  background: linear-gradient(134deg, rgb(194, 178, 212) 0%, rgb(133, 100, 169) 100%);
  height: clamp(1px, 3.90625vw, 50px);
  border-radius: 0 clamp(1px, 1.5625vw, 20px) clamp(1px, 1.5625vw, 20px) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .ratio-bar .other-bar {
    height: 8.8vw;
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
  }
}
.data__box .ratio-bar .other-bar::after {
  content: "";
  position: absolute;
  bottom: clamp(-9.5px, -0.7421875vw, 1px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1px, 1.5625vw, 20px);
  height: clamp(1px, 0.78125vw, 10px);
  background: linear-gradient(134deg, rgb(162, 130, 200) 0%, rgb(133, 100, 169) 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  .data__box .ratio-bar .other-bar::after {
    width: 4vw;
    height: 1.8666666667vw;
    bottom: -1.6vw;
  }
}
.data__box .ratio-text {
  display: flex;
  align-items: center;
  gap: clamp(1px, 2.734375vw, 35px);
  margin-top: clamp(1px, 1.953125vw, 25px);
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .data__box .ratio-text {
    gap: 17.3333333333vw;
    margin-top: 5.3333333333vw;
    align-items: flex-start;
  }
}
.data__box .ratio-text > div {
  display: flex;
  align-items: center;
  gap: clamp(1px, 1.171875vw, 15px);
}
@media screen and (max-width: 768px) {
  .data__box .ratio-text > div {
    flex-direction: column;
    gap: 0;
  }
}
.data__box .ratio-text > div:nth-child(1) {
  position: relative;
}
.data__box .ratio-text > div:nth-child(1)::after {
  content: "";
  position: absolute;
  top: clamp(1px, 0.390625vw, 5px);
  right: clamp(-15px, -1.171875vw, 1px);
  width: clamp(1px, 1.640625vw, 21px);
  height: clamp(1px, 1.875vw, 24px);
  background: no-repeat url(../img/icon-sparkle.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .data__box .ratio-text > div:nth-child(1)::after {
    width: 4vw;
    height: 4vw;
    right: -1.3333333333vw;
    top: 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .ratio-text > div:nth-child(1) .number {
    font-size: 13.3333333333vw;
    margin-top: 2.8011204482vw;
  }
}
.data__box .ratio-text > div .text18 {
  font-weight: 500;
}
.data__box .pref {
  position: relative;
}
.data__box .pref img {
  margin: clamp(-45px, -3.515625vw, 1px) auto 0;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .data__box .pref img {
    margin: 5.3333333333vw 0 0;
  }
}
.data__box .pref-text {
  position: absolute;
  bottom: 0px;
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
}
@media screen and (max-width: 768px) {
  .data__box .pref-text {
    font-size: 10.6666666667vw;
  }
}
.data__box .pref-text01 {
  right: clamp(1px, 12.5vw, 160px);
}
@media screen and (max-width: 768px) {
  .data__box .pref-text01 {
    right: 32vw;
  }
}
.data__box .pref-text02 {
  right: 0;
}
@media screen and (max-width: 768px) {
  .data__box .pref-text .text70 {
    font-size: 10.6666666667vw;
  }
}
.data__box .pref-name {
  display: block;
  margin-bottom: clamp(1px, 0.390625vw, 5px);
  font-size: clamp(1px, 1.40625vw, 18px);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .data__box .pref-name {
    font-size: 3.7333333333vw;
  }
}
.data__box .area {
  position: relative;
}
.data__box .area img {
  margin: clamp(1px, 9.375vw, 120px) 0 clamp(1px, 5.46875vw, 70px);
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .data__box .area img {
    margin: 24vw 0 13.3333333333vw;
  }
}
.data__box .area-text {
  position: absolute;
  right: 0px;
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
}
@media screen and (max-width: 768px) {
  .data__box .area-text {
    font-size: 10.6666666667vw;
  }
}
.data__box .area-text span {
  font-weight: 600;
  line-height: 1;
}
.data__box .area-text01 {
  top: clamp(-80px, -6.25vw, 1px);
  left: 0;
}
@media screen and (max-width: 768px) {
  .data__box .area-text01 {
    top: -16vw;
  }
}
.data__box .area-text02 {
  top: clamp(-80px, -6.25vw, 1px);
  right: 0;
}
@media screen and (max-width: 768px) {
  .data__box .area-text02 {
    top: -16vw;
  }
}
.data__box .area-text03 {
  bottom: clamp(-80px, -6.25vw, 1px);
  left: 0px;
}
@media screen and (max-width: 768px) {
  .data__box .area-text03 {
    bottom: -14.6666666667vw;
  }
}
.data__box .area-text04 {
  bottom: clamp(-80px, -6.25vw, 1px);
  right: clamp(1px, 2.34375vw, 30px);
}
@media screen and (max-width: 768px) {
  .data__box .area-text04 {
    bottom: -14.6666666667vw;
    right: 8vw;
  }
}
.data__box .area-name {
  display: block;
  margin-bottom: clamp(1px, 0.390625vw, 5px);
}
@media screen and (max-width: 768px) {
  .data__box .area-name {
    font-size: 3.7333333333vw;
  }
}
.data__box .age-chart {
  margin-top: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .data__box .age-chart {
    width: 69.0666666667vw;
    margin: 8vw auto 0;
  }
}
.data__box .business-chart {
  width: clamp(1px, 19.53125vw, 250px);
  margin: clamp(1px, 3.125vw, 40px) auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .business-chart {
    width: 48vw;
    margin: 34.6666666667vw auto 22.6666666667vw;
  }
}
.data__box .business-text {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .data__box .business-text {
    display: block;
  }
}
.data__box .business-text::after {
  content: "";
  position: absolute;
}
.data__box .business-text01 {
  top: clamp(1px, 1.5625vw, 20px);
  right: clamp(-340px, -26.5625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text01 {
    top: -13.3333333333vw;
    right: -16vw;
    text-align: right;
  }
}
.data__box .business-text01::after {
  width: clamp(1px, 31.640625vw, 405px);
  height: 1px;
  background-color: var(--color-primary);
  bottom: clamp(-5px, -0.390625vw, 1px);
  right: 0px;
}
@media screen and (max-width: 768px) {
  .data__box .business-text01::after {
    width: 28.8vw;
    bottom: -1.3333333333vw;
    height: 0.2666666667vw;
  }
}
.data__box .business-text02 {
  top: clamp(1px, 10.15625vw, 130px);
  right: clamp(-340px, -26.5625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text02 {
    top: auto;
    bottom: -22.6666666667vw;
    right: -16vw;
    text-align: right;
  }
}
.data__box .business-text02::after {
  width: clamp(1px, 36.328125vw, 465px);
  height: 1px;
  background-color: var(--color-primary);
  bottom: clamp(-5px, -0.390625vw, 1px);
  right: 0px;
}
@media screen and (max-width: 768px) {
  .data__box .business-text02::after {
    background: no-repeat url(../img/data/chart-bar02-sp.png) center center/contain;
    width: 34.9333333333vw;
    height: 8.2666666667vw;
    bottom: auto;
    top: -10.6666666667vw;
  }
}
.data__box .business-text03 {
  top: clamp(1px, 13.671875vw, 175px);
  left: clamp(-315px, -24.609375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text03 {
    left: -16vw;
    top: auto;
    bottom: -17.3333333333vw;
    text-align: left;
  }
}
.data__box .business-text03::after {
  width: clamp(1px, 32.34375vw, 414px);
  height: clamp(1px, 4.921875vw, 63px);
  bottom: clamp(-10px, -0.78125vw, 1px);
  left: clamp(-55px, -4.296875vw, 1px);
  background: no-repeat url(../img/data/chart-bar03.png) center center/contain;
}
@media screen and (max-width: 768px) {
  .data__box .business-text03::after {
    background: no-repeat url(../img/data/chart-bar03-sp.png) center center/contain;
    width: 22.9333333333vw;
    height: 5.3333333333vw;
    bottom: auto;
    top: -8vw;
    left: 0;
  }
}
.data__box .business-text04 {
  top: clamp(1px, 6.25vw, 80px);
  left: clamp(-372px, -29.0625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text04 {
    left: -16vw;
    top: -5.3333333333vw;
    text-align: left;
  }
}
.data__box .business-text04::after {
  width: clamp(1px, 32.65625vw, 418px);
  height: clamp(1px, 5.078125vw, 65px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: clamp(0px, 0.390625vw, 5px);
  background: no-repeat url(../img/data/chart-bar04.png) center center/contain;
}
@media screen and (max-width: 768px) {
  .data__box .business-text04::after {
    width: 32vw;
    height: 12vw;
    left: 0;
    bottom: -2.1333333333vw;
    background: no-repeat url(../img/data/chart-bar04-sp.png) center center/contain;
  }
}
.data__box .business-text05 {
  top: clamp(-10px, -0.78125vw, 1px);
  left: clamp(-190px, -14.84375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text05 {
    left: -16vw;
    top: -28vw;
    text-align: left;
  }
}
.data__box .business-text05::after {
  width: clamp(1px, 37.34375vw, 478px);
  height: 1px;
  background-color: var(--color-primary);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: clamp(-175px, -13.671875vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .business-text05::after {
    background: no-repeat url(../img/data/chart-bar05-sp.png) center center/contain;
    height: 13.6vw;
    width: 36vw;
    left: 0;
    bottom: -16vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .business-text .text50 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .business-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .business-name {
  color: var(--color-primary);
  font-size: clamp(1px, 1.09375vw, 14px);
  padding-right: clamp(1px, 1.171875vw, 15px);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .data__box .business-name {
    font-size: 3.2vw;
    display: block;
    line-height: 1.6;
  }
}
.data__box .industry-chart {
  width: clamp(1px, 19.53125vw, 250px);
  margin: clamp(1px, 3.90625vw, 50px) auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .industry-chart {
    width: 48vw;
    margin: 16vw auto 21.3333333333vw;
  }
}
.data__box .industry-text {
  position: absolute;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .data__box .industry-text {
    display: block;
  }
}
.data__box .industry-text::after {
  content: "";
  position: absolute;
}
.data__box .industry-text01 {
  top: clamp(1px, 7.421875vw, 95px);
  right: clamp(-308px, -24.0625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text01 {
    top: auto;
    bottom: -13.3333333333vw;
    right: -16vw;
  }
}
.data__box .industry-text01::after {
  width: clamp(1px, 28.5546875vw, 365.5px);
  height: clamp(1px, 0.625vw, 8px);
  background: no-repeat url(../img/voice/industry-bar01.png) center center/100% 100%;
  bottom: clamp(-5px, -0.390625vw, 1px);
  right: clamp(1px, 0.234375vw, 3px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text01::after {
    width: 36.8vw;
    height: 0.2666666667vw;
    background: no-repeat url(../img/voice/industry-bar01-sp.png) center center/100% 100%;
    bottom: auto;
    right: 0;
    top: -2.1333333333vw;
  }
}
.data__box .industry-text02 {
  top: clamp(1px, 11.71875vw, 160px);
  left: clamp(-261px, -20.390625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text02 {
    left: -16vw;
    top: 45.3333333333vw;
  }
}
.data__box .industry-text02::after {
  width: clamp(1px, 30.5078125vw, 390.5px);
  height: clamp(1px, 6.6015625vw, 84.5px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: clamp(-74px, -5.78125vw, 1px);
  background: no-repeat url(../img/voice/industry-bar02.png) center center/100% 100%;
}
@media screen and (max-width: 768px) {
  .data__box .industry-text02::after {
    width: 22.1333333333vw;
    height: 10.6666666667vw;
    bottom: auto;
    top: -12.8vw;
    left: 0;
    background: no-repeat url(../img/voice/industry-bar02-sp.png) center center/100% 100%;
  }
}
.data__box .industry-text03 {
  top: clamp(1px, 6.640625vw, 85px);
  left: clamp(-335px, -26.171875vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text03 {
    left: -16vw;
    top: 9.3333333333vw;
  }
}
.data__box .industry-text03::after {
  width: clamp(1px, 30.7421875vw, 393.5px);
  height: clamp(1px, 6.7578125vw, 86.5px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: clamp(-1px, -0.078125vw, 1px);
  background: no-repeat url(../img/voice/industry-bar03.png) center center/100% 100%;
}
@media screen and (max-width: 768px) {
  .data__box .industry-text03::after {
    width: 26.6666666667vw;
    height: 18.4vw;
    bottom: -1.3333333333vw;
    left: 0;
    background: no-repeat url(../img/voice/industry-bar03-sp.png) center center/100% 100%;
  }
}
.data__box .industry-text04 {
  top: clamp(-10px, -0.78125vw, 1px);
  left: clamp(-225px, -17.578125vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text04 {
    left: -16vw;
    top: -12vw;
  }
}
.data__box .industry-text04::after {
  width: clamp(1px, 33.6328125vw, 430.5px);
  height: clamp(1px, 0.625vw, 8px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: clamp(-110px, -8.59375vw, 1px);
  background: no-repeat url(../img/voice/industry-bar04.png) center center/100% 100%;
}
@media screen and (max-width: 768px) {
  .data__box .industry-text04::after {
    width: 31.4666666667vw;
    height: 0.2666666667vw;
    bottom: -1.3333333333vw;
    left: 0;
    background: no-repeat url(../img/voice/industry-bar04-sp.png) center center/100% 100%;
  }
}
.data__box .industry-text05 {
  top: clamp(-40px, -3.125vw, 1px);
  right: clamp(-274px, -21.40625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text05 {
    top: -10.6666666667vw;
    right: -11.2vw;
  }
}
.data__box .industry-text05::after {
  width: clamp(1px, 35.1953125vw, 450.5px);
  height: clamp(1px, 0.625vw, 8px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  background: no-repeat url(../img/voice/industry-bar05.png) center center/100% 100%;
  right: clamp(-30px, -2.34375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text05::after {
    width: 42.6666666667vw;
    height: 0.2666666667vw;
    right: -4vw;
    bottom: -1.3333333333vw;
    background: no-repeat url(../img/voice/industry-bar05-sp.png) center center/100% 100%;
  }
}
.data__box .industry-text06 {
  top: clamp(1px, 2.03125vw, 26px);
  right: clamp(-265px, -20.703125vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text06 {
    top: 8vw;
    right: -12.8vw;
  }
}
.data__box .industry-text06::after {
  width: clamp(1px, 33.75vw, 432px);
  height: clamp(1px, 0.625vw, 8px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  background: no-repeat url(../img/voice/industry-bar06.png) center center/100% 100%;
  right: clamp(-37px, -2.890625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-text06::after {
    width: 40vw;
    height: 10.6666666667vw;
    bottom: -1.3333333333vw;
    background: no-repeat url(../img/voice/industry-bar06-sp.png) center center/100% 100%;
    right: -2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .industry-text .text55 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .industry-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .industry-name {
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
  padding-right: clamp(1px, 1.171875vw, 15px);
}
@media screen and (max-width: 768px) {
  .data__box .industry-name {
    font-size: 3.2vw;
    display: block;
    line-height: 1.6;
  }
}
.data__box .decide {
  margin-top: clamp(1px, 3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .decide {
    margin: 8vw 0 12vw;
  }
}
.data__box .decide-text {
  position: absolute;
}
.data__box .decide-text::after {
  content: "";
  position: absolute;
}
.data__box .decide-text01 {
  top: -2.2%;
  right: 1%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text01 {
    top: -2.7%;
    right: -1%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text01 {
    top: -1.3333333333vw;
    left: 68vw;
  }
}
.data__box .decide-text02 {
  top: 10.9%;
  right: 10%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text02 {
    top: 10.2%;
    right: 7.6%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text02 {
    top: 11.7333333333vw;
    left: 60.5333333333vw;
  }
}
.data__box .decide-text03 {
  top: 23.8%;
  right: 12%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text03 {
    top: 23%;
    right: 9.5%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text03 {
    top: 25.3333333333vw;
    left: 60.5333333333vw;
  }
}
.data__box .decide-text04 {
  top: 36.8%;
  right: 34.5%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text04 {
    top: 36.2%;
    right: 32.5%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text04 {
    top: 39.2vw;
    left: 44.5333333333vw;
  }
}
.data__box .decide-text05 {
  top: 49.6%;
  right: 36%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text05 {
    top: 49.2%;
    right: 34%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text05 {
    top: 52.2666666667vw;
    left: 44.5333333333vw;
  }
}
.data__box .decide-text06 {
  top: 63.1%;
  right: 46.6%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text06 {
    top: 62.4%;
    right: 44.5%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text06 {
    top: 65.8666666667vw;
    left: 36.5333333333vw;
  }
}
.data__box .decide-text07 {
  top: 75.8%;
  right: 40.8%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text07 {
    top: 75.4%;
    right: 38.5%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text07 {
    top: 79.2vw;
    left: 33.3333333333vw;
  }
}
.data__box .decide-text08 {
  top: 88.8%;
  right: 40.8%;
}
@media screen and (max-width: 1200px) {
  .data__box .decide-text08 {
    top: 88.2%;
    right: 38.5%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text08 {
    top: 92.5333333333vw;
    left: 33.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text .text55 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .decide-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .decide .image {
  width: 95%;
}
@media screen and (max-width: 768px) {
  .data__box .decide .image {
    width: 77.8666666667vw;
  }
}
.data__box .gap {
  margin-top: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 768px) {
  .data__box .gap {
    margin: 5.3333333333vw 0 10.6666666667vw;
  }
}
.data__box .gap-flex {
  display: flex;
  gap: clamp(1px, 8.59375vw, 110px);
  margin-top: clamp(1px, 1.5625vw, 20px);
  padding-left: clamp(1px, 3.515625vw, 45px);
}
@media screen and (max-width: 768px) {
  .data__box .gap-flex {
    gap: 22.6666666667vw;
    padding-left: 8.8vw;
    padding-top: 2.6666666667vw;
  }
}
.data__box .gap-text .text18 {
  display: block;
  text-align: center;
  margin-bottom: clamp(1px, 0.390625vw, 5px);
}
@media screen and (max-width: 768px) {
  .data__box .gap-text .text18 {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .gap .image {
    width: 100%;
  }
}
.data__box .anxiety-chart {
  width: clamp(1px, 17.96875vw, 230px);
  margin: clamp(1px, 4.6875vw, 60px) auto clamp(1px, 2.34375vw, 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-chart {
    width: 48vw;
    margin: 8vw auto 18.6666666667vw;
  }
}
.data__box .anxiety-text {
  position: absolute;
}
.data__box .anxiety-text::after {
  content: "";
  position: absolute;
}
.data__box .anxiety-text01 {
  top: clamp(1px, 3.515625vw, 45px);
  right: clamp(-128px, -10vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text01 {
    top: auto;
    bottom: -8vw;
    right: -16vw;
  }
}
.data__box .anxiety-text01::after {
  width: clamp(1px, 14.84375vw, 190px);
  height: clamp(1px, 0.625vw, 8px);
  background: no-repeat url(../img/voice/anxiety-bar01.png) center center/100% 100%;
  bottom: clamp(-5px, -0.390625vw, 1px);
  right: 0;
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text01::after {
    background: no-repeat url(../img/voice/anxiety-bar01-sp.png) center center/100% 100%;
    width: 38.6666666667vw;
    height: 0.2666666667vw;
    top: -3.2vw;
    bottom: 0;
  }
}
.data__box .anxiety-text02 {
  top: clamp(1px, -0.78125vw, -10px);
  left: clamp(-115px, -8.984375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text02 {
    top: -2.6666666667vw;
    left: -17.3333333333vw;
  }
}
.data__box .anxiety-text02::after {
  width: clamp(1px, 15.390625vw, 197px);
  height: clamp(1px, 0.625vw, 8px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: 0;
  background: no-repeat url(../img/voice/anxiety-bar02.png) center center/100% 100%;
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text02::after {
    width: 31.4666666667vw;
    height: 0.2666666667vw;
    bottom: -2.1333333333vw;
    background: no-repeat url(../img/voice/anxiety-bar02-sp.png) center center/100% 100%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text .text55 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .anxiety-name {
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
  display: block;
  margin-bottom: clamp(-5px, -0.390625vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .anxiety-name {
    font-size: 3.2vw;
  }
}
.data__box .resolved-chart {
  width: clamp(1px, 17.96875vw, 230px);
  margin: clamp(1px, 4.6875vw, 60px) auto clamp(1px, 2.34375vw, 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .resolved-chart {
    width: 48vw;
    margin: 8vw auto 13.3333333333vw;
  }
}
.data__box .resolved-text {
  position: absolute;
}
.data__box .resolved-text::after {
  content: "";
  position: absolute;
}
.data__box .resolved-text01 {
  top: 0;
  right: clamp(-158px, -12.34375vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text01 {
    top: 45.3333333333vw;
    right: -16vw;
  }
}
.data__box .resolved-text01::after {
  width: clamp(1px, 16.40625vw, 210px);
  height: clamp(1px, 0.625vw, 8px);
  background: no-repeat url(../img/voice/resolved-bar01.png) center center/100% 100%;
  bottom: clamp(-5px, -0.390625vw, 1px);
  right: 0;
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text01::after {
    width: 38.6666666667vw;
    height: 0.2666666667vw;
    background: no-repeat url(../img/voice/resolved-bar01-sp.png) center center/100% 100%;
    bottom: auto;
    top: -1.3333333333vw;
  }
}
.data__box .resolved-text02 {
  top: clamp(-35px, -2.734375vw, 1px);
  left: clamp(-100px, -7.8125vw, 1px);
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text02 {
    top: -2.6666666667vw;
    left: -15.4666666667vw;
  }
}
.data__box .resolved-text02::after {
  width: clamp(1px, 16.5625vw, 212px);
  height: clamp(1px, 0.625vw, 8px);
  bottom: clamp(-5px, -0.390625vw, 1px);
  left: 0;
  background: no-repeat url(../img/voice/resolved-bar02.png?v=1) center center/100% 100%;
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text02::after {
    width: 38.4vw;
    height: 0.2666666667vw;
    bottom: -1.3333333333vw;
    background: no-repeat url(../img/voice/resolved-bar02-sp.png?v=1) center center/100% 100%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text .text55 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .resolved-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .resolved-name {
  color: var(--color-primary);
  font-size: clamp(1px, 1.40625vw, 18px);
  display: block;
  margin-bottom: clamp(-10px, -0.78125vw, 1px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .data__box .resolved-name {
    font-size: 3.2vw;
    margin-bottom: -1.3333333333vw;
  }
}
.data__box .growth {
  margin-top: clamp(1px, 2.734375vw, 35px);
}
@media screen and (max-width: 768px) {
  .data__box .growth {
    margin: 5.3333333333vw 0 13.3333333333vw;
  }
}
.data__box .growth-name {
  font-size: clamp(1px, 1.40625vw, 18px);
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .data__box .growth-name {
    font-size: 3.2vw;
  }
}
.data__box .growth .image {
  width: 100%;
}
.data__box .growth .number {
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(-95px, -7.421875vw, 1px) auto 0;
  transform: translateX(clamp(-3px, -0.234375vw, 1px));
}
@media screen and (max-width: 768px) {
  .data__box .growth .number {
    margin: -16vw auto 0;
    transform: none;
  }
}
.data__box .skill-list {
  margin-top: clamp(1px, 2.34375vw, 30px);
  padding-left: clamp(1px, 1.953125vw, 25px);
  counter-reset: li;
}
@media screen and (max-width: 768px) {
  .data__box .skill-list {
    margin: 6.6666666667vw 0 10.6666666667vw;
    padding-left: 0;
  }
}
.data__box .skill-list .item {
  display: grid;
  grid-template-columns: clamp(1px, 20.3125vw, 260px) 1fr;
  align-items: center;
  position: relative;
  list-style: none;
  padding-left: clamp(1px, 4.296875vw, 55px);
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(1px, 1.40625vw, 18px);
  margin-bottom: clamp(1px, 0.78125vw, 10px);
}
@media screen and (max-width: 768px) {
  .data__box .skill-list .item {
    grid-template-columns: 48vw 1fr;
    padding-left: 10.6666666667vw;
    font-size: 3.2vw;
    margin-bottom: 2.6666666667vw;
  }
}
.data__box .skill-list .item:last-child {
  margin-bottom: clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 768px) {
  .data__box .skill-list .item:last-child {
    margin-bottom: 0;
  }
}
.data__box .skill-list .item::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  width: clamp(1px, 3.4375vw, 44px);
  height: clamp(1px, 3.515625vw, 45px);
  padding-top: clamp(1px, 1.09375vw, 14px);
  background: no-repeat url(../img/icon-ranking.png) center center/contain;
  text-align: center;
  font-size: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 768px) {
  .data__box .skill-list .item::before {
    font-size: 4vw;
    width: 8vw;
    height: 8vw;
    padding-top: 2.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .skill-list .item .text70 {
    font-size: 10.6666666667vw;
  }
}
.data__box .goodness {
  margin-top: clamp(1px, 3.125vw, 40px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .goodness {
    margin: 8vw 0 13.3333333333vw;
  }
}
.data__box .goodness-text {
  position: absolute;
}
.data__box .goodness-text::after {
  content: "";
  position: absolute;
}
.data__box .goodness-text01 {
  top: -1%;
  left: 85.5%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text01 {
    top: -1.6%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text01 {
    top: -0.4vw;
    left: 66.6666666667vw;
  }
}
.data__box .goodness-text02 {
  top: 13.8%;
  left: 76%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text02 {
    top: 13.4%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text02 {
    top: 16vw;
    left: 59.4666666667vw;
  }
}
.data__box .goodness-text03 {
  top: 28.8%;
  left: 76%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text03 {
    top: 28.2%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text03 {
    top: 32.2666666667vw;
    left: 59.4666666667vw;
  }
}
.data__box .goodness-text04 {
  top: 43.8%;
  left: 63.5%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text04 {
    top: 43.2%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text04 {
    top: 49.3333333333vw;
    left: 49.8666666667vw;
  }
}
.data__box .goodness-text05 {
  top: 58.6%;
  left: 63.5%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text05 {
    top: 58.2%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text05 {
    top: 65.6vw;
    left: 49.8666666667vw;
  }
}
.data__box .goodness-text06 {
  top: 74.1%;
  left: 49%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text06 {
    top: 73.4%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text06 {
    top: 82.1333333333vw;
    left: 38.4vw;
  }
}
.data__box .goodness-text07 {
  top: 88.8%;
  left: 49%;
}
@media screen and (max-width: 1200px) {
  .data__box .goodness-text07 {
    top: 88.3%;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text07 {
    top: 98.6666666667vw;
    left: 38.4vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text .text55 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .goodness-text .text20 {
    font-size: 3.7333333333vw;
  }
}
.data__box .goodness .image {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .data__box .goodness .image {
    width: 79.2vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .annual-holidays .number {
    font-size: 12vw;
    margin-top: 12.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .annual-holidays .number .text36 {
    font-size: 4.8vw;
  }
}
.data__box .annual-holidays .image {
  width: clamp(1px, 7.65625vw, 98px);
}
@media screen and (max-width: 768px) {
  .data__box .annual-holidays .image {
    width: 12.8vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .paid-holiday .number {
    font-size: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .paid-holiday .number .text36 {
    font-size: 4.8vw;
  }
}
.data__box .paid-holiday .image {
  width: clamp(1px, 8.28125vw, 106px);
}
@media screen and (max-width: 768px) {
  .data__box .paid-holiday .image {
    width: 16.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .overtime .number {
    font-size: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .data__box .overtime .number .text36 {
    font-size: 4.8vw;
  }
}
.data__box .overtime .image {
  width: clamp(1px, 7.5vw, 96px);
}
@media screen and (max-width: 768px) {
  .data__box .overtime .image {
    width: 13.3333333333vw;
  }
}
.data__box .retention {
  display: grid;
  grid-template-columns: 1fr clamp(1px, 16.40625vw, 210px);
  align-items: center;
  padding-right: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 768px) {
  .data__box .retention {
    grid-template-columns: 1fr;
    gap: 4vw;
    padding-right: 0;
  }
}
.data__box .retention .number {
  text-align: left;
  font-size: clamp(1px, 7.421875vw, 95px);
}
@media screen and (max-width: 768px) {
  .data__box .retention .number {
    text-align: center;
    font-size: 12vw;
  }
}
.data__box .retention .number .text36 {
  font-size: clamp(1px, 2.65625vw, 34px);
}
@media screen and (max-width: 768px) {
  .data__box .retention .number .text36 {
    font-size: 4.8vw;
  }
}
.data__box .retention .js-chart {
  position: relative;
}
@media screen and (max-width: 768px) {
  .data__box .retention .js-chart {
    width: 19.4666666667vw;
    margin: 0 auto;
  }
}
.data__box .retention .js-chart::before {
  content: "";
  position: absolute;
  top: clamp(1px, 0.78125vw, 10px);
  right: clamp(-14px, -1.09375vw, 1px);
  background: no-repeat url(../img/icon-sparkle.svg) center center/contain;
  width: clamp(1px, 1.875vw, 24px);
  height: clamp(1px, 2.1875vw, 28px);
}
@media screen and (max-width: 768px) {
  .data__box .retention .js-chart::before {
    width: 2.6666666667vw;
    height: 3.2vw;
  }
}
.data__box .retention .js-chart::after {
  content: "";
  position: absolute;
  bottom: clamp(1px, 0.78125vw, 10px);
  left: clamp(-14px, -1.09375vw, 1px);
  background: no-repeat url(../img/icon-sparkle.svg) center center/contain;
  width: clamp(1px, 1.40625vw, 18px);
  height: clamp(1px, 1.640625vw, 21px);
}
@media screen and (max-width: 768px) {
  .data__box .retention .js-chart::after {
    width: 2.1333333333vw;
    height: 2.4vw;
  }
}
.data__box .retention .js-chart canvas {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .data__box .service-years .number {
    font-size: 13.3333333333vw;
  }
}
.data__box .service-years .image {
  width: clamp(1px, 6.875vw, 88px);
}
@media screen and (max-width: 768px) {
  .data__box .service-years .image {
    width: 13.6vw;
  }
}
.data__notes {
  font-size: 12px;
  margin-top: 35px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .data__notes {
    font-size: 10px;
    margin-top: 25px;
  }
}
.data__object01 {
  top: -150px;
  left: -550px;
}
@media screen and (max-width: 1536px) {
  .data__object01 {
    display: none;
  }
}
.data__object02 {
  top: -380px;
  right: -514px;
}
@media screen and (max-width: 1536px) {
  .data__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .data__object02 {
    display: block;
    width: 146px;
    top: -134px;
    right: -73px;
  }
}
.data__object03 {
  top: -35px;
  left: -376px;
}
@media screen and (max-width: 1536px) {
  .data__object03 {
    display: none;
  }
}
.data__object04 {
  top: -55px;
  right: -200px;
}
@media screen and (max-width: 1536px) {
  .data__object04 {
    display: none;
  }
}
.data__object05 {
  display: none;
}
@media screen and (max-width: 768px) {
  .data__object05 {
    display: block;
    top: -130px;
    left: 30px;
  }
}

/* =============================================
  voice
============================================= */
.voice-word__image {
  display: block;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .voice-word__image {
    margin: 50px auto 0;
  }
}
.voice-word__notes {
  font-size: 12px;
  margin-top: 35px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .voice-word__notes {
    font-size: 10px;
    margin-top: 25px;
  }
}
.voice__object01 {
  bottom: -244px;
  left: -480px;
}
@media screen and (max-width: 1536px) {
  .voice__object01 {
    display: none;
  }
}
.voice__object02 {
  bottom: -100px;
  right: -200px;
}
@media screen and (max-width: 1536px) {
  .voice__object02 {
    display: none;
  }
}
.voice__object03 {
  bottom: -50px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  .voice__object03 {
    display: none;
  }
}
.voice__object04 {
  top: -100px;
  left: -650px;
}
@media screen and (max-width: 1536px) {
  .voice__object04 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .voice__object04 {
    display: block;
    width: 238px;
    top: -55px;
    left: -105px;
  }
}

/* =============================================
  welfare
============================================= */
.wel-sys__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
  gap: 100px 60px;
}
@media screen and (max-width: 1000px) {
  .wel-sys__grid {
    gap: 100px 40px;
  }
}
@media screen and (max-width: 768px) {
  .wel-sys__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }
}
.wel-sys__item {
  border-radius: 60px;
  background-color: #e5f6fd;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .wel-sys__item {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .wel-sys__item {
    border-radius: 30px;
  }
}
.wel-sys__item:nth-of-type(3) {
  grid-column: 1/3;
  background-color: #fdeff2;
}
@media screen and (max-width: 768px) {
  .wel-sys__item:nth-of-type(3) {
    grid-column: auto;
  }
}
.wel-sys__item-body {
  padding: 45px 35px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-body {
    padding: 30px 20px 40px;
  }
}
.wel-sys__item-body--lg {
  padding: 70px 50px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-body--lg {
    padding: 30px 20px 40px;
  }
}
.wel-sys__item-title {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-title {
    font-size: 18px;
  }
}
.wel-sys__item-text {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.wel-sys__item-label {
  margin-top: 40px;
  position: relative;
  padding-left: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-label {
    font-size: 14px;
    font-weight: 500;
  }
}
.wel-sys__item-label::before {
  content: "";
  position: absolute;
  top: 8.2px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00a3e6;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-label::before {
    width: 6px;
    height: 6px;
  }
}
.wel-sys__item-figure {
  margin-top: 20px;
}
.wel-sys__item-figure--flex {
  position: relative;
}
.wel-sys__item-figure--flex::after {
  content: "";
  position: absolute;
  top: -45%;
  right: 0;
  width: 26.8%;
  aspect-ratio: 153/63;
  background: no-repeat url(../img/welfare/sys-figure02-text.png) center center/contain;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-figure--flex::after {
    aspect-ratio: 112/46;
    width: 33.4%;
  }
}
.wel-sys__item-contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-contents {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wel-sys__item-circles {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-circles {
    margin-top: 30px;
    gap: 0 15px;
  }
}
.wel-sys__item-circle {
  background-color: #fff;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-primary);
  text-align: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-circle {
    width: 140px;
    height: 140px;
  }
}
.wel-sys__item-circle .text01 {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-circle .text01 {
    font-size: 12px;
  }
}
.wel-sys__item-circle .text02 {
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-circle .text02 {
    font-size: 34px;
  }
}
.wel-sys__item-circle .text02 small {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-circle .text02 small {
    font-size: 18px;
  }
}
.wel-sys__item-button {
  display: block;
  margin: 70px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .wel-sys__item-button {
    margin: 40px auto 0;
  }
}
.wel-sys__item-button:hover {
  opacity: 0.7;
}
.wel-ben__image {
  margin: 100px 0;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .wel-ben__image {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .wel-ben__image {
    margin: 30px 0;
    border-radius: 30px;
  }
}
.wel-ben__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .wel-ben__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wel-ben__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.wel-ben__item {
  background-color: #fff;
  border-radius: 60px;
  padding: 50px 35px;
}
@media screen and (max-width: 1000px) {
  .wel-ben__item {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .wel-ben__item {
    padding: 25px 20px;
    border-radius: 30px;
  }
}
.wel-ben__item-title {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wel-ben__item-title {
    font-size: 18px;
  }
}
.wel-ben__item-text {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .wel-ben__item-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.wel-ben__item-list {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .wel-ben__item-list {
    margin-top: 15px;
  }
}
.wel-ben__item-list--2row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 0 10px;
}
.wel-ben__item-list--4row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 0 10px;
}
.wel-comm__grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .wel-comm__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .wel-comm__grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.wel-comm__item {
  border-radius: 60px 60px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .wel-comm__item {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .wel-comm__item {
    border-radius: 30px 30px 0 0;
  }
}
.wel-comm__item-body {
  padding: 40px 35px;
  background-color: #ebf6ec;
  min-height: 390px;
}
@media screen and (max-width: 768px) {
  .wel-comm__item-body {
    min-height: auto;
  }
}
.wel-comm__item-title {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wel-comm__item-title {
    font-size: 18px;
  }
}
.wel-comm__item-text {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .wel-comm__item-text {
    font-size: 14px;
  }
}
.wel-comm__item-image {
  border-radius: 0 0 60px 60px;
}
@media screen and (max-width: 768px) {
  .wel-comm__item-image {
    border-radius: 0 0 30px 30px;
  }
}
.wel__object01 {
  top: 1090px;
  left: -480px;
}
@media screen and (max-width: 1536px) {
  .wel__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .wel__object01 {
    display: block;
    top: auto;
    left: auto;
    width: 120px;
    bottom: -150px;
    right: -30px;
  }
}
.wel__object02 {
  bottom: -350px;
  right: -400px;
}
@media screen and (max-width: 1536px) {
  .wel__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .wel__object02 {
    display: block;
    width: 86px;
    bottom: -113px;
    right: -25px;
  }
}
.wel__object03 {
  top: -80px;
  left: -565px;
}
@media screen and (max-width: 1536px) {
  .wel__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .wel__object03 {
    display: block;
    width: 138px;
    top: -45px;
    left: -70px;
  }
}
.wel__object04 {
  top: 861px;
  right: -545px;
}
@media screen and (max-width: 1536px) {
  .wel__object04 {
    display: none;
  }
}
.wel__object05 {
  bottom: 81px;
  left: -509px;
}
@media screen and (max-width: 1536px) {
  .wel__object05 {
    display: none;
  }
}
.wel__object06 {
  top: -316px;
  left: -127px;
}
@media screen and (max-width: 1536px) {
  .wel__object06 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .wel__object06 {
    display: block;
    width: 50px;
    top: -100px;
    left: 30px;
  }
}

/* =============================================
  careerstep
============================================= */
.cs-step__figure {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cs-step__figure {
    margin-top: 20px;
  }
}
.cs-step__list {
  margin-top: 100px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .cs-step__list {
    margin-top: 50px;
  }
}
.cs-step__item {
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .cs-step__item {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 20px;
  }
}
.cs-step__item:nth-of-type(1) dt {
  background-color: rgba(170, 207, 77, 0.5);
}
.cs-step__item:nth-of-type(2) dt {
  background-color: rgba(96, 190, 68, 0.45);
}
.cs-step__item:nth-of-type(3) dt {
  background-color: rgba(29, 181, 125, 0.4);
}
.cs-step__item:nth-of-type(4) dt {
  background-color: rgba(0, 169, 157, 0.4);
}
.cs-step__item:nth-of-type(5) dt {
  background-color: rgba(0, 163, 230, 0.4);
}
.cs-step__item dt {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 35px;
  color: var(--color-primary);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cs-step__item dt {
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
  }
}
.cs-step__item dt .text01 {
  font-size: 18px;
  font-weight: 600;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .cs-step__item dt .text01 {
    font-size: 12px;
    margin-right: 8px;
  }
}
.cs-step__item dt .text02 {
  font-size: 41px;
  font-weight: 600;
  font-style: italic;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .cs-step__item dt .text02 {
    font-size: 26px;
    margin-right: 20px;
  }
}
.cs-step__item dt .text03 {
  font-size: 23px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .cs-step__item dt .text03 {
    font-size: 15px;
    margin-right: 15px;
  }
}
.cs-step__item dt .text04 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .cs-step__item dt .text04 {
    font-size: 12px;
  }
}
.cs-step__item dd {
  line-height: 2;
}
.cs-step__button {
  margin: 100px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  transition: opacity ease 0.3s;
}
@media screen {
  .cs-step__button {
    margin: 50px auto 0;
    padding: 0 20px;
  }
}
.cs-step__button:hover {
  opacity: 0.7;
}
.cs-step__skill {
  max-width: 1000px;
  margin: 100px auto 0;
  border: 3px solid #b3c8dd;
  border-radius: 60px;
  padding: 70px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .cs-step__skill {
    margin: 50px auto 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .cs-step__skill {
    border-radius: 30px;
    padding: 40px 20px;
    gap: 40px;
  }
}
.cs-step__skill-title {
  color: var(--color-primary);
  font-size: 26px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cs-step__skill-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.cs-step__skill-title::after {
  content: "";
  width: 18px;
  height: 18px;
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  .cs-step__skill-title::after {
    bottom: -26px;
    width: 14px;
    height: 14px;
  }
}
.cs-step__skill-title span {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .cs-step__skill-title span {
    font-size: 30px;
  }
}
.cs-step__skill-text {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cs-step__skill-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cs-step__skill-image {
    transform: translateX(-2.8%);
  }
}
.cs-new__box {
  background-color: #fff;
  margin-top: 80px;
  border-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cs-new__box {
    margin-top: 40px;
    border-radius: 30px;
  }
}
.cs-new__box-body {
  padding: 80px 90px;
}
@media screen and (max-width: 1000px) {
  .cs-new__box-body {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .cs-new__box-body {
    padding: 50px 20px 40px;
  }
}
.cs-new__box .band {
  height: 50px;
  line-height: 50px;
  background: linear-gradient(134deg, rgb(255, 228, 80) 0%, rgb(0, 163, 230) 100%);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band {
    flex-direction: column;
    height: 100%;
  }
}
.cs-new__box .band p {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .cs-new__box .band p {
    font-size: 15px;
  }
}
.cs-new__box .band p:nth-of-type(1) {
  width: 33.333%;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band p:nth-of-type(1) {
    width: 100%;
    height: 240px;
  }
}
.cs-new__box .band p:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -20px;
  width: 22px;
  height: 55px;
  background: no-repeat url(../img/carrerstep/band-line.png) center center/contain;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band p:nth-of-type(1)::after {
    top: auto;
    right: 9px;
    bottom: -40px;
    transform: rotate(90deg);
  }
}
.cs-new__box .band p:nth-of-type(2) {
  width: 66.667%;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band p:nth-of-type(2) {
    width: 100%;
    flex: 1;
  }
}
.cs-new__box .band p:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #00A3E6;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .band p:nth-of-type(2)::after {
    border-width: 20px 0 20px 15px;
    top: auto;
    right: 12.5px;
    bottom: -27.5px;
    transform: rotate(90deg);
  }
}
.cs-new__box .columns {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .columns {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.cs-new__box .columns .column {
  border-right: 1px solid #ccc;
  padding: 10px 25px 0;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .columns .column {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 1000px) {
  .cs-new__box .columns .column:first-child {
    padding: 0 0 40px;
  }
}
.cs-new__box .columns .column:last-child {
  border-right: none;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .columns .column:last-child {
    border-bottom: none;
    padding: 40px 0 0;
  }
}
.cs-new__box .columns .column__title {
  text-align: center;
  color: var(--color-primary);
  border-radius: 30px;
  padding: 5px 0;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cs-new__box .columns .column__title {
    font-size: 14px;
  }
}
.cs-new__box .columns .column__title:nth-of-type(1) {
  margin-top: 0;
}
.cs-new__box .columns .column__title--green {
  background-color: #bde1c1;
}
.cs-new__box .columns .column__title--emerald {
  background-color: rgba(0, 169, 157, 0.45);
}
.cs-new__box .columns .column__title--blue {
  background-color: #b2e3f8;
}
.cs-new__box .columns .column__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto 0;
}
.cs-new__box .columns .column__step {
  margin-top: 15px;
}
.cs-new__box .columns .column__step li {
  padding: 5px 20px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cs-new__box .columns .column__step li {
    font-size: 14px;
    grid-template-columns: 60px 1fr;
    padding: 5px 10px;
  }
}
.cs-new__box .columns .column__step li span:nth-of-type(1) {
  color: #00a3e6;
  display: block;
  position: relative;
  line-height: 1.5;
}
.cs-new__box .columns .column__step li span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  height: 100%;
  width: 1.5px;
  background-color: #00a3e6;
}
.cs-new__box .columns .column__dotted {
  padding: 10px 0;
  margin-top: 5px;
  background-color: #edf9fd;
  border: 1px dashed #00a3e6;
}
.cs-new__box .columns .column__dotted ul {
  margin-top: 0;
}
.cs-new__box .columns .column__dotted li {
  padding: 5px 19px;
}
@media screen and (max-width: 768px) {
  .cs-new__box .columns .column__dotted li {
    padding: 5px 9px;
  }
}
.cs-new__box .columns .column__dotted p {
  margin-top: 5px;
  text-align: center;
  color: #00a3e6;
}
@media screen and (max-width: 768px) {
  .cs-new__box .columns .column__dotted p {
    font-size: 14px;
  }
}
.cs-new__box .voice {
  margin-top: 80px;
  background-color: #e6edf4;
  border-radius: 60px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .voice {
    margin-top: 50px;
    border-radius: 30px;
    grid-template-columns: 1fr;
    grid-column: 1/3;
    padding: 0;
  }
}
.cs-new__box .voice:after {
  content: "";
  position: absolute;
  height: calc(100% - 40px);
  top: 50%;
  transform: translateY(-50%);
  left: 45%;
  width: 1.5px;
  background-image: linear-gradient(to bottom, #80a3c6 8px, transparent 3px);
  background-size: 1.5px 11px;
  background-repeat: repeat-y;
  background-position: top bottom;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .voice:after {
    content: none;
  }
}
.cs-new__box .voice .item {
  padding: 0 60px;
}
@media screen and (max-width: 1000px) {
  .cs-new__box .voice .item {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cs-new__box .voice .item:first-child {
    position: relative;
  }
  .cs-new__box .voice .item:first-child:after {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    bottom: 0;
    left: 20px;
    height: 1px;
    background-image: linear-gradient(to right, #80a3c6 6px, transparent 4px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    background-position: top right;
  }
}
.cs-new__box .voice .item__title {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cs-new__box .voice .item__title {
    font-size: 16px;
  }
}
.cs-new__box .voice .item__list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .cs-new__box .voice .item__list {
    margin-top: 15px;
  }
}
.cs-new__box .voice .item__list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cs-new__box .voice .item__list li {
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 20px;
  }
}
.cs-new__box .voice .item__list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 17px;
  height: 15px;
  background: no-repeat url(../img/icon-list-check.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .cs-new__box .voice .item__list li::before {
    width: 15px;
    height: 13px;
  }
}
.cs-new__box .voice .item__list li:last-child {
  margin-bottom: 0;
}
.cs-new__button {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cs-new__button {
    margin-top: 40px;
  }
}
.cs-education__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .cs-education__grid {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .cs-education__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 30px;
  }
}
.cs-education__grid .item {
  background-color: #ebf6ec;
  border-radius: 60px;
  padding: 60px 30px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .cs-education__grid .item {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item {
    border-radius: 30px;
    padding: 30px 20px;
  }
}
.cs-education__grid .item:first-child {
  grid-column: 1/3;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item:first-child {
    grid-column: auto;
  }
}
.cs-education__grid .item:first-child .item__in {
  padding: 60px 30px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item:first-child .item__in {
    padding: 30px 20px;
    max-width: none;
  }
}
.cs-education__grid .item__title {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item__title {
    font-size: 18px;
  }
}
.cs-education__grid .item__text {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item__text {
    margin-top: 10px;
    font-size: 14px;
  }
}
.cs-education__grid .item__list {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item__list {
    margin-top: 10px;
  }
}
.cs-education__grid .item__list--1row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(1, auto);
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item__list--1row {
    display: block;
  }
}
.cs-education__grid .item__list--2row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  justify-content: flex-start;
  gap: 0 15px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid .item__list--2row {
    display: block;
  }
}
.cs-education__grid02 {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .cs-education__grid02 {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 {
    margin-top: 70px;
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.cs-education__grid02 .item {
  position: relative;
}
.cs-education__grid02 .item__title {
  font-size: 36px;
  text-align: center;
  color: var(--color-primary);
  padding-top: 50px;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__title {
    font-size: 22px;
    padding-top: 30px;
  }
}
.cs-education__grid02 .item__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__title::before {
    width: 15px;
    height: 15px;
  }
}
.cs-education__grid02 .item__text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__text {
    font-size: 14px;
  }
}
.cs-education__grid02 .item__group {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__group {
    border-radius: 30px;
  }
}
.cs-education__grid02 .item__group-bg {
  background-color: #fdeff2;
  padding: 60px 35px;
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__group-bg {
    padding: 30px 20px;
  }
}
.cs-education__grid02 .item__img {
  margin-top: 20px;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .cs-education__grid02 .item__img {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .cs-education__grid02 .item__img {
    border-radius: 30px;
  }
}
.cs__object01 {
  top: 849px;
  left: -507px;
}
@media screen and (max-width: 1536px) {
  .cs__object01 {
    display: none;
  }
}
.cs__object02 {
  bottom: -356px;
  right: -738px;
}
@media screen and (max-width: 1536px) {
  .cs__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cs__object02 {
    display: block;
    width: 238px;
    right: -136px;
    bottom: -121px;
  }
}
.cs__object03 {
  top: 161px;
  left: -570px;
}
@media screen and (max-width: 1536px) {
  .cs__object03 {
    display: none;
  }
}
.cs__object04 {
  bottom: -240px;
  right: -215px;
}
@media screen and (max-width: 1536px) {
  .cs__object04 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cs__object04 {
    display: block;
    width: 26px;
    bottom: -83px;
    right: 50px;
  }
}
.cs__object05 {
  top: 0px;
  left: -472px;
}
@media screen and (max-width: 1536px) {
  .cs__object05 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cs__object05 {
    display: block;
    width: 172px;
    top: -93px;
    left: -40px;
    transform: rotate(180deg);
  }
}
.cs__object06 {
  top: 1025px;
  right: -526px;
}
@media screen and (max-width: 1536px) {
  .cs__object06 {
    display: none;
  }
}
.cs__object07 {
  display: none;
  top: -55px;
  right: -49px;
}
@media screen and (max-width: 768px) {
  .cs__object07 {
    display: block;
  }
}
.cs__object08 {
  display: none;
  top: -46px;
  left: -52px;
}
@media screen and (max-width: 768px) {
  .cs__object08 {
    display: block;
  }
}

/* =============================================
  requirement
============================================= */
.req-msg {
  padding: 150px 0 130px;
}
@media screen and (max-width: 768px) {
  .req-msg {
    padding: 70px 0;
  }
}
.req-job__notes {
  font-size: 12px;
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .req-job__notes {
    padding: 0 20px;
    margin-top: 20px;
    text-align: left;
  }
}
.req-description {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .req-description {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.req-description__head {
  height: 85px;
  line-height: 85px;
  background-color: #fff;
  border-radius: 10px;
  color: var(--color-primary);
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .req-description__head {
    height: 65px;
    line-height: 65px;
    font-size: 16px;
    border-radius: 15px;
  }
}
.req-description__body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .req-description__body {
    margin-top: 0;
  }
}
.req-description__body .item {
  border-bottom: 1px solid #b3b3b3;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media screen and (max-width: 768px) {
  .req-description__body .item {
    grid-template-columns: 1fr;
    padding: 20px 0;
    gap: 5px;
  }
}
.req-description__body .item__title {
  color: var(--color-primary);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .req-description__body .item__title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .req-description__body .item__text p {
    font-size: 14px;
  }
}
.req-university__list {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .req-university__list {
    margin-top: 30px;
    font-size: 14px;
  }
}
.req-entry__label {
  margin-top: 80px;
  margin-bottom: 40px;
  border-top: 1px solid #999999;
  padding-top: 40px;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .req-entry__label {
    margin-top: 70px;
    margin-bottom: 30px;
    padding-top: 30px;
    font-size: 18px;
  }
}
.req-entry__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
@media screen and (max-width: 1000px) {
  .req-entry__boxes {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .req-entry__boxes {
    gap: 20px;
  }
}
.req-entry__boxes .link {
  border-radius: 35px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 15px 15px #bfd1e2;
  min-height: 165px;
  text-align: center;
  font-size: 26px;
  color: #00a3e6;
  font-weight: 600;
  line-height: 1.6;
  transition: background-color ease 0.3s, color ease 0.3s;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  .req-entry__boxes .link {
    box-shadow: 10px 10px #bfd1e2;
    border-radius: 45px;
    font-size: 20px;
    min-height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .req-entry__boxes .link {
    box-shadow: 5px 5px #bfd1e2;
    border-radius: 15px;
    min-height: 133px;
    font-size: 15px;
  }
}
.req-entry__boxes .link:hover {
  background-color: #00a3e6;
  color: #fff;
}
.req-entry__boxes .link.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}
.req-contact__content {
  background: #ebf6ec;
  border-radius: 35px;
  margin-top: 40px;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .req-contact__content {
    padding: 40px 20px;
    margin-top: 30px;
  }
}
.req-contact__content-title {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 18px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .req-contact__content-title {
    font-size: 16px;
  }
}
.req-contact__content-title::before, .req-contact__content-title::after {
  content: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .req-contact__content-title::before, .req-contact__content-title::after {
    content: "";
  }
}
.req-contact__content-title::before {
  left: -10px;
  background: no-repeat url(../img/brackets-left.png) top left/contain;
}
.req-contact__content-title::after {
  right: -10px;
  background: no-repeat url(../img/brackets-right.png) top left/contain;
}
@media screen and (max-width: 768px) {
  .req-contact__content-title span {
    display: none;
  }
}
.req-contact__content-text {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .req-contact__content-text {
    font-size: 14px;
  }
}
.req-contact__content-text a {
  transition: opacity ease 0.3s;
}
.req-contact__content-text a:hover {
  opacity: 0.7;
}

/* =============================================
  faq
============================================= */
.faq__accordions {
  border-top: 1px solid #ccc;
}
.faq__accordions .accordion {
  border-bottom: 1px solid #ccc;
}
.faq__accordions .accordion__head {
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 30px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__head {
    height: 75px;
  }
}
.faq__accordions .accordion__head:hover {
  opacity: 0.7;
}
.faq__accordions .accordion__question {
  font-size: 18px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__question {
    font-size: 15px;
    padding-left: 25px;
  }
}
.faq__accordions .accordion__question::before {
  content: "Q";
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--color-primary);
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__question::before {
    font-size: 18px;
  }
}
.faq__accordions .accordion__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__button {
    width: 18px;
    height: 18px;
  }
}
.faq__accordions .accordion__button::before, .faq__accordions .accordion__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform ease 0.4s;
}
.faq__accordions .accordion__button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__accordions .accordion__button.is-active::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__accordions .accordion__body {
  max-height: 0;
  transition: max-height ease-in-out 0.4s;
  overflow: hidden;
}
.faq__accordions .accordion__body.is-active {
  max-height: 1000px;
}
.faq__accordions .accordion__answer {
  padding-left: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__answer {
    padding-left: 25px;
    font-size: 14px;
  }
}
.faq__accordions .accordion__answer::before {
  content: "A";
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .faq__accordions .accordion__answer::before {
    font-size: 18px;
    top: -4px;
  }
}
.faq__accordions .accordion__answer a {
  color: var(--color-primary);
  transition: opacity ease 0.3s;
}
.faq__accordions .accordion__answer a:hover {
  opacity: 0.7;
}

/* =============================================
  cross talk
============================================= */
.ct-fv {
  height: 822px;
  background: linear-gradient(180deg, rgba(240, 145, 167, 0.15) 0%, rgba(255, 228, 80, 0.15) 100%);
  overflow-x: clip;
}
@media screen and (max-width: 1000px) {
  .ct-fv {
    height: auto;
    padding: 100px 0 30px;
  }
}
.ct-fv__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .ct-fv__inner {
    display: block;
  }
}
.ct-fv__head {
  z-index: 2;
}
.ct-fv__image {
  position: absolute;
  top: 120px;
  right: -16.6%;
  width: 70.8%;
  display: block;
}
@media screen and (max-width: 1000px) {
  .ct-fv__image {
    top: auto;
    right: auto;
    position: relative;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .ct-fv__image {
    width: 445px;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 450px) {
  .ct-fv__image {
    width: 118.6666666667vw;
    transform: translateX(-10.6666666667vw);
  }
}
.ct-fv__image::after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 62px;
  background: no-repeat url(../img/objects/object04.svg) center center/contain;
}
@media screen and (max-width: 1000px) {
  .ct-fv__image::after {
    content: "";
  }
}
.ct-fv__year {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ct-fv__year {
    font-size: 16px;
  }
}
.ct-fv__title {
  color: var(--color-primary);
  font-size: 62px;
  letter-spacing: 5px;
  position: relative;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .ct-fv__title::after {
    font-size: 100px;
    line-height: 1;
    color: var(--color-primary);
    font-weight: 400;
    font-style: italic;
    position: absolute;
    bottom: -5px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .ct-fv__title {
    font-size: 26px;
    margin-top: 5px;
  }
  .ct-fv__title::after {
    bottom: -15px;
  }
}
@media screen and (max-width: 1000px) {
  .ct-fv__title01::after {
    content: "01";
  }
}
@media screen and (max-width: 1000px) {
  .ct-fv__title02::after {
    content: "02";
    bottom: -12px;
  }
}
@media screen and (max-width: 1000px) {
  .ct-fv__title03::after {
    content: "03";
    bottom: -12px;
  }
}
.ct-fv__text {
  margin-top: 30px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .ct-fv__text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.ct-fv__object01 {
  top: 190px;
  left: -487px;
}
@media screen and (max-width: 1536px) {
  .ct-fv__object01 {
    display: none;
  }
}
.ct-fv__object02 {
  bottom: 131px;
  left: -160px;
}
@media screen and (max-width: 1536px) {
  .ct-fv__object02 {
    display: none;
  }
}
.ct-breadcrumb {
  margin: 80px auto;
  padding: 0 40px;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .ct-breadcrumb {
    margin: 30px auto;
    padding: 0 20px;
  }
}
.ct-breadcrumb > span span {
  color: var(--color-black);
}
.ct-breadcrumb > span span::after {
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}
.ct-breadcrumb > span span a {
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
.ct-member {
  padding: 100px 0;
  border-radius: 0 200px 0 200px;
}
@media screen and (max-width: 1000px) {
  .ct-member {
    border-radius: 0 100px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .ct-member {
    padding: 70px 0;
  }
}
.ct-member__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .ct-member__list {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .ct-member__list {
    margin-top: 25px;
    grid-template-columns: 295px;
    justify-content: center;
    gap: 40px;
  }
}
.ct-member__list .item__image {
  position: relative;
}
.ct-member__list .item__year {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .ct-member__list .item__year {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
}
.ct-member__list .item__name {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ct-member__list .item__name {
    font-size: 14px;
    padding-left: 0;
  }
}
.ct-member__list .item__name::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .ct-member__list .item__name::before {
    top: 11px;
    width: 15px;
    left: -20px;
  }
}
.ct-member__list .item__depart {
  color: #686868;
  font-size: 15px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .ct-member__list .item__depart {
    font-size: 13px;
    margin-top: 0;
  }
}
.ct-section__title {
  text-align: center;
  color: var(--color-primary);
  font-size: 34px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ct-section__title {
    font-size: 20px;
  }
}
.ct-section__title::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.ct-section__explain {
  margin-top: 40px;
  text-align: center;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .ct-section__explain {
    font-size: 14px;
  }
}
.ct-talk .image {
  margin: 200px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ct-talk .image {
    margin: 70px 0;
  }
}
.ct-talk .image:last-child {
  margin: 200px 0 0;
}
@media screen and (max-width: 768px) {
  .ct-talk .image:last-child {
    margin: 70px 0 0;
  }
}
.ct-talk .image .img {
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .ct-talk .image .img {
    border-radius: 30px;
  }
}
.ct-talk__block {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.ct-talk__block .question {
  background-color: #f6ae54;
  color: #fff;
  border-radius: 60px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-align: center;
  position: relative;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .ct-talk__block .question {
    border-radius: 30px;
    height: 110px;
    font-size: 20px;
  }
}
.ct-talk__block .question::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 160px;
  background: no-repeat url(../img/icon-question.png) center center/contain;
  top: 10px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .ct-talk__block .question::after {
    width: 50px;
    height: 75px;
    top: 5px;
    right: 15px;
  }
}
.ct-talk__block .item {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .ct-talk__block .item {
    margin-top: 30px;
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }
}
.ct-talk__block .item__person {
  text-align: center;
}
.ct-talk__block .item__person-name {
  margin-top: 10px;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 768px) {
  .ct-talk__block .item__person-name {
    font-size: 12px;
  }
}
.ct-talk__block .item__text {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .ct-talk__block .item__text {
    font-size: 14px;
  }
}
.ct-slide__title {
  text-align: center;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .ct-slide__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.ct-slide__title span {
  position: relative;
  display: inline-block;
}
.ct-slide__title span::before, .ct-slide__title span::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 38px;
  height: 2px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .ct-slide__title span::before, .ct-slide__title span::after {
    bottom: 4px;
    width: 50px;
  }
}
.ct-slide__title span::before {
  left: -55px;
  rotate: 50deg;
  transform-origin: right bottom;
}
@media screen and (max-width: 768px) {
  .ct-slide__title span::before {
    left: -75px;
  }
}
.ct-slide__title span::after {
  right: -45px;
  rotate: -50deg;
  transform-origin: left bottom;
}
@media screen and (max-width: 768px) {
  .ct-slide__title span::after {
    right: -70px;
  }
}
@media screen and (max-width: 768px) {
  .ct-slide__title02 span::before {
    left: -50px;
  }
}
@media screen and (max-width: 768px) {
  .ct-slide__title02 span::after {
    right: -48px;
  }
}
@media screen and (max-width: 768px) {
  .ct-slide__title03 span::before {
    left: -60px;
  }
}
@media screen and (max-width: 768px) {
  .ct-slide__title03 span::after {
    right: -58px;
  }
}
.ct-slide .slide {
  margin-top: 40px;
  overflow-x: hidden;
  display: flex;
}
@media screen and (max-width: 768px) {
  .ct-slide .slide {
    margin-top: 30px;
  }
}
.ct-slide .slide__list {
  display: flex;
  animation: slideAnimation 35s linear infinite;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ct-slide .slide__list {
    padding-bottom: 15px;
  }
}
.ct-slide .slide__item {
  width: 458px;
  border: 12px solid #fff;
  overflow: hidden;
  box-shadow: 40px 40px #bfd1e2;
  margin-left: 80px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .ct-slide .slide__item {
    width: 200px;
    border: 5px solid #fff;
    box-shadow: 15px 15px #bfd1e2;
    margin-left: 35px;
    border-radius: 15px;
  }
}
.ct-other__title {
  font-size: 29px;
  position: relative;
  padding-left: 35px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ct-other__title {
    font-size: 22px;
    padding-left: 25px;
  }
}
.ct-other__title::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 24px;
  height: 24px;
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .ct-other__title::before {
    width: 16px;
    height: 16px;
  }
}
.ct-other__list {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}
@media screen and (max-width: 1000px) {
  .ct-other__list {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ct-other__list {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.ct-other__list .item {
  display: block;
  position: relative;
  transition: opacity ease 0.3s;
}
.ct-other__list .item:hover {
  opacity: 0.7;
}
.ct-other__list .item:hover .image img {
  transform: scale(1.1);
}
.ct-other__list .item .number {
  color: var(--color-primary);
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 100px;
  font-style: italic;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ct-other__list .item .number {
    font-size: 65px;
    top: -40px;
  }
}
.ct-other__list .item .image {
  border-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ct-other__list .item .image {
    border-radius: 30px;
  }
}
.ct-other__list .item .image img {
  transition: transform ease 0.3s;
}
.ct-other__list .item .title {
  color: var(--color-primary);
  font-size: 30px;
  margin-top: 30px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ct-other__list .item .title {
    font-size: 16px;
    margin-top: 20px;
  }
}
.ct-notes {
  font-size: 14px;
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .ct-notes {
    font-size: 10px;
    margin-top: 15px;
  }
}
.ct__object01 {
  right: -587px;
  bottom: -161px;
}
@media screen and (max-width: 1536px) {
  .ct__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object01 {
    display: block;
    width: 172px;
    right: -50px;
    bottom: -99px;
  }
}
.ct__object02 {
  top: -550px;
  left: -736px;
}
@media screen and (max-width: 1536px) {
  .ct__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object02 {
    display: block;
    width: 238px;
    top: -99px;
    left: -180px;
  }
}
.ct__object03 {
  bottom: -156px;
  right: -456px;
}
@media screen and (max-width: 1536px) {
  .ct__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object03 {
    display: block;
    width: 146px;
    right: -79px;
    bottom: -55px;
  }
}
.ct__object04 {
  top: -1200px;
  left: -426px;
}
@media screen and (max-width: 1536px) {
  .ct__object04 {
    display: none;
  }
}
.ct__object05 {
  top: -220px;
  right: -200px;
}
@media screen and (max-width: 1536px) {
  .ct__object05 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object05 {
    display: block;
    width: 64px;
    right: 0px;
    top: -80px;
  }
}
.ct__object06 {
  bottom: -419px;
  left: -538px;
}
@media screen and (max-width: 1536px) {
  .ct__object06 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object06 {
    display: block;
    width: 238px;
    left: -175px;
    bottom: -126px;
  }
}
.ct__object07 {
  top: -480px;
  left: -150px;
}
@media screen and (max-width: 1536px) {
  .ct__object07 {
    display: none;
  }
}
.ct__object08 {
  top: -377px;
  right: -557px;
}
@media screen and (max-width: 1536px) {
  .ct__object08 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object08 {
    display: block;
    width: 172px;
    right: -102px;
    top: -97px;
  }
}
.ct__object09 {
  bottom: -256px;
  left: -276px;
}
@media screen and (max-width: 1536px) {
  .ct__object09 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object09 {
    display: block;
    width: 38px;
    left: 0px;
    bottom: -21px;
  }
}
.ct__object10 {
  top: -1627px;
  right: -365px;
}
@media screen and (max-width: 1536px) {
  .ct__object10 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object10 {
    display: block;
    width: 120px;
    right: -47px;
    top: -100px;
  }
}
.ct__object11 {
  top: -226px;
  left: -153px;
}
@media screen and (max-width: 1536px) {
  .ct__object11 {
    display: none;
  }
}
.ct__object12 {
  bottom: -293px;
  right: -210px;
}
@media screen and (max-width: 1536px) {
  .ct__object12 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object12 {
    display: block;
    width: 34px;
    bottom: -87px;
    right: 11px;
  }
}
.ct__object13 {
  top: -345px;
  left: -496px;
}
@media screen and (max-width: 1536px) {
  .ct__object13 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ct__object13 {
    display: block;
    width: 172px;
    top: -117px;
    left: -64px;
  }
}

/* =============================================
  message
============================================= */
.msg-phil {
  padding: 175px 0 135px;
}
@media screen and (max-width: 768px) {
  .msg-phil {
    padding: 70px 0;
  }
}
.msg-top {
  padding: 135px 0 135px;
}
@media screen and (max-width: 768px) {
  .msg-top {
    padding: 70px 0;
  }
}
.msg-top__thumbnail {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .msg-top__thumbnail {
    margin-top: 30px;
  }
}
.msg-top__thumbnail .img {
  border-radius: clamp(1px, 4.6875vw, 60px);
}
@media screen and (max-width: 768px) {
  .msg-top__thumbnail .img {
    border-radius: 30px;
  }
}
.msg-top__thumbnail .message {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(1px, 7.8125vw, 100px);
}
@media screen and (max-width: 768px) {
  .msg-top__thumbnail .message {
    position: static;
    transform: none;
    margin-top: 30px;
  }
}
.msg-top__thumbnail .message span {
  background-color: #fff;
  display: block;
  font-size: clamp(1px, 2.578125vw, 33px);
  color: var(--color-primary);
  margin-bottom: clamp(1px, 1.953125vw, 25px);
  padding: 0 clamp(1px, 0.78125vw, 10px);
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .msg-top__thumbnail .message span {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0 5px;
  }
}
.msg-top__thumbnail .message span:last-child {
  margin-bottom: 0;
}
.msg-top__message {
  margin: 100px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .msg-top__message {
    margin-top: 20px;
  }
}
.msg-top__message .text {
  margin-bottom: 40px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .msg-top__message .text {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.msg-top__message .sign {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .msg-top__message .sign__position {
    font-size: 14px;
  }
}
.msg-top__message .sign__name {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .msg-top__message .sign__name {
    font-size: 20px;
    margin-top: 0;
  }
}
.msg-top__message .sign__name span {
  font-size: 16px;
  margin-left: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .msg-top__message .sign__name span {
    font-size: 14px;
  }
}
.msg-portrait {
  border-bottom: 1px solid #b3b3b3;
  padding: 135px 0 135px;
}
@media screen and (max-width: 768px) {
  .msg-portrait {
    padding: 70px 0;
  }
}
.msg-precious {
  padding: 135px 0 135px;
}
@media screen and (max-width: 768px) {
  .msg-precious {
    padding: 70px 0;
  }
}
.msg-precious__list {
  margin-top: 100px;
  max-width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .msg-precious__list {
    margin-top: 50px;
    max-width: none;
  }
}
.msg-precious__list:nth-of-type(1) {
  margin-left: auto;
}
.msg-precious__list:nth-of-type(2) {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .msg-precious__list:nth-of-type(2) {
    margin-top: 30px;
  }
}
.msg-precious__list .item {
  padding-bottom: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .msg-precious__list .item {
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
}
.msg-precious__list .item__image {
  position: absolute;
  top: 0;
  border-radius: 60px;
  width: 558px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .msg-precious__list .item__image {
    position: static;
    width: 100%;
    border-radius: 30px;
    margin-bottom: 60px;
  }
}
.msg-precious__list .item__image--left {
  right: 114%;
}
.msg-precious__list .item__image--right {
  left: 114%;
}
.msg-precious__list .item:nth-of-type(1) {
  border-bottom: 1px solid var(--color-primary);
}
.msg-precious__list .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0px;
}
.msg-precious__list .item__number {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 100px;
  font-style: italic;
  color: #ccdae8;
  letter-spacing: 3px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .msg-precious__list .item__number {
    font-size: 70px;
    top: -40px;
    font-weight: 400;
  }
}
.msg-precious__list .item__title {
  color: var(--color-primary);
  font-size: 28px;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .msg-precious__list .item__title {
    font-size: 20px;
  }
}
.msg-precious__list .item__text {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .msg-precious__list .item__text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.msg-last {
  padding: 105px 0;
}
@media screen and (max-width: 768px) {
  .msg-last {
    padding: 70px 0;
  }
}
.msg-last__text {
  font-size: 28px;
  color: var(--color-primary);
  text-align: center;
  line-height: 2.25;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .msg-last__text {
    font-size: 20px;
  }
}
.msg__object01 {
  top: -40px;
  right: 185px;
}
@media screen and (max-width: 1536px) {
  .msg__object01 {
    right: 85px;
  }
}
@media screen and (max-width: 768px) {
  .msg__object01 {
    width: 26px;
    top: -13px;
    right: 37px;
  }
}
.msg__object02 {
  top: 1188px;
  left: -175px;
}
@media screen and (max-width: 1536px) {
  .msg__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .msg__object02 {
    display: block;
    width: 146px;
    top: 21px;
    left: -44px;
  }
}
.msg__object03 {
  top: -270px;
  right: -276px;
}
@media screen and (max-width: 1536px) {
  .msg__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .msg__object03 {
    display: block;
    width: 86px;
    top: -50px;
    right: 17px;
  }
}
.msg__object04 {
  top: 706px;
  left: -60px;
}
@media screen and (max-width: 768px) {
  .msg__object04 {
    width: 50px;
    top: auto;
    left: 18px;
    bottom: -100px;
  }
}
.msg__object05 {
  bottom: -253px;
  left: -502px;
}
@media screen and (max-width: 1536px) {
  .msg__object05 {
    display: none;
  }
}

/* =============================================
  office
============================================= */
.office-topics__title {
  text-align: center;
  color: var(--color-primary);
  font-size: 61px;
  font-style: italic;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .office-topics__title {
    font-size: 26px;
  }
}
.office-topics__content {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 54.1% 1fr;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .office-topics__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .office-topics__content {
    gap: 20px;
    margin-top: 40px;
  }
}
.office-topics__content .image {
  position: relative;
}
.office-topics__content .image:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 160px;
  height: 160px;
  background: no-repeat url(../img/objects/object08.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .office-topics__content .image:before {
    width: 50px;
    height: 50px;
    top: -35px;
    left: 25px;
  }
}
.office-topics__content .image .img {
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .office-topics__content .image .img {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .office-topics__content .image .img {
    border-radius: 30px;
  }
}
.office-topics__content .text .headline {
  font-size: 26px;
  color: var(--color-primary);
  line-height: 1.9;
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-primary);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .office-topics__content .text .headline {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .office-topics__content .text .desc {
    font-size: 14px;
  }
}
.office-place__content {
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .office-place__content {
    margin-bottom: 70px;
  }
}
.office-place__content:last-child {
  margin-bottom: 0;
}
.office-map {
  border-radius: 30px;
  overflow: clip;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .office-map {
    margin: 20px auto 0;
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    border-radius: 20px;
  }
}
.office-map:last-child {
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .office-map:last-child {
    margin: 50px auto 0;
  }
}
.office-map .body {
  background-color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .office-map .body {
    display: block;
    padding: 25px 20px;
    min-height: auto;
  }
}
.office-map .body__in {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .office-map .body__in {
    padding: 0;
  }
}
.office-map .body__title {
  text-align: left;
  color: #38a1db;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .office-map .body__title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .office-map .body__address {
    font-size: 14px;
  }
}
.office-map .map {
  width: 100%;
  height: 100%;
  aspect-ratio: 500/200;
}
@media screen and (max-width: 768px) {
  .office-map .map {
    height: auto;
    aspect-ratio: 305/200;
  }
}
.office__swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 80px;
  padding-bottom: 40px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .office__swiper {
    margin-top: 40px;
    padding-bottom: 30px;
  }
}
.office__swiper-wrapper {
  transition-timing-function: linear !important;
}
.office__swiper-slide {
  position: relative;
  width: 800px;
}
@media screen and (max-width: 768px) {
  .office__swiper-slide {
    width: calc(100% - 70px);
  }
}
.office__swiper-slide::after {
  position: absolute;
  content: "";
  background-color: #bfd1e2;
  width: 100%;
  height: 100%;
  top: 40px;
  left: 40px;
  z-index: -1;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .office__swiper-slide::after {
    top: 10px;
    left: 10px;
    border-radius: 30px;
  }
}
.office__swiper-image {
  border: 10px solid #fff;
  border-radius: 45px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .office__swiper-image {
    border-radius: 30px;
    border: 5px solid #fff;
  }
}
.office__swiper-name {
  position: absolute;
  left: -20px;
  bottom: 30px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  counter-reset: var(--color-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .office__swiper-name {
    font-size: 13px;
    width: 80px;
    height: 80px;
    left: -15px;
    bottom: -30px;
  }
}
.office__object01 {
  top: -422px;
  left: -542px;
}
@media screen and (max-width: 1536px) {
  .office__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .office__object01 {
    display: block;
    width: 138px;
    top: -110px;
    left: -70px;
  }
}
.office__object02 {
  top: -10px;
  right: -505px;
}
@media screen and (max-width: 1536px) {
  .office__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .office__object02 {
    display: block;
    width: 120px;
    top: 220px;
    right: -85px;
  }
}
.office__object03 {
  top: -75px;
  left: -300px;
}
@media screen and (max-width: 1536px) {
  .office__object03 {
    display: none;
  }
}
.office__object04 {
  display: none;
  left: -140px;
  top: -33px;
}
@media screen and (max-width: 768px) {
  .office__object04 {
    display: block;
  }
}
.office__object05 {
  top: -90px;
  right: -800px;
}
@media screen and (max-width: 1536px) {
  .office__object05 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .office__object05 {
    display: block;
    width: 146px;
    top: -60px;
    right: -90px;
  }
}
.office__object06 {
  bottom: -240px;
  left: -670px;
}
@media screen and (max-width: 1536px) {
  .office__object06 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .office__object06 {
    display: block;
    width: 38px;
    bottom: auto;
    top: 0px;
    left: 15px;
  }
}
.office__object07 {
  bottom: -100px;
  right: -160px;
  display: none;
}
@media screen and (max-width: 768px) {
  .office__object07 {
    display: block;
  }
}

/* =============================================
  interview
============================================= */
.int-crosstalk__list {
  margin: 100px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list {
    margin: 70px auto 0;
  }
}
.int-crosstalk__list .item {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item {
    margin-bottom: 40px;
  }
}
.int-crosstalk__list .item:last-child {
  margin-bottom: 0;
}
.int-crosstalk__list .item__image {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  display: block;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__image {
    border-radius: 30px;
  }
}
.int-crosstalk__list .item__image::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 42px;
  height: 42px;
  background: no-repeat url(../img/icon-arrow-white-active.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__image::after {
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
  }
}
.int-crosstalk__list .item__image:hover img {
  transform: scale(1.1);
}
.int-crosstalk__list .item__image img {
  transition: transform ease 0.3s;
}
.int-crosstalk__list .item__body {
  width: calc(100% - 210px);
  margin-top: 50px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__body {
    width: 100%;
    margin-top: -25px;
  }
}
.int-crosstalk__list .item__headline {
  position: relative;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__headline {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: flex-end;
  }
}
.int-crosstalk__list .item__number {
  color: var(--color-primary);
  font-size: 150px;
  font-style: italic;
  line-height: 0.8;
  position: absolute;
  top: 0;
  left: -210px;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__number {
    position: static;
    font-size: 100px;
  }
}
.int-crosstalk__list .item__title {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__title {
    font-size: 20px;
  }
}
.int-crosstalk__list .item__desc {
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .int-crosstalk__list .item__desc {
    font-size: 14px;
  }
}
.int-member__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px 15px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .int-member__list {
    grid-template-columns: 320px;
    justify-content: center;
    margin-top: 70px;
    gap: 50px;
  }
}
.int-member__list .item {
  display: block;
  transition: opacity ease 0.3s;
  position: relative;
}
.int-member__list .item:hover {
  opacity: 0.7;
}
.int-member__list .item::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .int-member__list .item::after {
    content: "";
    position: absolute;
    display: block;
    pointer-events: none;
    cursor: none;
  }
}
.int-member__list .item:nth-child(2)::after {
  top: -76px;
  left: -90px;
  width: 86px;
  height: 86px;
  background: no-repeat url(../img/objects/object01.svg) center center/contain;
}
.int-member__list .item:nth-child(3)::after {
  top: -76px;
  right: 5px;
  width: 50px;
  height: 50px;
  background: no-repeat url(../img/objects/object08.svg) center center/contain;
}
.int-member__list .item:nth-child(4)::after {
  top: -20px;
  left: -101px;
  width: 120px;
  height: 62px;
  background: no-repeat url(../img/objects/object04.svg) center center/contain;
}
.int-member__list .item:nth-child(5)::after {
  top: -68px;
  right: -30px;
  width: 38px;
  height: 38px;
  background: no-repeat url(../img/objects/object01.svg) center center/contain;
}
.int-member__list .item:nth-child(6)::after {
  top: -37px;
  left: -24px;
  width: 26px;
  height: 26px;
  background: no-repeat url(../img/objects/object03.svg) center center/contain;
}
.int-member__list .item__head {
  position: relative;
  transition: transform ease 0.9s;
}
.int-member__list .item__number {
  position: absolute;
  top: 0;
  left: 30px;
  color: var(--color-primary);
  font-style: italic;
  font-size: 70px;
}
@media screen and (max-width: 1000px) {
  .int-member__list .item__number {
    left: 0px;
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .int-member__list .item__number {
    left: 30px;
    top: 0;
    font-size: 66px;
  }
}
.int-member__list .item__year {
  position: absolute;
  bottom: 30px;
  right: 25px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  font-size: 17px;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 1000px) {
  .int-member__list .item__year {
    right: 15px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .int-member__list .item__year {
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 25px;
  }
}
.int-member__list .item__text {
  margin-top: 10px;
  font-size: 18px;
  transition: color ease 0.3s;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .int-member__list .item__text {
    font-size: 15px;
    margin-top: 5px;
  }
}
.int-member__list .item__profile {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 14px;
  position: relative;
  transition: color ease 0.3s;
  color: #7e7e7e;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .int-member__list .item__profile {
    margin-top: 10px;
    font-size: 13px;
  }
}
.int-member__list .item__profile::before {
  content: "";
  width: 13px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  top: 15px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .int-member__list .item__profile::before {
    top: 12px;
  }
}
.int-member__list .item__profile span {
  font-size: 17px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .int-member__list .item__profile span {
    font-size: 14px;
  }
}
.int-fv {
  height: 852px;
  overflow-x: clip;
  background: linear-gradient(180deg, rgba(123, 195, 131, 0.15) 0%, rgba(255, 228, 80, 0.15) 100%);
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .int-fv {
    height: auto;
    padding-top: 80px;
    padding-bottom: 25px;
  }
}
.int-fv__inner {
  position: relative;
  height: 100%;
}
.int-fv__number {
  display: none;
}
@media screen and (max-width: 768px) {
  .int-fv__number {
    display: block;
    position: absolute;
    top: -25px;
    right: 20px;
    font-size: 100px;
    color: var(--color-primary);
    font-style: italic;
  }
}
.int-fv__title {
  color: var(--color-primary);
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 35px;
  line-height: 1.8;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 5px;
}
@media screen and (max-width: 1000px) {
  .int-fv__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .int-fv__title {
    position: static;
    font-size: 19px;
    letter-spacing: 2px;
  }
}
.int-fv__image {
  position: absolute;
  top: 0;
  left: 55%;
  transform: translateX(-50%);
  width: 65.5%;
}
@media screen and (max-width: 1000px) {
  .int-fv__image {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .int-fv__image {
    position: static;
    margin: 0 auto;
    transform: none;
    width: 456px;
  }
}
@media screen and (max-width: 450px) {
  .int-fv__image {
    width: 121.6vw;
    transform: translateX(-10.6666666667vw);
  }
}
.int-fv__image img {
  max-width: none;
}
.int-fv__profile {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .int-fv__profile {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -150px;
  }
}
.int-fv__profile .year {
  background-color: var(--color-primary);
  color: #fff;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .int-fv__profile .year {
    width: 70px;
    height: 70px;
  }
}
.int-fv__profile .name {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .int-fv__profile .name {
    font-size: 11px;
  }
}
.int-fv__profile .name span {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .int-fv__profile .name span {
    font-size: 19px;
  }
}
.int-fv__profile .depart {
  margin-top: 20px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .int-fv__profile .depart {
    font-size: 11px;
  }
}
.int-fv__profile .university {
  font-size: 15px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .int-fv__profile .university {
    font-size: 11px;
  }
}
.int-fv__profile .university::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  height: 1px;
  width: 45px;
  background-color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .int-fv__profile .university::before {
    width: 30px;
  }
}
.int-fv__object01 {
  bottom: -74px;
  left: -210px;
}
@media screen and (max-width: 1536px) {
  .int-fv__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-fv__object01 {
    display: block;
    width: 50px;
    left: 35px;
    bottom: 35px;
  }
}
.int-fv__object02 {
  top: 65px;
  right: -437px;
}
@media screen and (max-width: 1536px) {
  .int-fv__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-fv__object02 {
    display: block;
    width: 86px;
    top: auto;
    left: -45px;
    bottom: 125px;
  }
}
.int-fv__object03 {
  bottom: -65px;
  right: -630px;
}
@media screen and (max-width: 1536px) {
  .int-fv__object03 {
    display: none;
  }
}
.int-fv__object04 {
  display: none;
  top: 110px;
  right: -117px;
}
@media screen and (max-width: 768px) {
  .int-fv__object04 {
    display: block;
  }
}
.int-story {
  padding: 100px 0;
  border-radius: 0 190px 0 190px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .int-story {
    border-radius: 0 100px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .int-story {
    padding: 70px 0;
    border-radius: 0 50px 0 50px;
    margin-bottom: 0;
  }
}
.int-story__list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .int-story__list {
    margin-top: 30px;
  }
}
.int-story__list .item {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .int-story__list .item {
    padding: 10px 20px;
    margin-bottom: 10px;
  }
}
.int-story__list .item:last-child {
  margin-bottom: 0;
}
.int-story__list .item__year {
  color: var(--color-primary);
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .int-story__list .item__year {
    font-size: 20px;
  }
}
.int-story__list .item__text {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .int-story__list .item__text {
    font-size: 14px;
  }
}
.int-section__title {
  font-size: 28px;
  padding-left: 35px;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .int-section__title {
    font-size: 22px;
    padding-left: 25px;
  }
}
.int-section__title::before {
  content: "";
  position: absolute;
  top: 9.2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: no-repeat url(../img/icon-section-title.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .int-section__title::before {
    width: 15px;
    height: 15px;
    top: 9.5px;
  }
}
.int-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.int-qa__content {
  padding: 100px 0;
  border-bottom: 2px solid #ccc;
}
@media screen and (max-width: 768px) {
  .int-qa__content {
    padding: 50px 0;
  }
}
.int-qa__content--border-none {
  border-bottom: none;
}
.int-qa__answer {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .int-qa__answer {
    margin-top: 20px;
    font-size: 14px;
  }
}
.int-qa__image {
  margin: 50px 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .int-qa__image {
    margin: 0;
  }
}
.int-qa__image img {
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .int-qa__image img {
    border-radius: 30px;
  }
}
.int-chart {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .int-chart {
    padding-top: 50px;
  }
}
.int-chart__inner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 7%;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .int-chart__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.int-chart__desc {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .int-chart__desc {
    margin-top: 20px;
    font-size: 14px;
  }
}
.int-chart__image {
  padding-top: 15px;
  text-align: center;
}
.int-schedule {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .int-schedule {
    margin-top: 60px;
  }
}
.int-schedule__content {
  padding: 150px 100px;
}
@media screen and (max-width: 1000px) {
  .int-schedule__content {
    padding: 150px 40px;
  }
}
@media screen and (max-width: 768px) {
  .int-schedule__content {
    padding: 60px 20px;
  }
}
.int-schedule__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 42.2% 1fr;
  gap: 6.7%;
}
@media screen and (max-width: 768px) {
  .int-schedule__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 45px;
  }
}
.int-schedule__item {
  padding-bottom: 40px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .int-schedule__item {
    padding-bottom: 20px;
    padding-left: 35px;
  }
}
.int-schedule__item::before {
  content: "";
  position: absolute;
  top: 5.5px;
  left: 0;
  background-color: var(--color-primary);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.int-schedule__item::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 2px;
  height: 100%;
  background: repeat-y url(../img/dotted-schedule.png) top center/contain;
  z-index: -1;
}
.int-schedule__item:last-child {
  margin-bottom: 0;
}
.int-schedule__item:last-child::after {
  content: none;
}
.int-schedule__meta {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .int-schedule__meta {
    gap: 10px;
  }
}
.int-schedule__time {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  display: inline-block;
  min-width: 60px;
  height: 26px;
  line-height: 24px;
  border-radius: 13px;
  text-align: center;
}
.int-schedule__title {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: -5px;
}
.int-schedule__desc {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .int-schedule__desc {
    font-size: 14px;
  }
}
.int-schedule__image img {
  border-radius: 30px;
}
.int-private {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .int-private {
    margin-top: 60px;
  }
}
.int-private__content {
  background-color: #fdeff2;
  padding: 100px;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .int-private__content {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 768px) {
  .int-private__content {
    border-radius: 30px;
    padding: 60px 20px;
  }
}
.int-private__desc {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .int-private__desc {
    margin-top: 20px;
    font-size: 14px;
  }
}
.int-private__image {
  margin-top: 30px;
}
.int-private__image img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .int-private__image img {
    width: 100%;
  }
}
.int-message {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .int-message {
    margin-top: 60px;
  }
}
.int-message__content {
  background-color: #ebf6ec;
  padding: 100px;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .int-message__content {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 768px) {
  .int-message__content {
    padding: 60px 20px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .int-message__desc {
    font-size: 14px;
  }
}
.int-message__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .int-message__grid {
    grid-template-columns: 1fr 200px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .int-message__grid {
    margin-top: 20px;
    gap: 20px;
    justify-content: center;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .int-message__image {
    text-align: center;
  }
}
.int-notes {
  font-size: 14px;
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .int-notes {
    font-size: 10px;
    margin-top: 15px;
  }
}
.int-other {
  padding: 150px 0 200px;
}
@media screen and (max-width: 768px) {
  .int-other {
    padding: 70px 0 130px;
  }
}
.int__object01 {
  top: 95px;
  left: -415px;
}
@media screen and (max-width: 1536px) {
  .int__object01 {
    display: none;
  }
}
.int__object02 {
  bottom: -286px;
  right: -126px;
}
@media screen and (max-width: 1536px) {
  .int__object02 {
    display: none;
  }
}
.int__object03 {
  top: 1025px;
  left: -708px;
}
@media screen and (max-width: 1536px) {
  .int__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int__object03 {
    display: block;
    width: 238px;
    top: -135px;
    left: auto;
    right: -112px;
  }
}
.int-single__object01 {
  top: -236px;
  right: -600px;
}
@media screen and (max-width: 1536px) {
  .int-single__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object01 {
    display: block;
    width: 146px;
    top: -65px;
    right: -80px;
  }
}
.int-single__object02 {
  bottom: -300px;
  left: -835px;
}
@media screen and (max-width: 1536px) {
  .int-single__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object02 {
    display: block;
    width: 238px;
    bottom: auto;
    top: -22px;
    left: -124px;
  }
}
.int-single__object03 {
  bottom: 0px;
  right: -200px;
}
@media screen and (max-width: 1536px) {
  .int-single__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object03 {
    display: block;
    width: 26px;
    bottom: auto;
    top: -13px;
    right: 45px;
  }
}
.int-single__object04 {
  top: -300px;
  right: -550px;
}
@media screen and (max-width: 1536px) {
  .int-single__object04 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object04 {
    display: block;
    width: 86px;
    top: 0px;
    right: -15px;
  }
}
.int-single__object05 {
  top: -20px;
  left: -317px;
}
@media screen and (max-width: 1536px) {
  .int-single__object05 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object05 {
    display: block;
    width: 50px;
    top: -25px;
    left: 40px;
  }
}
.int-single__object06 {
  top: -380px;
  right: -751px;
}
@media screen and (max-width: 1536px) {
  .int-single__object06 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .int-single__object06 {
    display: block;
    width: 238px;
    top: -80px;
    right: -142px;
  }
}
.int-single__object07 {
  bottom: -125px;
  right: -260px;
}
@media screen and (max-width: 1536px) {
  .int-single__object07 {
    display: none;
  }
}
.int-single__object08 {
  bottom: -90px;
  right: -560px;
}
@media screen and (max-width: 1536px) {
  .int-single__object08 {
    display: none;
  }
}
.int-single__object09 {
  top: 425px;
  left: -560px;
}
@media screen and (max-width: 1536px) {
  .int-single__object09 {
    display: none;
  }
}
.int-single__object10 {
  bottom: 400px;
  left: -164px;
}
@media screen and (max-width: 1536px) {
  .int-single__object10 {
    display: none;
  }
}
.int-single__object11 {
  top: -142px;
  right: -222px;
}
@media screen and (max-width: 1536px) {
  .int-single__object11 {
    display: none;
  }
}
.int-single__object12 {
  top: -30px;
  left: -560px;
}
@media screen and (max-width: 1536px) {
  .int-single__object12 {
    display: none;
  }
}
.int-single__object13 {
  display: none;
  top: -41px;
  right: -41px;
}
@media screen and (max-width: 768px) {
  .int-single__object13 {
    display: block;
  }
}
.int-single__object14 {
  display: none;
  top: -19px;
  left: 25px;
}
@media screen and (max-width: 768px) {
  .int-single__object14 {
    display: block;
  }
}

/* =============================================
  business
============================================= */
.biz-support {
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .biz-support {
    padding-top: 80px;
  }
}
.biz-support__map {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .biz-support__map {
    margin-top: 90px;
  }
}
.biz-region__figure {
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .biz-region__figure {
    margin: 60px auto 0;
  }
}
.biz-project__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .biz-project__list {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .biz-project__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.biz-project__item-image {
  border-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .biz-project__item-image {
    border-radius: 45px;
  }
}
@media screen and (max-width: 768px) {
  .biz-project__item-image {
    border-radius: 30px;
  }
}
.biz-project__item-title {
  color: var(--color-primary);
  font-size: 26px;
  margin-top: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .biz-project__item-title {
    font-size: 20px;
    margin-top: 20px;
  }
}
.biz-project__item-desc {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .biz-project__item-desc {
    font-size: 14px;
    margin-top: 10px;
  }
}
.biz-project__message {
  margin-top: 80px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .biz-project__message {
    margin-top: 60px;
    border-radius: 10px;
    font-size: 14px;
    padding: 20px;
    text-align: justify;
  }
}
.biz__object01 {
  top: -20px;
  right: -156px;
}
@media screen and (max-width: 1536px) {
  .biz__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .biz__object01 {
    display: block;
    width: 34px;
    top: -34px;
    right: 24px;
  }
}
.biz__object02 {
  top: -432px;
  left: -594px;
}
@media screen and (max-width: 1536px) {
  .biz__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .biz__object02 {
    display: block;
    width: 138px;
    top: -115px;
    left: -69px;
  }
}
.biz__object03 {
  top: -109px;
  right: -580px;
}
@media screen and (max-width: 1536px) {
  .biz__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .biz__object03 {
    display: block;
    width: 146px;
    top: -10px;
    right: -79px;
  }
}

/* =============================================
  news
============================================= */
.news__inner {
  display: grid;
  grid-template-columns: 166px 1fr;
  gap: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .news__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .news__inner {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}
.news__categories {
  position: sticky;
  top: 150px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .news__categories {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }
}
.news__categories-item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news__categories-item {
    margin-bottom: 0;
  }
}
.news__categories-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .news__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }
}
.news__item {
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 35px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid #939393;
}
@media screen and (max-width: 768px) {
  .news__item {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}
.news__item:first-child {
  padding: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .news__item:first-child {
    padding: 0;
  }
}
.news__item-thumbnail {
  border-radius: 25px;
  overflow: hidden;
  display: block;
  transition: opacity ease 0.3s;
  border: 1px solid #939393;
}
@media screen and (max-width: 768px) {
  .news__item-thumbnail {
    border-radius: 10px;
  }
}
.news__item-thumbnail:hover {
  opacity: 0.7;
}
.news__item-thumbnail img {
  aspect-ratio: 266/170;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__item-category {
  font-size: 15px;
  display: inline-block;
  min-width: 124px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  background-color: #ebebeb;
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .news__item-category {
    font-size: 15px;
  }
}
.news__item-category:hover {
  color: #fff;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .news__item-date {
    font-size: 14px;
  }
}
.news__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .news__item-meta {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.news__item-title {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news__item-title {
    font-size: 15px;
  }
}
.news__item-title a {
  transition: color ease 0.3s;
}
.news__item-title a:hover {
  color: var(--color-primary);
}

/* =============================================
  news entry
============================================= */
.entry__meta {
  display: flex;
  align-items: center;
  gap: 15;
}
.entry__category {
  font-size: 15px;
  display: inline-block;
  min-width: 124px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  background-color: #ebebeb;
  transition: color ease 0.3s, background-color ease 0.3s;
}
.entry__category:hover {
  color: #fff;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .entry__date {
    font-size: 14px;
  }
}
.entry__meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.entry__title {
  font-size: 29px;
  margin-top: 30px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .entry__title {
    font-size: 18px;
  }
}
.entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6, .entry__body p, .entry__body img, .entry__body iframe, .entry__body ol, .entry__body ul, .entry__body dl, .entry__body table, .entry__body video, .entry__body figure {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .entry__body h2, .entry__body h3, .entry__body h4, .entry__body h5, .entry__body h6, .entry__body p, .entry__body img, .entry__body iframe, .entry__body ol, .entry__body ul, .entry__body dl, .entry__body table, .entry__body video, .entry__body figure {
    font-size: 14px;
    margin-top: 20px;
  }
}
.entry__body ul {
  list-style-type: disc;
  padding-left: 1em;
}
.entry__body ol {
  list-style-type: decimal;
  padding-left: 1em;
}
.entry__body a {
  color: var(--color-primary);
  transition: opacity ease 0.3s;
}
.entry__body a:hover {
  opacity: 0.7;
}
.entry__buttons {
  margin-top: 75px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry__buttons {
    margin-top: 45px;
  }
}
.entry__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.entry__nav--prev {
  left: 0;
}
.entry__nav--next {
  right: 0;
}
.entry__nav a {
  font-size: 15px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .entry__nav a {
    font-size: 14px;
    gap: 5px;
  }
}
.entry__nav a:hover .icon::before {
  opacity: 0;
}
.entry__nav a .icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .entry__nav a .icon {
    width: 28px;
    height: 28px;
  }
}
.entry__nav a .icon::before, .entry__nav a .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: opacity ease 0.3s;
}
.entry__nav a .icon::before {
  background-color: #fff;
  border: 1px solid #9a9a9a;
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: url(../img/icon-paginate.svg) center/10px 10px no-repeat, #fff;
}
.entry__nav a .icon::after {
  width: 100%;
  height: 100%;
  background: url(../img/icon-paginate-active.svg) center/10px 10px no-repeat, linear-gradient(90deg, #00a3e6 0%, #00478d 100%);
  z-index: -2;
}
.entry__nav a .icon--prev {
  transform: rotate(180deg);
}

/* =============================================
  understand
============================================= */
.under-charm__item {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  gap: 70px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .under-charm__item {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .under-charm__item {
    margin-top: 40px;
    gap: 50px;
    flex-direction: column;
  }
}
.under-charm__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .under-charm__item:nth-child(even) {
    flex-direction: column;
  }
}
.under-charm__item:nth-child(n+2) {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .under-charm__item:nth-child(n+2) {
    margin-top: 70px;
  }
}
.under-charm__item-image {
  width: 52.5%;
  border-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .under-charm__item-image {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .under-charm__item-image {
    width: 100%;
    border-radius: 25px;
  }
}
.under-charm__item-body {
  width: calc(47.5% - 70px);
  position: relative;
  padding-top: 45px;
}
@media screen and (max-width: 1000px) {
  .under-charm__item-body {
    width: calc(55% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .under-charm__item-body {
    width: 100%;
    padding-top: 0;
  }
}
.under-charm__item-number {
  font-size: 120px;
  font-style: italic;
  color: #ccdae8;
  position: absolute;
  top: -35px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .under-charm__item-number {
    font-size: 90px;
    top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .under-charm__item-number {
    font-size: 70px;
    top: -42px;
  }
}
.under-charm__item-headline {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  font-size: 28px;
  padding-bottom: 25px;
  padding-right: 160px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .under-charm__item-headline {
    font-size: 24px;
    padding-right: 130px;
  }
}
@media screen and (max-width: 768px) {
  .under-charm__item-headline {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
.under-charm__item-desc {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .under-charm__item-desc {
    margin-top: 40px;
    font-size: 14px;
  }
}
.under-charm__item-link {
  display: block;
  background: #000;
  color: #fff;
  margin-top: 30px;
  padding: 30px 65px 30px 30px;
  border-radius: 30px;
  position: relative;
  transition: opacity ease 0.3s;
  min-height: 160px;
}
@media screen and (max-width: 768px) {
  .under-charm__item-link {
    margin-top: 40px;
    border-radius: 25px;
    padding: 20px 75px 20px 20px;
    min-height: 110px;
  }
}
.under-charm__item-link--yellowgreen {
  background-color: #aacf4d;
}
.under-charm__item-link--purple {
  background-color: #7f90c7;
}
.under-charm__item-link--green {
  background-color: #7bc383;
}
.under-charm__item-link--orange {
  background-color: #f6ae54;
}
.under-charm__item-link--pink {
  background-color: #f091a7;
}
.under-charm__item-link--skyblue {
  background-color: #00a3e6;
}
.under-charm__item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 34px;
  height: 34px;
  background: no-repeat url(../img/icon-charm-link.svg) center center/contain;
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .under-charm__item-link::after {
    width: 27px;
    height: 27px;
    right: 25px;
  }
}
.under-charm__item-link:hover {
  opacity: 0.7;
}
.under-charm__item-link .text01 {
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .under-charm__item-link .text01 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.under-charm__item-link .text02 {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .under-charm__item-link .text02 {
    font-size: 11px;
    line-height: 1.6;
  }
}
.under__object01 {
  top: -140px;
  left: -200px;
}
@media screen and (max-width: 768px) {
  .under__object01 {
    width: 50px;
    top: -30px;
    left: 20px;
  }
}
.under__object02 {
  bottom: -230px;
  left: -472px;
}
@media screen and (max-width: 768px) {
  .under__object02 {
    width: 138px;
    bottom: auto;
    left: auto;
    top: -60px;
    right: -60px;
  }
}
.under__object03 {
  display: none;
}
@media screen and (max-width: 768px) {
  .under__object03 {
    display: block;
    top: -45px;
    left: -40px;
  }
}

/* =============================================
  challenged
============================================= */
.try-thinking {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .try-thinking {
    padding-top: 70px;
  }
}
.try-thinking__image {
  margin-top: 80px;
  border-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .try-thinking__image {
    border-radius: 30px;
    margin-top: 30px;
  }
}
.try-thinking__boxes {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .try-thinking__boxes {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.try-thinking__box {
  background-color: #fff;
  border-radius: 60px;
  padding: 45px 40px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .try-thinking__box {
    border-radius: 30px;
    padding: 25px;
    min-height: 100px;
  }
}
.try-thinking__box-title {
  color: var(--color-primary);
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .try-thinking__box-title {
    font-size: 16px;
  }
}
.try-case {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .try-case {
    padding-top: 70px;
  }
}
.try-case__boxes {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .try-case__boxes {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.try-case__box {
  background-color: #fff;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 250px;
}
@media screen and (max-width: 768px) {
  .try-case__box {
    border-radius: 30px;
    padding: 20px;
    min-height: 145px;
  }
}
.try-case__box-title {
  text-align: center;
  color: var(--color-primary);
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .try-case__box-title {
    font-size: 14px;
  }
}
.try-case__box-title span {
  font-size: 12px;
  vertical-align: super;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .try-case__box-title span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .try-case__box-image {
    max-width: 60px;
  }
}
.try-case__notes {
  margin-top: 20px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .try-case__notes {
    font-size: 10px;
    text-align: center;
  }
}
.try-flex {
  padding: 200px 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  .try-flex {
    padding: 70px 20px;
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.try-results__list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
}
@media screen and (max-width: 768px) {
  .try-results__list {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
.try-results__item {
  background-color: #fff;
  font-size: 24px;
  color: var(--color-primary);
  border-radius: 20px;
  text-align: center;
  height: 100px;
  line-height: 100px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .try-results__item {
    font-size: 14px;
    height: 75px;
    line-height: 75px;
  }
}
.try-work__box {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 60px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .try-work__box {
    margin-top: 20px;
    border-radius: 30px;
    padding: 30px 20px;
  }
}
.try-work__box-title {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .try-work__box-title {
    font-size: 18px;
  }
}
.try-work__box-content {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .try-work__box-content {
    margin-top: 15px;
  }
}
.try-work__box-label {
  background-color: #ccedfa;
  color: var(--color-primary);
  height: 25px;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .try-work__box-label {
    font-size: 14px;
  }
}
.try-work__box-text {
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  .try-work__box-text {
    font-size: 14px;
  }
}
.try-work__item {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .try-work__item {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.try-work__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.try-work__btn {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .try-work__btn {
    margin-top: 30px;
  }
}
.try-other__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .try-other__list {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}
.try-other__item {
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 15px 15px rgba(40, 40, 40, 0.36);
  position: relative;
  display: block;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .try-other__item {
    border-radius: 8vw;
    box-shadow: 2.6666666667vw 2.6666666667vw rgba(40, 40, 40, 0.36);
  }
}
.try-other__item:hover {
  opacity: 0.7;
}
.try-other__item::after {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  right: 35px;
  bottom: 30px;
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .try-other__item::after {
    width: 8vw;
    height: 8vw;
    right: 5.3333333333vw;
    bottom: 2.6666666667vw;
  }
}
.try-other__item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 23px;
  width: calc(100% - 60px);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .try-other__item-title {
    line-height: 1.6;
    font-size: 4.8vw;
  }
}
.try-other__item-image {
  height: 100%;
}
.try__object01 {
  bottom: -320px;
  left: -420px;
}
@media screen and (max-width: 1536px) {
  .try__object01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .try__object01 {
    display: block;
    width: 120px;
    bottom: -110px;
    left: -30px;
  }
}
.try__object02 {
  top: 0;
  right: -485px;
}
@media screen and (max-width: 1536px) {
  .try__object02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .try__object02 {
    display: block;
    width: 138px;
    top: auto;
    bottom: -145px;
    right: -70px;
  }
}
.try__object03 {
  top: 0;
  left: -315px;
}
@media screen and (max-width: 1536px) {
  .try__object03 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .try__object03 {
    display: block;
    width: 50px;
    top: auto;
    bottom: -100px;
    left: 20px;
  }
}
.try__object04 {
  top: -320px;
  right: -500px;
}
@media screen and (max-width: 1536px) {
  .try__object04 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .try__object04 {
    display: block;
    width: 146px;
    top: -90px;
    right: -40px;
  }
}
.try__object05 {
  top: -420px;
  left: -620px;
}
@media screen and (max-width: 1536px) {
  .try__object05 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .try__object05 {
    display: block;
    width: 172px;
    top: -95px;
    left: -50px;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background-color: var(--color-primary);
  padding: 85px 0;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__entry {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  max-width: 800px;
  width: calc(100% - 80px);
  height: 300px;
  line-height: 300px;
  border-radius: 60px;
  color: #fff;
  background-image: var(--gradient-pink-orange);
  text-align: center;
  transition: background ease 0.3s;
  background-position: 0% 50%;
  background-size: 200% 100%;
  box-shadow: 15px 15px rgba(40, 40, 40, 0.36);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer__entry {
    top: -90px;
    width: calc(100% - 40px);
    height: 180px;
    line-height: 180px;
    border-radius: 30px;
    box-shadow: 10px 10px rgba(40, 40, 40, 0.36);
  }
}
.footer__entry:hover {
  background-position: 100% 0%;
}
.footer__entry span {
  font-size: 43px;
  display: inline-block;
  padding-right: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__entry span {
    font-size: 26px;
    padding-right: 60px;
  }
}
.footer__entry span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: no-repeat url(../img/icon-arrow-white.svg) center center/contain;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 768px) {
  .footer__entry span::after {
    width: 44px;
    height: 44px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__body {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__body {
    gap: 25px;
  }
}
.footer__buttons {
  display: grid;
  margin-top: -120px;
  grid-template-columns: 200px 200px;
  gap: 60px 10px;
}
@media screen and (max-width: 1200px) {
  .footer__buttons {
    margin-top: 40px;
    grid-template-columns: 200px 200px 200px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__buttons {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.footer__nav {
  display: flex;
  gap: 55px;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 85px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #80a3c6;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    border-bottom: 1px solid #80a3c6;
  }
}
.footer__nav-label {
  color: #80a3c6;
  margin-bottom: 15px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-label {
    padding: 15px 20px;
    margin-bottom: 0;
    cursor: pointer;
    pointer-events: auto;
  }
}
.footer__nav-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-toggle {
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: background-color ease 0.4s;
  }
  .footer__nav-toggle::before, .footer__nav-toggle::after {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color ease 0.4s, transform ease 0.4s;
  }
  .footer__nav-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .footer__nav-toggle.is-active {
    background-color: #fff;
  }
  .footer__nav-toggle.is-active::before {
    background-color: var(--color-primary);
  }
  .footer__nav-toggle.is-active::after {
    background-color: var(--color-primary);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.footer__nav-submenu {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__nav-submenu {
    max-height: 0px;
    transition: max-height ease-in-out 0.4s;
    overflow: hidden;
  }
  .footer__nav-submenu.is-active {
    max-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-submenu-inner {
    padding: 0px 20px 5px 20px;
  }
}
.footer__nav-item {
  margin-bottom: 10px;
}
.footer__nav-link {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  position: relative;
  padding-left: 17px;
  transition: opacity ease 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
.footer__nav-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 8.2px;
  left: 0;
}
.footer__copyright {
  color: #fff;
  font-size: 12px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 70px;
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer__object.is-top {
    display: none;
  }
}
.footer__object01 {
  top: -80px;
  left: 135px;
}
@media screen and (max-width: 1536px) {
  .footer__object01 {
    left: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__object01 {
    left: -15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__object01 {
    display: none;
  }
}

/* =============================================
  animations
============================================= */
@keyframes fluffyAnimation {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fluffySpAnimation {
  0% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollDownAnimation {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes slideAnimation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes makerAnimation {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}