@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans&family=Poppins:wght@400;500;600;700&display=swap");
.show-on-pc {
  display: none;
}
@media screen and (min-width: 481px) {
  .show-on-pc {
    display: block;
  }
}

.show-on-sp {
  display: block;
}
@media screen and (min-width: 481px) {
  .show-on-sp {
    display: none;
  }
}

body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: #16163F;
  background: #F4F6FA;
  position: relative;
}
body.page-template-page-career, body.page-template-page-contact-us {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

figure {
  margin: 0;
}

p {
  font-family: "Open Sans", sans-serif;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  top: 10px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: calc(100% - 20px);
  padding: 0px 24px;
}
@media screen and (min-width: 481px) {
  .header {
    padding: 0px 32px;
  }
}
@media screen and (min-width: 835px) {
  .header {
    padding: 0px 12px 0 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .header {
    padding: 0px 32px;
  }
}
@media screen and (min-width: 1240px) {
  .header {
    padding: 0px 12px 0 30px;
  }
}
.header .nav-menu__item > a {
  color: #16163F;
}
.header .nav-menu__item > a:hover {
  color: #00F;
}
@media screen and (min-width: 835px) {
  .header .nav-menu__item > a {
    color: #16163F;
  }
}
.header .nav-menu__item.has-children > span {
  color: #16163F;
}
.header .language-toggle {
  color: #16163F;
}
.header .language-toggle select {
  font-size: 14px;
  line-height: 21px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  appearance: none;
  padding-left: 32px;
  -webkit-padding-start: 32px;
  background: transparent;
  border: none;
  z-index: 2;
}
.header .bogo-language-switcher {
  height: 0;
  opacity: 0;
}
.header .header__hamburger span {
  background-color: #16163F;
}
.header .header__inner {
  padding: 12px 0;
}
.header .header__logo .show-on-pc {
  content: url("../images/common/logo-blue-pc.webp");
}
.header .header__logo .show-on-sp {
  content: url("../images/common/logo-blue-sp.webp");
}
.header--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media screen and (min-width: 835px) {
  .header--transparent .nav-menu__item > a {
    color: #fff;
  }
}
@media screen and (min-width: 835px) {
  .header--transparent .nav-menu__item.has-children > span {
    color: #fff;
  }
}
.header--transparent .language-toggle {
  color: #fff;
}
.header--transparent .header__hamburger span {
  background-color: #fff;
}
.header--transparent .header__logo .show-on-pc {
  content: url("../images/common/logo-white-pc.webp");
}
.header--transparent .header__logo .show-on-sp {
  content: url("../images/common/logo-white-sp.webp");
}
@media screen and (min-width: 481px) {
  .header {
    padding: 0px 32px;
  }
}
.header__logo img {
  width: 78px;
}
@media screen and (min-width: 481px) {
  .header__logo img {
    width: 364px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 13px 13px 0px;
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .header__inner {
    padding: 12px 0;
  }
}
.header__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .language-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #16163F;
  font-size: 14px;
  width: 60px;
  position: relative;
}
.header .language-toggle .globe-icon img {
  width: 18px;
}
.header__contact {
  display: none;
}
@media screen and (min-width: 481px) {
  .header__contact {
    display: inline-block;
  }
}
.header__contact .contact-button {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  background-color: #00F;
  border: 2px solid #00F;
  color: #fff;
  padding: 8px 32px;
  border-radius: 40px;
  transition: all 0.4s;
}
.header__contact .contact-button:hover {
  background-color: #fff;
  color: #00F;
  border: 2px solid #00F;
}

.header__hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  padding: 7px 4px;
}
@media screen and (min-width: 835px) {
  .header__hamburger {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .header__hamburger {
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #5A5A69;
  position: absolute;
  transition: all 0.3s;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 16px);
  background-color: #fff;
  z-index: 90;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.nav-menu.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 835px) {
  .nav-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    background: none;
    width: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    overflow-y: visible;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 16px);
    background-color: #fff;
    z-index: 90;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    background: none;
    width: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    overflow-y: visible;
  }
}
.nav-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 835px) {
  .nav-menu__list {
    flex-direction: row;
    align-items: baseline;
    gap: 40px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__list {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__list {
    flex-direction: row;
    align-items: baseline;
    gap: 40px;
  }
}
.nav-menu__item {
  font-size: 17px;
}
@media screen and (min-width: 835px) {
  .nav-menu__item {
    position: relative;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__item {
    position: static;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__item {
    position: relative;
  }
}
@media screen and (min-width: 835px) {
  .nav-menu__item_contact {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__item_contact {
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__item_contact {
    display: none;
  }
}
.nav-menu__item > a {
  display: block;
  color: #16163F;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s;
}
.nav-menu__item > a:hover {
  color: #00F;
}
@media screen and (min-width: 835px) {
  .nav-menu__item > a {
    color: #fff;
  }
  .nav-menu__item > a:hover ~ .nav-menu__sub-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__item > a {
    color: #16163F !important;
  }
  .nav-menu__item > a:hover {
    opacity: 1;
    color: #00F !important;
  }
  .nav-menu__item > a:hover ~ .nav-menu__sub-list {
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__item > a:hover ~ .nav-menu__sub-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-menu__item.has-children {
  position: relative;
}
.nav-menu__item.has-children > span {
  position: relative;
  padding-left: 24px;
  color: #16163F;
}
.nav-menu__item.has-children > span:hover {
  color: #00F;
}
.nav-menu__item.has-children > span > svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.4s ease;
}
.nav-menu__item.has-children.active > span {
  color: #5A5A69;
}
.nav-menu__item.has-children.active > span > svg {
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (min-width: 1240px) {
  .nav-menu__item.has-children {
    margin-right: 20px;
  }
  .nav-menu__item.has-children > span {
    position: relative;
    padding-left: 0;
    color: #fff;
  }
  .nav-menu__item.has-children > span::before {
    content: none;
  }
  .nav-menu__item.has-children > span > svg {
    position: absolute;
    right: -25px;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    transition: transform 0.4s ease;
  }
  .nav-menu__item.has-children:hover .nav-menu__sub-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__item.has-children {
    margin-right: 0;
  }
  .nav-menu__item.has-children > span {
    position: relative;
    padding-left: 24px;
    color: #16163F !important;
  }
  .nav-menu__item.has-children > span:hover {
    color: #00F !important;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__item.has-children {
    margin-right: 20px;
  }
  .nav-menu__item.has-children > span {
    position: relative;
    padding-left: 0;
    color: #fff;
  }
  .nav-menu__item.has-children > span::before {
    content: none;
  }
  .nav-menu__item.has-children > span > svg {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.4s ease;
  }
  .nav-menu__item.has-children:hover .nav-menu__sub-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-menu__sub-list {
  display: block;
  padding-left: 24px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  text-indent: -24px;
  padding-left: 44px;
}
.nav-menu__sub-list.active {
  margin-top: 23px;
  max-height: 500px;
  opacity: 1;
}
.nav-menu__sub-list.active li a {
  pointer-events: auto;
}
@media screen and (min-width: 481px) {
  .nav-menu__sub-list {
    text-indent: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 835px) {
  .nav-menu__sub-list {
    position: absolute;
    top: 150%;
    left: -100px;
    max-height: 500px;
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    width: 310px;
  }
  .nav-menu__sub-list li {
    margin-top: 20px;
  }
  .nav-menu__sub-list li a {
    color: #16163F;
    transition: color 0.3s;
    display: block;
    padding-left: 0;
    pointer-events: auto;
    opacity: 1;
  }
  .nav-menu__sub-list li a::before {
    content: none;
  }
  .nav-menu__sub-list li a:hover {
    color: #00F;
  }
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__sub-list {
    display: block;
    padding-left: 24px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    position: relative;
    left: 0;
  }
}
.nav-menu__sub-list li {
  margin-top: 23px;
}
.nav-menu__sub-list li:first-child {
  margin-top: 0;
}
.nav-menu__sub-list li a {
  font-size: 17px;
  color: #16163F;
  position: relative;
  padding-left: 24px;
  pointer-events: none;
}
.nav-menu__sub-list li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon-arrow-blk.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.4s ease;
}
@media screen and (min-width: 481px) and (max-width: 1239px) {
  .nav-menu__sub-list {
    display: block;
    padding-left: 24px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    padding: 0;
  }
  .nav-menu__sub-list.active {
    margin-top: 23px;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding-left: 24px;
  }
  .nav-menu__sub-list.active li a {
    pointer-events: auto;
  }
  .nav-menu__sub-list li {
    margin-top: 23px;
  }
  .nav-menu__sub-list li:first-child {
    margin-top: 0;
  }
  .nav-menu__sub-list li a {
    font-size: 17px;
    color: #16163F;
    position: relative;
    padding-left: 24px;
    pointer-events: none;
  }
  .nav-menu__sub-list li a::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/common/icon-arrow-blk.webp) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 0.4s ease;
  }
}
@media screen and (min-width: 1240px) {
  .nav-menu__sub-list {
    position: absolute;
    top: 150%;
    left: 0;
    max-height: 500px;
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    width: 310px;
  }
  .nav-menu__sub-list li {
    margin-top: 20px;
  }
  .nav-menu__sub-list li a {
    color: #16163F;
    transition: color 0.3s;
    display: block;
    padding-left: 0;
    pointer-events: auto;
    opacity: 1;
  }
  .nav-menu__sub-list li a::before {
    content: none;
  }
  .nav-menu__sub-list li a:hover {
    color: #00F;
  }
}

/* コンタクトセクション */
.contact-section {
  background-color: #1A2792;
  padding: 60px 20px;
  position: relative;
}
@media screen and (min-width: 481px) {
  .contact-section {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .contact-section {
    padding: 120px 0;
  }
}
.contact-section .container {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 835px) {
  .contact-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
.contact-section .contact-content {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 835px) {
  .contact-section .contact-content {
    padding: 80px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: left;
  }
}
@media screen and (min-width: 835px) {
  .contact-section .contact-content__inner_en {
    width: 68%;
  }
}
.contact-section .contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #1A2792;
  line-height: 150%;
  margin-bottom: 8px;
}
@media screen and (min-width: 481px) {
  .contact-section .contact-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .contact-section .contact-title {
    font-size: 32px;
  }
}
.contact-section .contact-text {
  font-size: 16px;
  line-height: 1.8;
  color: #16163F;
  margin-bottom: 32px;
}
@media screen and (min-width: 835px) {
  .contact-section .contact-text {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.contact-section .cmn-btn {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .contact-section .cmn-btn {
    width: auto;
  }
}

/* フッター */
.site-footer {
  background-color: #16163F;
  color: #fff;
  padding: 50px 20px;
}
@media screen and (min-width: 481px) {
  .site-footer {
    padding: 40px;
  }
}
@media screen and (min-width: 835px) {
  .site-footer {
    padding: 50px 40px 20px;
  }
}
.site-footer .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 835px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo img {
  width: 136px;
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .footer-logo img {
    max-width: 364px;
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 835px) {
  .footer-logo img {
    width: 364px;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 481px) {
  .footer-nav {
    flex-direction: row;
    justify-content: space-between;
  }
}

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 481px) {
  .nav-section {
    gap: 16px;
  }
}
.nav-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.nav-section ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 14px;
}
@media screen and (min-width: 481px) {
  .nav-section ul {
    gap: 16px;
  }
}
@media screen and (min-width: 835px) {
  .nav-section ul {
    gap: 11px;
    width: 209px;
  }
}
.nav-section ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
}
@media screen and (min-width: 835px) {
  .nav-section-en {
    width: 209px;
  }
}

.footer-bottom {
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .footer-bottom {
    margin-top: 0;
  }
}

.contact-info address {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
  margin: 40px 0 20px;
}
@media screen and (min-width: 835px) {
  .contact-info address {
    margin: 0 0 20px;
  }
}
.contact-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 20px;
}
@media screen and (min-width: 481px) {
  .social-links {
    margin-top: 20px;
  }
}
.social-links img {
  width: 21px;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px;
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .copyright {
    text-align: left;
  }
}
@media screen and (min-width: 835px) {
  .copyright {
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
  }
}

.cmn-btn {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  border-radius: 40px;
  background: #1A2792;
  color: #fff;
  display: inline-flex;
  padding: 10px 18px 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border: 2px solid #1A2792;
  transition: all 0.3s ease;
}
@media screen and (min-width: 835px) {
  .cmn-btn {
    padding: 11px 16px 11px 32px;
  }
}
.cmn-btn .arrow-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
.cmn-btn .arrow-normal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.cmn-btn:hover {
  color: #1A2792;
  border: 2px solid #1A2792;
  background-color: #fff;
  opacity: 1;
}
.cmn-btn:hover .arrow-wrapper {
  transform: rotate(-45deg);
}
.cmn-btn:hover .arrow-normal {
  color: #1e3799;
}
.cmn-btn:hover .arrow-normal path {
  fill: #1e3799;
}

.cmn-arrow-link {
  transition: transform 0.3s ease;
}
.cmn-arrow-link img {
  width: 48px;
  height: 48px;
}

.cmn-arrow-link-svg {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background-color: #1A2792;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.main-visual {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #D8E1FF 100%);
  height: 260px;
  padding: 120px 20px 64px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 481px) {
  .main-visual {
    height: 380px;
    padding: 200px 40px 80px;
  }
}
@media screen and (min-width: 835px) {
  .main-visual {
    padding: 200px 80px 80px;
  }
}
.main-visual-thanks {
  text-align: center;
}
@media screen and (min-width: 835px) {
  .main-visual__inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
  }
}
.main-visual h1 {
  font-size: 26px;
  color: #1A2792;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 12px;
}
@media screen and (min-width: 481px) {
  .main-visual h1 {
    font-size: 43px;
  }
}
@media screen and (min-width: 835px) {
  .main-visual h1 {
    font-size: 46px;
  }
}
.main-visual__subheading {
  color: #202128;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .main-visual__subheading {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .main-visual__subheading {
    font-size: 22px;
  }
}
.main-visual__globe {
  width: 400px;
  height: 400px;
  pointer-events: none;
  position: absolute;
  top: -170px;
  right: -120px;
  z-index: 1;
  opacity: 0.1;
}
@media screen and (min-width: 481px) {
  .main-visual__globe {
    width: 650px;
    height: 650px;
    top: -280px;
    right: -150px;
  }
}
@media screen and (min-width: 835px) {
  .main-visual__globe {
    width: 750px;
    height: 750px;
    top: -340px;
    right: -90px;
  }
}
.main-visual__globe canvas {
  display: block;
}

/* --------------------------------------------------
 * Top
 * -------------------------------------------------- */
body.home {
  background-color: #1A2792;
}

.top-main {
  background-color: #1A2792;
}

.top-main_visual {
  height: 100vh;
  padding: 100px 0;
  position: relative;
  background-color: #1A2792;
  overflow: hidden;
}
@media screen and (min-width: 481px) {
  .top-main_visual {
    height: 82vh;
    padding: 150px 0;
  }
}
.top-main_visual h1 {
  font-size: 45px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 135%;
  background: linear-gradient(90deg, #8693FF 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
@media screen and (min-width: 481px) {
  .top-main_visual h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 835px) {
  .top-main_visual h1 {
    font-size: 70px;
  }
}
@media screen and (min-width: 481px) {
  .top-main_visual h1 {
    margin-bottom: 16px;
  }
}
.top-main_visual__sub {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  line-height: 145%;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 0.8s ease forwards;
  animation-delay: 1s;
}
@media screen and (min-width: 481px) {
  .top-main_visual__sub {
    font-size: 43px;
  }
}
@media screen and (min-width: 835px) {
  .top-main_visual__sub {
    font-size: 46px;
  }
}
.top-main_visual__text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 27.2px;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 0.8s ease forwards;
  animation-delay: 1s;
}

/* 下から上へのフェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から下へのフェードインアニメーション */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.globe-container {
  position: relative;
  width: 140%; /* 画面幅より大きく設定 */
  max-width: none;
  margin-left: -20%;
  aspect-ratio: 1/1;
  height: auto; /* 高さは自動計算 */
  min-height: 0; /* 最小高さの制限を解除 */
  max-height: 100vw; /* 最大高さを画面幅に制限 */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 地球儀キャンバスのスマホ用調整 */
}
@media screen and (min-width: 835px) {
  .globe-container {
    position: relative;
    padding-top: 0;
  }
}
.globe-container .glow-effect-1 {
  position: absolute;
  inset: 0;
  background-color: #00B6FF; /* bg-blue-900 */
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(20px); /* blur-xl */
  top: -50px;
  width: 48%;
  margin: 0 auto;
}
.globe-container canvas {
  width: 100%;
  height: 100%;
  max-height: 100vw; /* 最大高さを画面幅に制限 */
  display: block;
}
@media screen and (min-width: 835px) {
  .globe-container canvas {
    display: block;
    cursor: grab;
    max-height: none;
  }
}
.globe-container canvas:active {
  cursor: grabbing;
}

.top-overlay {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #F3F6FA;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: -90px;
  z-index: 2;
  transform-origin: center center;
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), border-radius 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 835px) {
  .top-overlay {
    border-radius: 40px 40px 0 0;
    width: calc(100% - 80px);
    margin-top: -50px;
  }
}

.top-about {
  padding: 60px 20px 20px;
}
@media screen and (min-width: 481px) {
  .top-about {
    padding: 80px 40px 20px;
  }
}
@media screen and (min-width: 835px) {
  .top-about {
    padding: 120px 80px 40px;
  }
}
.top-about__inner {
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
}
@media screen and (min-width: 481px) {
  .top-about__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 835px) {
  .top-about__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.top-about__textArea {
  margin-bottom: 60px;
}
@media screen and (min-width: 835px) {
  .top-about__textArea {
    width: 520px;
    margin-bottom: 0;
  }
}
.top-about__title {
  color: #1A2792;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
@media screen and (min-width: 481px) {
  .top-about__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-about__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-about__title {
    width: 100%;
    margin-bottom: 16px;
  }
}
.top-about__catch {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .top-about__catch {
    font-size: 40px;
  }
}
@media screen and (min-width: 835px) {
  .top-about__catch {
    font-size: 40px;
  }
}
.top-about__text {
  line-height: 170%;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .top-about__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 835px) {
  .top-about__text {
    font-size: 18px;
  }
}
.top-about__image {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 835px) {
  .top-about__image {
    width: 42%;
  }
}
.top-about__cycle-img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 481px) {
  .top-about__cycle-img {
    max-width: 80%;
  }
}
@media screen and (min-width: 835px) {
  .top-about__cycle-img {
    max-width: 100%;
  }
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (min-width: 481px) {
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .feature-cards {
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    gap: 40px;
    margin: 0 32px;
  }
}

.feature-card {
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(0, 85, 254, 0.15) 0%, rgba(171, 199, 255, 0.09) 100%);
  backdrop-filter: blur(0px);
  padding: 12px 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media screen and (min-width: 481px) {
  .feature-card {
    padding: 46px 20px 40px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 835px) {
  .feature-card:nth-child(2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 835px) {
  .feature-card:nth-child(3) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 835px) {
  .feature-card:last-child {
    margin-top: 90px;
  }
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 481px) {
  .feature-card_en {
    height: auto;
  }
}
.feature-card .feature-icon {
  width: 150px;
  height: 150px;
}
.feature-card .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-card .feature-title {
  color: #16163F;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}
@media screen and (min-width: 481px) {
  .feature-card .feature-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .feature-card .feature-title {
    font-size: 22px;
  }
}
.feature-card .feature-description {
  color: #16163F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  text-align: left;
}
.feature-card .feature-card[data-animation-index="0"] {
  transition-delay: 0s;
}
.feature-card .feature-card[data-animation-index="1"] {
  transition-delay: 0.15s;
}
.feature-card .feature-card[data-animation-index="2"] {
  transition-delay: 0.3s;
}
.feature-card .feature-card[data-animation-index="3"] {
  transition-delay: 0.45s;
}
@media screen and (min-width: 481px) {
  .feature-card-en {
    padding: 22px 20px 30px;
  }
}
@media screen and (min-width: 835px) {
  .feature-card-en .feature-title {
    line-height: 120%;
  }
}

.top-services {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 55px 20px;
}
@media screen and (min-width: 835px) {
  .top-services {
    padding: 120px 80px;
    position: relative;
    display: flex;
    gap: 80px;
    padding: 50px 110px;
  }
}
@media screen and (min-width: 835px) {
  .top-services .services-header {
    position: sticky;
    top: 100px;
    height: fit-content;
    left: 0;
    z-index: 5;
    width: 30%;
    margin-bottom: 0;
  }
}
.top-services .section-title {
  color: #1A2792;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .top-services .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-services .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-services .section-title {
    text-align: left;
  }
}
.top-services .section-description {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .top-services .section-description {
    font-size: 18px;
  }
}
.top-services__list {
  position: sticky;
  top: 90px;
  left: 0;
  z-index: 10;
  background: rgba(234, 246, 250, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  margin-bottom: 20px;
  padding: 8px;
}
@media screen and (min-width: 835px) {
  .top-services__list {
    position: static;
    padding: 0;
    margin-bottom: 0;
    padding: 0;
    background: none;
  }
}
.top-services__list_pc {
  display: none;
}
@media screen and (min-width: 835px) {
  .top-services__list_pc {
    display: block;
  }
}
.top-services__list_tablet {
  display: block;
  top: 95px;
}
@media screen and (min-width: 835px) {
  .top-services__list_tablet {
    display: none;
  }
}
.top-services__item {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  line-height: 170%;
  display: flex;
  align-items: center;
}
.top-services__item:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #C9CDD2;
  border-radius: 50%;
  margin-right: 8px;
}
.top-services__item.active {
  color: #16163F;
  font-weight: 700;
}
.top-services__item.active:before {
  background-color: #1A2792;
}
.top-services .services-content {
  position: relative;
}
@media screen and (min-width: 835px) {
  .top-services .services-content {
    width: 75%;
    padding-left: 20px;
  }
}
.top-services .service-item {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}
.top-services .service-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .top-services .service-item {
    margin-bottom: 128px;
    position: sticky;
  }
  .top-services .service-item:nth-child(1) {
    top: 100px;
    z-index: 1;
  }
  .top-services .service-item:nth-child(2) {
    top: 120px;
    z-index: 2;
  }
  .top-services .service-item:nth-child(3) {
    top: 140px;
    z-index: 3;
  }
  .top-services .service-item:nth-child(4) {
    top: 160px;
    z-index: 4;
  }
  .top-services .service-item:nth-child(5) {
    top: 180px;
    z-index: 5;
  }
  .top-services .service-item:last-child {
    margin-bottom: 128px;
  }
}
.top-services .service-item:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.top-services .service-item:hover .cmn-arrow-link {
  transform: rotate(-45deg);
}
.top-services .service-item:hover .cmn-arrow-link-svg {
  transform: rotate(-45deg);
}
.top-services .service-image {
  width: 100%;
  height: 233px;
  overflow: hidden;
}
.top-services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-services .service-details {
  padding: 20px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 835px) {
  .top-services .service-details {
    padding: 40px;
  }
}
.top-services .service-title {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
@media screen and (min-width: 481px) {
  .top-services .service-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-services .service-title {
    font-size: 32px;
  }
}
.top-services .service-subtitle {
  color: #5A5A69;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 12px;
}
.top-services .service-description {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
.top-services .service-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
@media screen and (min-width: 835px) {
  .top-services .service-wrap {
    margin-top: 12px;
  }
}
.top-services .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.top-services .tag {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  border-radius: 9999px;
  background: #E4ECF7;
  display: flex;
  padding: 5px 16px 6px 16px;
  justify-content: center;
  align-items: center;
}

.top-partners {
  background-color: #fff;
  padding: 60px 0;
}
@media screen and (min-width: 481px) {
  .top-partners {
    padding: 80px 0;
  }
}
@media screen and (min-width: 835px) {
  .top-partners {
    padding: 120px 32px;
  }
}
.top-partners__title {
  color: #1A2792;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .top-partners__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__title {
    font-size: 32px;
  }
}
.top-partners__catch {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 481px) {
  .top-partners__catch {
    font-size: 18px;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__catch {
    margin-bottom: 12px;
  }
}
.top-partners__wrapper {
  width: calc(100% - 96px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 481px) {
  .top-partners__wrapper {
    gap: 24px;
    width: 100%;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__wrapper {
    flex-wrap: nowrap;
    gap: 22px;
    width: 82%;
  }
}
.top-partners__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-partners__image img {
  height: auto;
  object-fit: contain;
}
.top-partners__image:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(1) {
    width: 30%;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__image:nth-child(1) {
    width: 20%;
  }
}
.top-partners__image:nth-child(1) img {
  max-width: 62%;
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(1) img {
    max-width: 100%;
  }
}
.top-partners__image:nth-child(2), .top-partners__image:nth-child(3) {
  width: calc(50% - 12px);
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(2), .top-partners__image:nth-child(3) {
    width: 20%;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__image:nth-child(2), .top-partners__image:nth-child(3) {
    width: 14%;
  }
}
.top-partners__image:nth-child(2) img, .top-partners__image:nth-child(3) img {
  max-width: 94%;
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(2) img, .top-partners__image:nth-child(3) img {
    max-width: 100%;
  }
}
.top-partners__image:nth-child(4) {
  width: 100%;
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(4) {
    width: 28%;
  }
}
@media screen and (min-width: 835px) {
  .top-partners__image:nth-child(4) {
    width: 18%;
  }
}
.top-partners__image:nth-child(4) img {
  max-width: 57%;
}
@media screen and (min-width: 481px) {
  .top-partners__image:nth-child(4) img {
    max-width: 100%;
  }
}

.top-case-studies {
  background-color: #1A2792;
  padding: 60px 20px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .top-case-studies {
    padding: 120px 80px;
  }
}
.top-case-studies__inner {
  position: relative;
  z-index: 10;
}
.top-case-studies__title {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px;
  margin-bottom: 20px;
}
.top-case-studies__description {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 27.2px;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .top-case-studies__description {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 835px) {
  .top-case-studies__description {
    line-height: 170%;
  }
}
.top-case-studies__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (min-width: 481px) {
  .top-case-studies__wrapper {
    flex-direction: row;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: center;
  }
}
.top-case-studies .card {
  border-radius: 20px;
  background: linear-gradient(180deg, #EAF1F8 0%, #FFF 100%);
  box-shadow: 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: block;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (min-width: 481px) {
  .top-case-studies .card {
    width: 350px;
  }
}
@media screen and (min-width: 835px) {
  .top-case-studies .card {
    width: 406px;
  }
}
.top-case-studies .card:hover {
  opacity: 1;
}
.top-case-studies .card:hover .card-image img {
  transform: scale(1.2);
}
.top-case-studies .card:hover .hover-arrow {
  opacity: 1;
  transform: rotate(-45deg);
}
.top-case-studies .card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 20px;
}
.top-case-studies .card-image img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
@media screen and (min-width: 835px) {
  .top-case-studies .card-image {
    max-width: 100%;
  }
}
.top-case-studies .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (min-width: 481px) {
  .top-case-studies .card-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .top-case-studies .card-title {
    font-size: 20px;
  }
}
.top-case-studies .card-category {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 10px;
}
.top-case-studies .card-subtitle {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
}
@media screen and (min-width: 481px) {
  .top-case-studies .card-subtitle {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .top-case-studies .card-subtitle {
    font-size: 22px;
  }
}
.top-case-studies .card-description {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 24px;
}
.top-case-studies .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.top-case-studies .tag {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  border-radius: 9999px;
  background: #E4ECF7;
  display: flex;
  padding: 5px 16px 6px 16px;
  justify-content: center;
  align-items: center;
}
.top-case-studies .hover-arrow {
  position: absolute;
  right: calc(50% - 24px);
  top: 100px;
  opacity: 0;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1A2792;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-news {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
}
@media screen and (min-width: 481px) {
  .top-news {
    padding: 60px 56px;
  }
}
@media screen and (min-width: 835px) {
  .top-news {
    padding: 120px 32px 105px;
  }
}
.top-news__wrapper {
  max-width: 1220px;
  margin: 0 auto;
}
@media screen and (min-width: 835px) {
  .top-news__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.top-news__wrapper_no-news {
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.top-news__title {
  color: #1A2792;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
@media screen and (min-width: 481px) {
  .top-news__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-news__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-news__title {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 835px) {
  .top-news__inner {
    width: 67%;
  }
}
.top-news .read-more-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.news-list {
  display: flex;
  flex-direction: column;
}
.news-list.mb-50 {
  margin-bottom: 50px;
}
.news-list .news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px;
  border-top: 1px solid #D8DFE9;
  transition: all 0.3s ease;
}
.news-list .news-item:last-of-type {
  border-bottom: 1px solid #D8DFE9;
}
.news-list .news-item:hover {
  opacity: 1;
  background-color: #F4F6FA;
}
.news-list .news-item:hover .cmn-arrow-link {
  transform: rotate(-45deg);
}
.news-list .news-item:hover .cmn-arrow-link-svg {
  transform: rotate(-45deg);
}
.news-list .news-content {
  flex: 1;
}
.news-list .news-date {
  color: #5A5A69;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 14px;
}
.news-list .news-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .news-list .news-title {
    font-size: 18px;
  }
}
.news-list .arrow-circle img {
  width: 48px;
  height: 48px;
}

.top-careers {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
@media screen and (min-width: 481px) {
  .top-careers {
    padding: 80px 0;
  }
}
@media screen and (min-width: 835px) {
  .top-careers {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    height: 639px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.top-careers__content {
  padding: 0 20px 20px;
}
@media screen and (min-width: 481px) {
  .top-careers__content {
    padding: 0 60px 30px;
  }
}
@media screen and (min-width: 835px) {
  .top-careers__content {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 0;
    width: 52%;
  }
}
@media screen and (min-width: 835px) {
  .top-careers__textArea {
    margin-right: 60px;
  }
}
.top-careers__textArea h2 {
  color: #1A2792;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 23px;
}
@media screen and (min-width: 481px) {
  .top-careers__textArea h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .top-careers__textArea h2 {
    font-size: 32px;
  }
}
.top-careers__textArea .top-careers__catch {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 23px;
}
@media screen and (min-width: 481px) {
  .top-careers__textArea .top-careers__catch {
    font-size: 56px;
  }
}
.top-careers__textArea p {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 23px;
}
@media screen and (min-width: 835px) {
  .top-careers__textArea p {
    font-size: 18px;
  }
}
.top-careers .carousel-container {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container {
    width: 45%;
  }
}
.top-careers .carousel-container .carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container .carousel-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
.top-careers .carousel-container .carousel {
  display: flex;
  gap: 20px;
  width: 200%;
  animation: scroll-horizontal 50s linear infinite;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container .carousel {
    flex-direction: column;
    gap: 30px;
    height: auto;
    animation: scroll-vertical 50s linear infinite;
  }
}
.top-careers .carousel-container .carousel:nth-child(1) {
  height: 180px;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container .carousel:nth-child(1) {
    width: 260px;
    height: auto;
  }
}
.top-careers .carousel-container .carousel:nth-child(2) {
  animation-direction: reverse;
  height: 153px;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container .carousel:nth-child(2) {
    width: 210px;
    height: auto;
  }
}
.top-careers .carousel-container .carousel-item {
  width: auto;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 835px) {
  .top-careers .carousel-container .carousel-item {
    width: 100%;
    height: auto;
  }
}
.top-careers .carousel-container .carousel-item img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 481px) {
  .top-careers .carousel-container .carousel-item img {
    width: 100%;
  }
}
@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.shimmer-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1A2792;
  z-index: 1; /* メインコンテンツより下に */
}

/* --------------------------------------------------
 * About
 * -------------------------------------------------- */
.corporate-about {
  padding: 40px 20px;
  background-color: #F4F6FA;
}
@media screen and (min-width: 481px) {
  .corporate-about {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 32px;
  }
}
.corporate-about__text {
  color: #16163F;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .corporate-about__text {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-about__text {
    font-size: 32px;
  }
}
.corporate-about__text-highlight {
  color: #00F;
}

.corporate-mission {
  width: calc(100% - 40px);
  margin: 0 auto 20px;
}
@media screen and (min-width: 481px) {
  .corporate-mission {
    width: calc(100% - 80px);
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-mission {
    max-width: 1280px;
    margin: 0 auto 80px;
  }
}
.corporate-mission__box {
  padding: 32px 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1A2792 0%, #081580 100%);
  margin-bottom: 20px;
}
.corporate-mission__box:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .corporate-mission__box {
    padding: 80px 160px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 481px) {
  .corporate-mission__inner {
    padding: 0 24px;
  }
}
.corporate-mission__title {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
@media screen and (min-width: 481px) {
  .corporate-mission__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-mission__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) {
  .corporate-mission__title {
    margin-bottom: 32px;
  }
}
.corporate-mission__wrapper {
  margin-bottom: 40px;
}
.corporate-mission__wrapper:last-of-type {
  margin-bottom: 0;
}
.corporate-mission__strong {
  color: #fff;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
@media screen and (min-width: 481px) {
  .corporate-mission__strong {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-mission__strong {
    font-size: 32px;
  }
}
.corporate-mission__strong_bigger {
  font-size: 26px;
}
@media screen and (min-width: 481px) {
  .corporate-mission__strong_bigger {
    font-size: 43px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-mission__strong_bigger {
    font-size: 46px;
  }
}
.corporate-mission__text {
  color: #FFF;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .corporate-mission__text {
    font-size: 18px;
  }
}

.corporate-conduct {
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .corporate-conduct {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-conduct {
    padding: 120px 80px;
  }
}
.corporate-conduct__inner {
  margin-bottom: 48px;
  text-align: center;
}
.corporate-conduct__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .corporate-conduct__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-conduct__title {
    font-size: 32px;
  }
}
.corporate-conduct__subheading {
  color: #5A5A69;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .corporate-conduct__subheading {
    font-size: 18px;
  }
}
.corporate-conduct__wrapper {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 481px) {
  .corporate-conduct__wrapper {
    padding: 0 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 835px) {
  .corporate-conduct__wrapper {
    gap: 40px;
  }
}

.corporate-conduct-box {
  border-radius: 12px;
  border-top: 2px solid #00F;
  background: #fff;
  text-align: center;
  padding: 40px 20px;
}
@media screen and (min-width: 481px) {
  .corporate-conduct-box {
    width: 330px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-conduct-box {
    width: 380px;
  }
}
.corporate-conduct-box__inner {
  width: 290px;
}
@media screen and (min-width: 835px) {
  .corporate-conduct-box__inner {
    width: 330px;
    margin: 0 auto;
  }
}
.corporate-conduct-box__title {
  color: #1A2792;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
@media screen and (min-width: 481px) {
  .corporate-conduct-box__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-conduct-box__title {
    font-size: 22px;
  }
}
.corporate-conduct-box__text {
  color: #5A5A69;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .corporate-conduct-box__text {
    font-size: 18px;
  }
}

.corporate-round-bg {
  background: #fff;
  padding: 60px 0;
  border-radius: 20px;
}
@media screen and (min-width: 481px) {
  .corporate-round-bg {
    padding: 80px 0;
    border-radius: 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-round-bg {
    padding: 120px 0;
  }
}

.corporate-top-message {
  padding: 0 0 60px;
}
@media screen and (min-width: 481px) {
  .corporate-top-message {
    padding: 0 0 80px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-top-message {
    padding: 0 0 120px;
  }
}
.corporate-top-message__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .corporate-top-message__container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-top-message__container {
    flex-direction: row;
    align-items: flex-start;
    padding: 64px 80px;
    padding: 0 32px;
    gap: 26px;
  }
}
.corporate-top-message__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 835px) {
  .corporate-top-message__left {
    flex: 0 0 260px;
    min-width: 220px;
    max-width: 260px;
  }
}
.corporate-top-message__title {
  color: #1A2792;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .corporate-top-message__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-top-message__title {
    font-size: 32px;
  }
}
.corporate-top-message__subtitle {
  color: #5A5A69;
  font-weight: 400;
  line-height: 170%;
}
.corporate-top-message__right {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 835px) {
  .corporate-top-message__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    width: 100%;
  }
}
.corporate-top-message__image-wrap {
  border-radius: 12px;
}
.corporate-top-message__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate-top-message__message {
  width: 100%;
}
.corporate-top-message__heading {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .corporate-top-message__heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-top-message__heading {
    font-size: 32px;
  }
}
.corporate-top-message__text {
  line-height: 170%;
  margin-bottom: 36px;
}
@media screen and (min-width: 481px) {
  .corporate-top-message__text {
    font-size: 18px;
  }
}
.corporate-top-message__text.m0 {
  margin-bottom: 0;
}
.corporate-top-message__sign {
  text-align: right;
}
.corporate-top-message__sign .corporate-top-message__company {
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}
.corporate-top-message__sign .corporate-top-message__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .corporate-top-message__sign .corporate-top-message__name {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-top-message__sign .corporate-top-message__name {
    font-size: 22px;
  }
}

.corporate-csr {
  padding: 60px 0 0;
  max-width: 1216px;
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .corporate-csr {
    padding: 80px 0 0;
  }
}
@media screen and (min-width: 835px) {
  .corporate-csr {
    padding: 120px 0 0;
    max-width: 1280px;
  }
}
.corporate-csr__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 481px) {
  .corporate-csr__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 835px) {
  .corporate-csr__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.corporate-csr__item {
  border-radius: 12px;
  border: 1px solid #F3F4F6;
  background: #F4F6FA;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.corporate-csr__image {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.corporate-csr__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate-csr__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .corporate-csr__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-csr__title {
    font-size: 22px;
  }
}
.corporate-csr__text {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.corporate-global {
  background: #F4F6FA;
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .corporate-global {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-global {
    padding: 120px 80px;
  }
}
.corporate-global__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 481px) {
  .corporate-global__inner {
    gap: 53px;
  }
}
.corporate-global__title {
  color: #1A2792;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .corporate-global__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-global__title {
    font-size: 32px;
  }
}
.corporate-global__subtitle {
  color: #5A5A69;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
  margin-bottom: 0;
}
.corporate-global__desc {
  text-align: center;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .corporate-global__desc {
    font-size: 18px;
  }
}
.corporate-global__map-wrap img {
  width: 100%;
}
.corporate-global__locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.corporate-global__location {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F3F4F6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc(50% - 16px);
  border: 2px solid #fff;
}
.corporate-global__location:hover {
  opacity: 1;
  border-radius: 12px;
  border: 2px solid #C9CDD2;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 481px) {
  .corporate-global__location {
    width: calc(33.3333333333% - 32px);
  }
}
@media screen and (min-width: 835px) {
  .corporate-global__location {
    width: calc(25% - 60px);
  }
}
.corporate-global__location-main {
  color: #1A2792;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  display: block;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (min-width: 481px) {
  .corporate-global__location-main {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-global__location-main {
    font-size: 20px;
  }
}
@media screen and (min-width: 481px) {
  .corporate-global__location-main {
    white-space: normal;
  }
}
.corporate-global__location-main_normal {
  white-space: normal;
}
@media screen and (min-width: 481px) {
  .corporate-global__location-main_normal {
    white-space: nowrap;
  }
}
.corporate-global__location-target {
  width: 14px;
  height: 14px;
}
.corporate-global__location-sub {
  color: #191E25;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.corporate-profile {
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .corporate-profile {
    padding: 80px 45px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-profile {
    padding: 120px 80px 100px;
  }
}
.corporate-profile__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .corporate-profile__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .corporate-profile__title {
    font-size: 32px;
  }
}
.corporate-profile__subtitle {
  color: #5A5A69;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .corporate-profile__subtitle {
    font-size: 18px;
  }
}
.corporate-profile__table-wrap {
  margin: 48px auto 0;
}
@media screen and (min-width: 835px) {
  .corporate-profile__table-wrap {
    max-width: 1280px;
    padding: 0 32px;
  }
}
.corporate-profile__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
}
@media screen and (min-width: 835px) {
  .corporate-profile__table {
    width: 720px;
    margin: 0 auto;
  }
}
.corporate-profile__table th, .corporate-profile__table td {
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}
.corporate-profile__table th {
  width: 120px;
  font-weight: 400;
  line-height: 170%;
  padding: 20px 4px 18px 0px;
  border-top: 2px solid #1A2792;
}
.corporate-profile__table td {
  color: #5A5A69;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  padding: 20px 0 18px 0;
  border-top: 1px solid #D0D8DE;
}

/* --------------------------------------------------
 * News ニュース一覧
 * -------------------------------------------------- */
.news-release {
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .news-release {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .news-release {
    padding: 120px 80px;
  }
}
.news-release__container {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 835px) {
  .news-release__container {
    padding: 0 32px;
  }
}
.news-release__item {
  border-top: 1px solid #D8DFE9;
  padding-bottom: 24px;
}
.news-release__link {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: all 0.3s ease;
}
.news-release__link:hover {
  opacity: 1;
}
.news-release__link:hover .cmn-arrow-link {
  transform: rotate(-45deg);
}

.pagination-wrap {
  margin: 32px 0 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E4E7EC;
  padding-top: 16px;
}
@media screen and (min-width: 481px) {
  .pagination {
    padding-top: 20px;
  }
}
.pagination-mobile {
  display: flex;
}
@media screen and (min-width: 481px) {
  .pagination-mobile {
    display: none;
  }
}
.pagination-pc {
  display: none;
}
@media screen and (min-width: 481px) {
  .pagination-pc {
    display: flex;
  }
}
.pagination__prev, .pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0px 0px 0px 1px rgba(16, 24, 40, 0.18) inset, 0px -2px 0px 0px rgba(16, 24, 40, 0.05) inset, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  color: #344054;
  font-size: 14px;
}
.pagination__prev:disabled, .pagination__next:disabled {
  opacity: 0.4;
  cursor: default;
  color: #D8DFE9;
}
.pagination__prev:not(:disabled):hover, .pagination__next:not(:disabled):hover {
  color: #1A2792;
  opacity: 1;
}
@media screen and (min-width: 481px) {
  .pagination__prev, .pagination__next {
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    padding: 0;
    gap: 6px;
  }
}
.pagination__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__info {
  color: #5A5A69;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .pagination__numbers {
    font-size: 14px;
    line-height: 170%;
    color: #5A5A69;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }
}
@media screen and (min-width: 481px) {
  .pagination__number {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
  }
  .pagination__number:hover {
    color: #1A2792;
    opacity: 1;
  }
}
@media screen and (min-width: 481px) {
  .pagination__number_current {
    background: #F4F6FA;
    border-radius: 50%;
  }
}

/* --------------------------------------------------
 * News ニュース詳細
 * -------------------------------------------------- */
.news-detail {
  padding: 126px 0 96px;
  background: #fff;
}
@media screen and (min-width: 481px) {
  .news-detail {
    padding: 141px 0 96px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail {
    padding: 156px 0 96px;
  }
}
.news-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .news-detail__inner {
    padding: 0 45px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__inner {
    padding: 0 32px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__wrapper {
    max-width: 720px;
    margin: 0 auto 60px;
  }
}
.news-detail__date {
  color: #5A5A69;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 481px) {
  .news-detail__date {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__date {
    font-size: 20px;
  }
}
.news-detail__title {
  color: #101828;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .news-detail__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 481px) {
  .news-detail__title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__title {
    margin-bottom: 60px;
  }
}
.news-detail__body p {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 40px;
}
@media screen and (min-width: 481px) {
  .news-detail__body p {
    font-size: 18px;
  }
}
.news-detail__body h2 {
  color: #101828;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
@media screen and (min-width: 481px) {
  .news-detail__body h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__body h2 {
    font-size: 32px;
  }
}
.news-detail__body h3 {
  color: #111827;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding-left: 16px;
  border-left: 4px solid #1A2792;
  margin-bottom: 16px;
}
@media screen and (min-width: 481px) {
  .news-detail__body h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .news-detail__body h3 {
    font-size: 22px;
  }
}
.news-detail__body ul, .news-detail__body ol {
  margin-bottom: 32px;
  padding-left: 16px;
}
@media screen and (min-width: 481px) {
  .news-detail__body ul, .news-detail__body ol {
    font-size: 18px;
  }
}
.news-detail__body ul {
  line-height: 170%;
  list-style-type: disc;
}
.news-detail__body ol {
  line-height: 170%;
  list-style-type: decimal;
}
.news-detail__body img,
.news-detail__body figure {
  max-width: 100%;
  height: 480px;
  object-fit: cover;
  margin: 48px 0;
  display: block;
  border-radius: 12px;
}
.news-detail__body .wp-block-image img {
  height: 480px;
}
.news-detail__back {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-detail__back:hover {
  color: #1A2792;
  opacity: 1;
}
.news-detail__icon {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------
 * Contact
 * -------------------------------------------------- */
.contact {
  padding: 60px 20px;
  background: #fff;
}
@media screen and (min-width: 481px) {
  .contact {
    padding: 80px 45px;
  }
}
@media screen and (min-width: 835px) {
  .contact {
    padding: 120px 32px;
  }
}
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 835px) {
  .contact__wrapper {
    max-width: 720px;
    margin: 0 auto;
  }
}
.contact__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .contact__text {
    font-size: 18px;
  }
}
.contact__text_confirmation {
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .contact__text_confirmation {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .contact__text_confirmation {
    margin-bottom: 60px;
  }
}
.contact__small {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: block;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .contact__small {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .contact__small {
    margin-bottom: 60px;
  }
}
.contact__title {
  color: #1A2792;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}
.contact .system-error-message {
  display: block;
  color: #F04438;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.contact-form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.contact-form .form-group:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .contact-form .form-group {
    margin-bottom: 24px;
  }
}
.contact-form .form-group_confirm {
  padding: 0 0 17px;
  border-bottom: 1px solid #D8DFE9;
  gap: 12px;
}
.contact-form .form-group__label {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}
.contact-form .form-group__value {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.contact-form .required {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #C9CDD2;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form textarea::placeholder {
  color: #C9CDD2;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
  border-color: #1A2792;
  outline: none;
  background: #fff;
}
.contact-form input.error,
.contact-form textarea.error {
  border: 1px solid #FDA29B;
  background: #FEF3F2;
}
.contact-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .checkbox-group label {
  color: #5A5A69;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form .checkbox-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.contact-form .checkbox-group .custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid #C9CDD2;
  border-radius: 6px;
  background: #fff;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form .checkbox-group input[type=checkbox]:checked + .custom-checkbox {
  background: #1A2792;
  border-color: #1A2792;
}
.contact-form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  opacity: 0;
  transform: scale(0.8) rotate(45deg);
  transition: opacity 0.2s;
}
.contact-form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  opacity: 1;
}
.contact-form__policy {
  border-radius: 6px;
  background: #F4F6FA;
  padding: 16px;
  margin: 18px 0 48px;
}
@media screen and (min-width: 481px) {
  .contact-form__policy {
    margin: 8px 0 48px;
  }
}
.contact-form__policy-text {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.contact-form__policy-link {
  color: #1A2792;
}
.contact-form .policy-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-top: 8px;
  /* カスタムチェックボックス */
  /* チェック時の背景・枠色 */
  /* チェックマーク */
}
.contact-form .policy-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.contact-form .policy-label .custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid #C9CDD2;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 2px;
}
.contact-form .policy-label input[type=checkbox]:checked + .custom-checkbox {
  background: #1A2792;
  border-color: #1A2792;
}
.contact-form .policy-label .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  opacity: 0;
  transform: scale(0.8) rotate(45deg);
  transition: opacity 0.2s;
}
.contact-form .policy-label input[type=checkbox]:checked + .custom-checkbox::after {
  opacity: 1;
}
.contact-form .txt_error {
  display: none;
  color: #F04438;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.contact-form .txt_error.is_error {
  display: block;
}
.contact-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 24px;
}
@media screen and (min-width: 481px) {
  .contact-form__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact-form .submit-btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  max-width: 252px;
  margin: 0 auto;
}
.contact-form .submit-btn_confirmation {
  width: 220px;
}
@media screen and (min-width: 481px) {
  .contact-form .submit-btn_confirmation {
    margin: 0;
  }
}
.contact-form .back-btn {
  font-size: 14px;
  color: #5A5A69;
  font-weight: 700;
  line-height: 170%;
  max-width: 252px;
  margin: 0 auto;
  border: 1px solid #5A5A69;
  background: #fff;
  width: 220px;
  padding: 11px 25px 11px 26px;
}
.contact-form .back-btn:hover {
  opacity: 1;
  color: #fff;
  border-color: #5A5A69;
  background: #5A5A69;
}
.contact-form .back-btn:hover .arrow-wrapper {
  transform: rotate(45deg);
}
.contact-form .back-btn:hover .arrow-normal {
  color: #fff;
}
.contact-form .back-btn:hover .arrow-normal path {
  fill: #fff;
}
@media screen and (min-width: 481px) {
  .contact-form .back-btn {
    margin: 0;
  }
}

.thanks {
  padding: 0 20px 60px;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .thanks {
    padding: 0 45px 80px;
  }
}
@media screen and (min-width: 835px) {
  .thanks {
    padding: 0 32px 120px;
  }
}
@media screen and (min-width: 835px) {
  .thanks__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.thanks__text {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 46px;
}
@media screen and (min-width: 481px) {
  .thanks__text {
    font-size: 18px;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 835px) {
  .thanks__text {
    margin-bottom: 76px;
  }
}
.thanks__text_404 {
  margin-bottom: 16px;
}
.thanks__btn {
  font-size: 14px;
  padding: 16px 24px 16px 32px;
  gap: 40px;
  margin: 0 auto;
}
.thanks__btn .arrow-wrapper {
  width: 20px;
  height: 20px;
  margin: 0;
}
.thanks__btn:hover .arrow-wrapper {
  transform: rotate(45deg);
}
.thanks__btn:hover .arrow-normal {
  color: #1e3799;
}
.thanks__btn:hover .arrow-normal path {
  fill: #1e3799;
}

/* --------------------------------------------------
 * Case Study 
 * -------------------------------------------------- */
.case-studies {
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .case-studies {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .case-studies {
    padding: 120px 0;
  }
}
.case-studies__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 835px) {
  .case-studies__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 0;
    flex-wrap: wrap;
  }
}
.case-studies__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  order: 1;
}
@media screen and (min-width: 481px) {
  .case-studies__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 835px) {
  .case-studies__list {
    grid-template-columns: 1fr 1fr;
    width: 845px;
  }
}
.case-studies__filter {
  order: 3;
}
@media screen and (min-width: 835px) {
  .case-studies__filter {
    width: 320px;
    order: 2;
  }
}
.case-studies__filter_single {
  padding: 32px 24px;
  margin-bottom: 32px;
}
@media screen and (min-width: 835px) {
  .case-studies__filter_single {
    width: auto;
    max-width: 1280px;
    margin: 0 auto 32px;
  }
}
.case-studies__tags-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .case-studies__tags-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .case-studies__tags-title {
    font-size: 20px;
  }
}
.case-studies__tag-btn {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  background: #E4ECF7;
  border-radius: 9999px;
  padding: 5px 6px;
}
.case-studies__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-studies__tag-btn {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  background: #E4ECF7;
  border-radius: 9999px;
  padding: 5px 16px 4px 16px;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.case-studies__tag-btn:hover, .case-studies__tag-btn.is-active {
  background: #1A2792;
  color: #fff;
  opacity: 1;
}

.case-studies-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #EAF1F8 0%, #FFF 100%);
  box-shadow: 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.case-studies-card:hover {
  opacity: 1;
}
.case-studies-card:hover .case-studies-card__img img {
  transform: scale(1.2);
  border-radius: 10px;
}
.case-studies-card:hover .hover-arrow {
  opacity: 1;
  transform: rotate(-45deg);
}
.case-studies-card__img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.case-studies-card__img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}
.case-studies-card__strong {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  display: block;
}
@media screen and (min-width: 481px) {
  .case-studies-card__strong {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .case-studies-card__strong {
    font-size: 20px;
  }
}
.case-studies-card__type {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: block;
  margin-bottom: 10px;
}
.case-studies-card__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 481px) {
  .case-studies-card__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .case-studies-card__title {
    font-size: 22px;
  }
}
.case-studies-card__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-studies-card__tags {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  align-self: stretch;
  flex-wrap: wrap;
}
.case-studies-card__tag {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: flex;
  padding: 5px 16px 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #E4ECF7;
}
.case-studies-card .hover-arrow {
  position: absolute;
  right: calc(50% - 24px);
  top: 100px;
  opacity: 0;
  transition: all 0.3s ease;
}
.case-studies-card .hover-arrow img {
  width: 48px;
  height: 48px;
}
.case-studies-card.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pagination-wrap-case-studies {
  margin: 0;
  order: 2;
}
@media screen and (min-width: 835px) {
  .pagination-wrap-case-studies {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin: 54px auto 0;
    padding: 0 32px;
    order: 3;
  }
}

/* --------------------------------------------------
 * Case Study Single（導入事例詳細）
 * -------------------------------------------------- */
.case-study-single {
  background: #fff;
  padding: 96px 0;
}
.case-study-single__header {
  padding: 30px 20px 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 481px) {
  .case-study-single__header {
    padding: 40px 45px 0;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__header {
    padding: 60px 0 0;
    margin: 0 auto 60px;
    width: 720px;
  }
}
.case-study-single__header .case-study-single__date {
  color: #5A5A69;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (min-width: 481px) {
  .case-study-single__header .case-study-single__date {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__header .case-study-single__date {
    font-size: 20px;
  }
}
.case-study-single__header .case-study-single__title {
  color: #16163F;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .case-study-single__header .case-study-single__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__header .case-study-single__title {
    font-size: 32px;
  }
}
.case-study-single__header .case-study-single__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.case-study-single__header .case-study-single__tags .case-study-single__tag {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  background: #E4ECF7;
  border-radius: 9999px;
  padding: 5px 16px 4px 16px;
}
.case-study-single__section {
  width: calc(100% - 40px);
  margin: 0 auto 60px;
}
.case-study-single__section:last-of-type {
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .case-study-single__section {
    width: calc(100% - 90px);
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__section {
    width: 720px;
  }
}
.case-study-single h2 {
  color: #101828;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 20px 0 0;
}
@media screen and (min-width: 481px) {
  .case-study-single h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 481px) {
  .case-study-single h2 {
    margin: 40px 0 0;
  }
}
.case-study-single h3 {
  color: #111827;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  border-left: 4px solid #1A2792;
  padding-left: 16px;
  margin: 20px 0 0;
}
@media screen and (min-width: 481px) {
  .case-study-single h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) {
  .case-study-single h3 {
    margin: 40px 0 0;
  }
}
.case-study-single__section-body {
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .case-study-single__section-body {
    font-size: 18px;
  }
}
@media screen and (min-width: 481px) {
  .case-study-single__section-body_en {
    font-size: 16px;
  }
}
.case-study-single__section-body p {
  margin: 16px 0 0;
}
.case-study-single__section-body ul, .case-study-single__section-body ol {
  padding-left: 20px;
}
.case-study-single__section-body ul {
  list-style: disc;
}
.case-study-single__section-body ol {
  list-style: decimal;
  margin: 16px 0 0;
}
@media screen and (min-width: 481px) {
  .case-study-single__section-body ol {
    margin: 32px 0 0;
  }
}
.case-study-single__section-body ol li {
  margin-bottom: 24px;
  line-height: 170%;
}
.case-study-single__section-body ol li:last-of-type {
  margin-bottom: 0;
}
.case-study-single__section-body ol li ul {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-top: 20px;
}
.case-study-single__section-body figure {
  margin: 16px 0;
}
@media screen and (min-width: 481px) {
  .case-study-single__section-body figure {
    margin: 32px 0;
  }
}
.case-study-single__toc {
  border-radius: 16px;
  background: #F4F6FA;
  padding: 16px;
  width: calc(100% - 40px);
  margin: 32px auto;
}
@media screen and (min-width: 481px) {
  .case-study-single__toc {
    width: calc(100% - 90px);
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__toc {
    width: 720px;
  }
}
.case-study-single__toc-title {
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 8px;
}
@media screen and (min-width: 481px) {
  .case-study-single__toc-title {
    font-size: 18px;
  }
}
.case-study-single__toc-list {
  color: #1A2792;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .case-study-single__toc-list {
    font-size: 18px;
  }
}
.case-study-single__toc-list li {
  margin-bottom: 4px;
}
.case-study-single ul.case-study-single__reasons {
  padding: 0;
  margin-top: 16px;
}
.case-study-single ul.case-study-single__reasons li {
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  list-style: none;
  border-left: 4px solid #1A2792;
  padding-left: 20px;
  margin-bottom: 16px;
}
.case-study-single ul.case-study-single__reasons li:last-of-type {
  margin-bottom: 0;
}
.case-study-single ul.case-study-single__reasons strong {
  font-size: 16px;
  color: #000;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 4px;
}
@media screen and (min-width: 481px) {
  .case-study-single ul.case-study-single__reasons strong {
    font-size: 18px;
  }
}
.case-study-single figure.case-study-single__image, .case-study-single figure.case-study-single__image img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  object-fit: cover;
  display: block;
}
.case-study-single blockquote {
  background: #F4F6FA;
  border-radius: 12px;
  padding: 32px 24px 24px;
  position: relative;
  margin-top: 16px;
}
.case-study-single blockquote::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 20px;
  font-size: 60px;
  color: #C9CDD2;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 481px) {
  .case-study-single blockquote {
    margin-top: 32px;
  }
}
.case-study-single blockquote p {
  font-weight: 400;
  line-height: 170%;
  padding: 0 0 0 20px;
}
@media screen and (min-width: 481px) {
  .case-study-single blockquote p {
    font-size: 18px;
  }
}
.case-study-single blockquote strong {
  font-weight: 700;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .case-study-single blockquote strong {
    font-size: 18px;
  }
}
.case-study-single__cta {
  margin: 0 auto;
  width: calc(100% - 40px);
  background: #E4ECF7;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 481px) {
  .case-study-single__cta {
    width: calc(100% - 90px);
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__cta {
    width: 720px;
  }
}
.case-study-single__cta-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (min-width: 481px) {
  .case-study-single__cta-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single__cta-title {
    font-size: 20px;
  }
}
.case-study-single__cta-text {
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .case-study-single__cta-text {
    font-size: 18px;
  }
}
.case-study-single__cta-btn {
  width: 212px;
  margin: 0 auto;
}
.case-study-single #ez-toc-container {
  border-radius: 16px;
}
.case-study-single #ez-toc-container a:hover {
  text-decoration: none;
}

.case-study-single-kv {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 835px) {
  .case-study-single-kv {
    width: 862px;
    margin: 0 auto 80px;
  }
}
.case-study-single-kv__image {
  width: 100%;
}
.case-study-single-kv__image img {
  width: 100%;
  height: 212px;
  aspect-ratio: 195/106;
  object-fit: cover;
  margin: 0;
}
@media screen and (min-width: 481px) {
  .case-study-single-kv__image img {
    height: 440px;
  }
}
.case-study-single-kv__company-info {
  border-radius: 12px;
  background: linear-gradient(180deg, #EAF1F8 0%, #FAFCFD 76.44%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 40px);
  margin: -55px auto 0;
}
@media screen and (min-width: 481px) {
  .case-study-single-kv__company-info {
    padding: 32px;
    width: calc(100% - 90px);
    margin: -80px auto 0;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single-kv__company-info {
    width: 720px;
    margin: -57px auto 0;
  }
}
.case-study-single-kv__company-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-study-single-kv__company-name {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .case-study-single-kv__company-name {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .case-study-single-kv__company-name {
    font-size: 22px;
  }
}
.case-study-single-kv__meta-label {
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  display: block;
}
@media screen and (min-width: 481px) {
  .case-study-single-kv__meta-label {
    font-size: 18px;
  }
}
.case-study-single-kv__meta-value {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: block;
}
@media screen and (min-width: 481px) {
  .case-study-single-kv__meta-value {
    font-size: 18px;
  }
}

.related-articles {
  padding: 60px 20px;
}
@media screen and (min-width: 481px) {
  .related-articles {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 835px) {
  .related-articles {
    padding: 120px 0;
  }
}
.related-articles__title {
  font-size: 25px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .related-articles__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .related-articles__title {
    font-size: 32px;
  }
}
.related-articles__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .related-articles__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 481px) {
  .related-articles__card {
    width: 350px;
  }
}
@media screen and (min-width: 835px) {
  .related-articles__card {
    width: 406px;
  }
}
.related-articles__btn {
  font-size: 14px;
  width: 201px;
  margin: 0 auto;
  padding: 12px 24px 12px 32px;
  display: flex;
  gap: 30px;
}
.related-articles__btn .arrow-wrapper {
  margin-left: 0;
}
.related-articles__btn:hover .arrow-wrapper {
  transform: rotate(45deg);
}
.related-articles__no-posts {
  text-align: center;
  margin-bottom: 40px;
}

/* --------------------------------------------------
 * Privacy Policy（プライバシーポリシー）
 * -------------------------------------------------- */
.privacy-policy {
  width: calc(100% - 40px);
  margin: 0 auto 60px;
}
@media screen and (min-width: 481px) {
  .privacy-policy {
    width: calc(100% - 80px);
    margin: 0 auto 80px;
  }
}
@media screen and (min-width: 835px) {
  .privacy-policy {
    width: 1280px;
    margin: 0 auto 120px;
  }
}
.privacy-policy__inner {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 32px 12px;
  margin-bottom: 60px;
}
@media screen and (min-width: 481px) {
  .privacy-policy__inner {
    padding: 32px;
  }
}
.privacy-policy__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.privacy-policy__text.mb-16 {
  margin-bottom: 16px;
}
.privacy-policy__text.mb-32 {
  margin-bottom: 32px;
}
.privacy-policy__item {
  margin-bottom: 32px;
}
.privacy-policy h2 {
  color: #1A2792;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
  padding-left: 1em;
  text-indent: -1em;
  word-break: keep-all;
}
@media screen and (min-width: 481px) {
  .privacy-policy h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .privacy-policy h2 {
    font-size: 20px;
  }
}
.privacy-policy__strong {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 16px;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}
.privacy-policy__list {
  list-style: disc;
  padding-left: 23px;
}
.privacy-policy__list.mb-16 {
  margin-bottom: 16px;
}
.privacy-policy__list li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.privacy-policy__orderList {
  list-style: decimal;
  padding-left: 20px;
}
.privacy-policy__orderList.mb-16 {
  margin-bottom: 16px;
}
.privacy-policy__orderList li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.privacy-policy__updated {
  color: #5A5A69;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
  margin-bottom: 16px;
}
.privacy-policy__btn-wrapper {
  text-align: center;
}
.privacy-policy__btn {
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
}
.privacy-policy__btn .arrow-wrapper {
  margin-left: 0;
}
.privacy-policy__btn:hover .arrow-wrapper {
  transform: rotate(45deg);
}

.privacy-policy-contact-info h3 {
  color: #1A2792;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
@media screen and (min-width: 481px) {
  .privacy-policy-contact-info h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .privacy-policy-contact-info h3 {
    font-size: 20px;
  }
}
.privacy-policy-contact-info__inner {
  border-radius: 8px;
  background: #F4F6FA;
  padding: 16px;
}
.privacy-policy-contact-info__strong {
  color: #1A2792;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.privacy-policy-contact-info__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.privacy-policy-contact-info__link {
  color: #1A2792;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

/* --------------------------------------------------
 * Careers
 * -------------------------------------------------- */
.career-main-section {
  background: #F4F6FA;
  padding: 0 0 60px;
  position: relative;
}
.career-main-section::before {
  content: "Together" "\a" "from Asia," "\a" "Toward the Future" "\a" "of Global IT";
  white-space: pre-line;
  position: absolute;
  right: 8px;
  bottom: 92px;
  background: linear-gradient(90deg, #A7B1FD 0%, #D7DCFB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0.3;
  pointer-events: none;
  text-align: right;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 109%;
}
@media screen and (min-width: 481px) {
  .career-main-section::before {
    font-size: 92px;
    right: 14px;
    bottom: 0;
  }
}
.career-main-section__title {
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-main-section__title {
    font-size: 47px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-main-section__title {
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.career-main-section__title_blue {
  color: #00F;
}
.career-main-section__images-carousel {
  overflow: hidden;
  width: 100%;
  margin: 60px 0;
}
.career-main-section__images-carousel .carousel-track {
  display: flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  animation: scroll-carousel 50s linear infinite;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track {
    gap: 20px;
  }
}
.career-main-section__images-carousel .carousel-track img {
  height: 100px;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track img {
    height: 200px;
  }
}
.career-main-section__images-carousel .carousel-track .img-1 {
  width: 145px;
  margin-top: 25px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-1 {
    width: 289px;
    margin-top: 50px;
  }
}
.career-main-section__images-carousel .carousel-track .img-2 {
  width: 145px;
  margin-top: 16px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-2 {
    width: 289px;
    margin-top: 32px;
  }
}
.career-main-section__images-carousel .carousel-track .img-3 {
  width: 72px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-3 {
    width: 144px;
  }
}
.career-main-section__images-carousel .carousel-track .img-1-1 {
  width: 145px;
  margin-top: 16px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-1-1 {
    width: 289px;
    margin-top: 32px;
  }
}
.career-main-section__images-carousel .carousel-track .img-4 {
  width: 138px;
  margin-top: 25px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-4 {
    width: 275px;
    margin-top: 50px;
  }
}
.career-main-section__images-carousel .carousel-track .img-5 {
  width: 138px;
  margin-top: 16px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-5 {
    width: 275px;
    margin-top: 32px;
  }
}
.career-main-section__images-carousel .carousel-track .img-6 {
  width: 137px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-6 {
    width: 274px;
  }
}
.career-main-section__images-carousel .carousel-track .img-7 {
  width: 70px;
  margin-top: 16px;
}
@media screen and (min-width: 481px) {
  .career-main-section__images-carousel .carousel-track .img-7 {
    width: 140px;
    margin-top: 32px;
  }
}
.career-main-section__inner {
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-main-section__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-main-section__inner {
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.career-main-section__desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 240%;
  margin-bottom: 48px;
}
@media screen and (min-width: 481px) {
  .career-main-section__desc {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) and (min-width: 481px) {
  .career-main-section__desc {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) and (min-width: 835px) {
  .career-main-section__desc {
    font-size: 22px;
  }
}
.career-main-section__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 481px) {
  .career-main-section__btns {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }
}
.career-main-section__btn {
  color: #16163F;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: inline-flex;
  padding: 12px 18px 12px 30px;
  justify-content: flex-start;
  gap: 35px;
  border-radius: 40px;
  background: #E4ECF7;
  border: 2px solid #E4ECF7;
  width: auto;
  align-self: flex-start;
}
.career-main-section__btn:hover {
  color: #fff;
  background: #99A7B6;
  border: 2px solid #99A7B6;
  opacity: 1;
}
.career-main-section__btn:hover .arrow-normal {
  color: #fff;
}
.career-main-section__btn:hover .arrow-normal path {
  fill: #fff;
}
.career-main-section__btn .arrow-wrapper {
  margin: 0;
}
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.career-positions-section {
  padding: 60px 0;
}
@media screen and (min-width: 481px) {
  .career-positions-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 835px) {
  .career-positions-section {
    padding: 120px 0;
  }
}
.career-positions-section__inner {
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-positions-section__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-positions-section__inner {
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
  }
}
.career-positions-section__inner.no-positions-container {
  align-items: center;
}
.career-positions-section__inner.no-positions-container .career-positions-section__title {
  margin-bottom: 48px;
}
@media screen and (min-width: 835px) {
  .career-positions-section__inner.no-positions-container .career-positions-section__title {
    margin-bottom: 0;
  }
}
.career-positions-section__title {
  font-size: 25px;
  color: #1A2792;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 48px;
}
@media screen and (min-width: 481px) {
  .career-positions-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-positions-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-positions-section__title {
    flex-shrink: 0;
    min-width: min-content;
  }
}
.career-positions-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .career-positions-section__list {
    flex: 1 1 0;
    max-width: 100%;
  }
}
.career-positions-section__link {
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  gap: 16px;
  transition: background 0.2s;
}
.career-positions-section__link:hover {
  background: #E4ECF7;
  opacity: 1;
}
.career-positions-section__link:hover .cmn-arrow-link {
  transform: rotate(-45deg);
}
@media screen and (min-width: 481px) {
  .career-positions-section__link {
    padding: 20px 32px;
  }
}
.career-positions-section__item-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
@media screen and (min-width: 481px) {
  .career-positions-section__item-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .career-positions-section__item-title {
    font-size: 22px;
  }
}
.career-positions-section__item-sub {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  margin-bottom: 4px;
}
.career-positions-section__item-desc {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.career-positions-section .no-positions {
  border-radius: 12px;
  background: #E0E5EE;
  padding: 20px;
}
@media screen and (min-width: 481px) {
  .career-positions-section .no-positions {
    padding: 20px 32px;
  }
}

.career-benefits-section {
  background: #fff;
  padding: 60px 0;
}
@media screen and (min-width: 481px) {
  .career-benefits-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section {
    padding: 120px 0;
  }
}
.career-benefits-section__inner {
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__inner {
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
  }
}
.career-benefits-section__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 48px;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__title {
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: min-content;
    width: 240px;
  }
}
.career-benefits-section__desc {
  line-height: 170%;
  margin-bottom: 40px;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__desc {
    font-size: 18px;
  }
}
.career-benefits-section__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.career-benefits-section__box {
  background: #F4F6FA;
  border-radius: 12px;
  padding: 20px;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__box {
    grid-template-columns: min-content 1fr;
    height: 252px;
  }
}
.career-benefits-section__box-title {
  color: #1A2792;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #C9CDD2;
}
@media screen and (min-width: 481px) {
  .career-benefits-section__box-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__box-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 481px) {
  .career-benefits-section__box-title {
    border-bottom: none;
    border-right: 1px solid #C9CDD2;
    padding: 0 12px 0 0;
    margin: 0 12px 0 0;
  }
}
@media screen and (min-width: 835px) {
  .career-benefits-section__box-title {
    width: 134px;
  }
}
.career-benefits-section__box-list {
  padding-left: 22px;
  list-style: disc;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.career-faq-section {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #D8E1FF 100%);
  padding: 80px 0 20px;
}
@media screen and (min-width: 481px) {
  .career-faq-section {
    padding: 80px 0 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-faq-section {
    padding: 80px 0;
  }
}
.career-faq-section__inner {
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-faq-section__inner {
    padding: 0 45px;
  }
}
@media screen and (min-width: 835px) {
  .career-faq-section__inner {
    width: 785px;
    padding: 0 32px;
    margin: 0 auto;
  }
}
.career-faq-section__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .career-faq-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-faq-section__title {
    font-size: 32px;
  }
}
.career-faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career-faq-section__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23, 40, 112, 0.04);
  padding: 20px;
}
@media screen and (min-width: 481px) {
  .career-faq-section__item {
    padding: 40px;
  }
}
.career-faq-section__question {
  color: #1A2792;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 8px;
}
@media screen and (min-width: 481px) {
  .career-faq-section__question {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .career-faq-section__question {
    font-size: 20px;
  }
}
.career-faq-section__answer {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.career-faq-section ol {
  padding-left: 22px;
  list-style: decimal;
}

.career-apply-section {
  background: #fff;
  padding: 60px 0;
}
@media screen and (min-width: 481px) {
  .career-apply-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section {
    padding: 120px 0;
  }
}
.career-apply-section__inner {
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .career-apply-section__inner {
    padding: 0 45px;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section__inner {
    width: 785px;
    padding: 0 32px;
    margin: 0 auto;
  }
}
.career-apply-section__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .career-apply-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 481px) {
  .career-apply-section__title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section__title {
    margin-bottom: 60px;
  }
}
.career-apply-section__desc {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .career-apply-section__desc {
    text-align: center;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section__desc {
    font-size: 18px;
  }
}
.career-apply-section__small {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: block;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) {
  .career-apply-section__small {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-apply-section__small {
    margin-bottom: 60px;
  }
}

.career-detail {
  background: #fff;
  padding: 96px 0;
}
@media screen and (min-width: 835px) {
  .career-detail__container {
    width: 720px;
    margin: 0 auto;
  }
}
.career-detail__header {
  padding: 30px 20px 0;
}
@media screen and (min-width: 481px) {
  .career-detail__header {
    padding: 40px 45px 0;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__header {
    padding: 60px 0 0;
  }
}
.career-detail__title {
  color: #101828;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .career-detail__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__title {
    font-size: 32px;
  }
}
.career-detail__subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 30px;
  display: block;
}
@media screen and (min-width: 481px) {
  .career-detail__subtitle {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__subtitle {
    margin-bottom: 60px;
  }
}
.career-detail__lead {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .career-detail__lead {
    font-size: 18px;
    padding: 0 45px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__lead {
    padding: 0;
  }
}
.career-detail__sections {
  border: 2px solid #E4ECF7;
  background: #fff;
  padding: 32px 20px;
}
@media screen and (min-width: 481px) {
  .career-detail__sections {
    padding: 20px;
    width: calc(100% - 90px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__sections {
    padding: 32px;
    width: 100%;
  }
}
.career-detail h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 12px;
  border-left: 3px solid #1A2792;
  padding: 3px 0 3px 12px;
}
@media screen and (min-width: 481px) {
  .career-detail h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail h2 {
    font-size: 20px;
  }
}
.career-detail p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
.career-detail p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .career-detail p {
    margin-bottom: 40px;
  }
}
.career-detail__apply {
  width: calc(100% - 40px);
  margin: 30px auto;
  text-align: center;
}
@media screen and (min-width: 481px) {
  .career-detail__apply {
    width: 340px;
    margin: 40px auto;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__apply {
    margin: 60px auto;
  }
}
.career-detail__apply-bg {
  background: #1A2792;
  color: #fff;
  border-radius: 80px;
  padding: 20px 40px;
  display: block;
  border: 2px solid #1A2792;
}
.career-detail__apply-bg:hover {
  background: #fff;
  color: #1A2792;
  border: 2px solid #1A2792;
  opacity: 1;
}
.career-detail__apply-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 6px;
}
@media screen and (min-width: 481px) {
  .career-detail__apply-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__apply-title {
    font-size: 20px;
  }
}
.career-detail__apply-desc {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.career-detail__back-btn-link {
  color: #5A5A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  padding: 0 20px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.career-detail__back-btn-link:hover {
  color: #1A2792;
  opacity: 1;
}
@media screen and (min-width: 481px) {
  .career-detail__back-btn-link {
    padding: 0 45px;
  }
}
@media screen and (min-width: 835px) {
  .career-detail__back-btn-link {
    padding: 0;
    width: 1280px;
    margin: 0 auto;
  }
}
.career-detail__icon {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------
 * Services Page
 * -------------------------------------------------- */
.services-main .related-articles__title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-main .related-articles__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-main .related-articles__title {
    font-size: 32px;
  }
}
.services-main .related-articles__title_ja {
  margin-bottom: 0;
}
.services-main .related-articles__title-sub {
  color: #5A5A69;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .services-main .related-articles__title-sub {
    font-size: 18px;
  }
}
.services-main .related-articles__btn {
  font-size: 17px;
  width: 209px;
  gap: 38px;
  padding: 12px 18px 12px 24px;
  margin: 0 auto;
}
.services-main .related-articles__btn:hover .arrow-wrapper {
  transform: rotate(-45deg);
}

.services-main_visual {
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden;
}
@media screen and (min-width: 481px) {
  .services-main_visual {
    padding: 200px 40px 103px;
  }
}
@media screen and (min-width: 835px) {
  .services-main_visual {
    padding: 190px 0 120px;
  }
}
.services-main_visual__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services-main_visual__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 center;
}
@media screen and (min-width: 835px) {
  .services-main_visual__background img {
    object-position: 358px center;
  }
}
.services-main_visual .main-visual-bg-pc {
  display: none;
}
@media screen and (min-width: 481px) {
  .services-main_visual .main-visual-bg-pc {
    display: block;
  }
}
@media screen and (min-width: 481px) {
  .services-main_visual .main-visual-bg-sp {
    display: none;
  }
}
.services-main_visual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, #1A2792 0%, rgba(26, 39, 146, 0) 100%);
}
@media screen and (min-width: 481px) {
  .services-main_visual__overlay {
    background: linear-gradient(90deg, #1A2792 0%, rgb(26, 39, 146) 20%, rgba(26, 39, 146, 0) 80%);
  }
}
@media screen and (min-width: 835px) {
  .services-main_visual__overlay {
    background: linear-gradient(90deg, rgb(26, 39, 146) 0%, rgb(26, 39, 146) 50%, rgba(26, 39, 146, 0.3) 60%, rgba(26, 39, 146, 0.1) 85%, transparent 100%);
  }
}
.services-main_visual__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .services-main_visual__inner {
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 481px) {
  .services-main_visual__content {
    width: 68%;
  }
}
@media screen and (min-width: 835px) {
  .services-main_visual__content {
    width: 46%;
  }
}
.services-main_visual h1 {
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .services-main_visual h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 835px) {
  .services-main_visual h1 {
    font-size: 40px;
  }
}
.services-main_visual h2 {
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .services-main_visual h2 {
    font-size: 43px;
  }
}
@media screen and (min-width: 835px) {
  .services-main_visual h2 {
    font-size: 46px;
  }
}
.services-main_visual__description {
  color: #FFF;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-main_visual__description {
    font-size: 18px;
  }
}

.services-challenges {
  padding: 60px 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 481px) {
  .services-challenges {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 835px) {
  .services-challenges {
    padding: 80px 0 83px;
    border-radius: 40px 40px 0 0;
    margin-top: -35px;
  }
}
.services-challenges__inner {
  text-align: center;
}
.services-challenges__inner-title {
  margin-bottom: 48px;
}
.services-challenges .section-title {
  color: #1A2792;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-challenges .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-challenges .section-title {
    font-size: 32px;
  }
}
.services-challenges .section-title-sub {
  color: #5A5A69;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-challenges .section-title-sub {
    font-size: 18px;
  }
}
.services-challenges .challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 20px;
}
@media screen and (min-width: 481px) {
  .services-challenges .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-challenges .challenges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.services-challenges .challenge-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #F4F6FA;
  background: #F4F6FA;
}
@media screen and (min-width: 481px) {
  .services-challenges .challenge-item {
    padding: 30px;
  }
}
.services-challenges .challenge-icon {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 481px) {
  .services-challenges .challenge-icon {
    margin: 0 auto 28px;
  }
}
@media screen and (min-width: 835px) {
  .services-challenges .challenge-icon {
    margin: 0 auto 34px;
  }
}
.services-challenges .challenge-icon img {
  width: 48px;
  height: 48px;
}
.services-challenges .challenge-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-challenges .challenge-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .services-challenges .challenge-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) {
  .services-challenges .challenge-title_br {
    display: block;
  }
}
.services-challenges .challenge-description {
  color: #5A5A69;
  font-size: 14px;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-challenges .challenge-description {
    font-size: 16px;
  }
}

.services-process {
  padding: 0 20px 60px;
  background-color: #fff;
}
@media screen and (min-width: 481px) {
  .services-process {
    padding: 0 40px 80px;
  }
}
@media screen and (min-width: 835px) {
  .services-process {
    padding: 0 0 120px;
  }
}
.services-process__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 835px) {
  .services-process__inner {
    flex-direction: row;
    gap: 63px;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.services-process__title-section {
  text-align: center;
}
@media screen and (min-width: 835px) {
  .services-process__title-section {
    text-align: left;
    flex-shrink: 0;
    width: 280px;
  }
}
.services-process .section-title {
  color: #1A2792;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-process .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-process .section-title {
    font-size: 32px;
  }
}
.services-process .section-title-sub {
  color: #5A5A69;
  text-align: center;
  font-weight: 400;
  line-height: 170%;
  display: block;
}
@media screen and (min-width: 481px) {
  .services-process .section-title-sub {
    font-size: 18px;
  }
}
@media screen and (min-width: 835px) {
  .services-process .section-title-sub {
    text-align: left;
  }
}
.services-process__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 2px solid #E2E6ED;
  padding: 0 0 0 32px;
}
@media screen and (min-width: 481px) {
  .services-process__content {
    padding: 0 0 0 30px;
  }
}
@media screen and (min-width: 835px) {
  .services-process__content {
    flex: 1;
  }
}
.services-process .process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  position: relative;
}
.services-process .process-item:before {
  content: "";
  position: absolute;
  top: 34px;
  left: -40px;
  width: 12px;
  height: 12px;
  background-color: #00F;
}
@media screen and (min-width: 481px) {
  .services-process .process-item:before {
    top: 28px;
    left: -36px;
  }
}
@media screen and (min-width: 835px) {
  .services-process .process-item {
    gap: 22px;
  }
  .services-process .process-item:before {
    top: 12px;
  }
}
.services-process .process-item_lines:before {
  top: 50px;
}
@media screen and (min-width: 481px) {
  .services-process .process-item_lines:before {
    top: 28px;
    left: -36px;
  }
}
@media screen and (min-width: 835px) {
  .services-process .process-item_lines:before {
    top: 12px;
  }
}
.services-process .process-number {
  font-size: 25px;
  color: #00F;
  font-style: italic;
  font-weight: 700;
  line-height: 120%;
  flex-shrink: 0;
}
.services-process .process-content {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}
.services-process .process-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-process .process-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .services-process .process-title {
    font-size: 22px;
  }
}
.services-process .process-description {
  color: #5A5A69;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-process .process-description {
    font-size: 18px;
  }
}

.services-solutions {
  padding: 60px 20px;
  background: url(../images/common/bg-services-solutions.webp);
}
@media screen and (min-width: 481px) {
  .services-solutions {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions {
    padding: 80px 0;
  }
}
@media screen and (min-width: 481px) {
  .services-solutions .container {
    padding: 0 20px;
  }
}
.services-solutions__title-section {
  margin-bottom: 48px;
  text-align: center;
}
.services-solutions .section-title {
  color: #1A2792;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-solutions .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .section-title {
    font-size: 32px;
  }
}
.services-solutions .section-title-sub {
  color: #5A5A69;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-solutions .section-title-sub {
    font-size: 18px;
  }
}
.services-solutions .solutions-grid {
  display: grid;
  justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 481px) {
  .services-solutions .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.services-solutions .solution-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E4E7EC;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  padding: 40px 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-solutions .solution-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.services-solutions .solution-card:nth-child(1) {
  transition-delay: 0.1s;
}
.services-solutions .solution-card:nth-child(2) {
  transition-delay: 0.2s;
}
.services-solutions .solution-card:nth-child(3) {
  transition-delay: 0.3s;
}
.services-solutions .solution-card:nth-child(4) {
  transition-delay: 0.4s;
}
.services-solutions .solution-card:nth-child(5) {
  transition-delay: 0.5s;
}
.services-solutions .solution-card:nth-child(6) {
  transition-delay: 0.6s;
}
.services-solutions .solution-card__image {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-card__image {
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .solution-card__image {
    margin-bottom: 28px;
  }
}
.services-solutions .solution-card__image img {
  width: 160px;
  height: 160px;
}
.services-solutions .solution-card__content {
  text-align: left;
}
.services-solutions .solution-card__title {
  color: #1A2792;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-card__title {
    font-size: 26px;
  }
}
.services-solutions .solution-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
  line-height: 170%;
}
.services-solutions .solution-card__features li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-card__features li {
    font-size: 18px;
  }
}
.services-solutions .solution-card .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.services-solutions .solution-contact {
  padding: 48px 0 0;
}
@media screen and (min-width: 835px) {
  .services-solutions .solution-contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.services-solutions .solution-contact__content {
  background: #1A236F;
  padding: 40px 20px;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-contact__content {
    padding: 44px 85px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .solution-contact__content {
    padding: 45px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
  }
}
.services-solutions .solution-contact__badge {
  font-weight: 700;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-contact__badge {
    font-size: 18px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .solution-contact__badge {
    margin-bottom: 12px;
  }
}
.services-solutions .solution-contact__title {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-contact__title {
    font-size: 26px;
    margin: 0;
  }
}
.services-solutions .solution-contact__description {
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 20px;
}
@media screen and (min-width: 481px) {
  .services-solutions .solution-contact__description {
    font-size: 18px;
  }
}
@media screen and (min-width: 835px) {
  .services-solutions .solution-contact__description {
    max-width: 632px;
  }
}
.services-solutions .solution-contact .cmn-btn {
  background: #00F;
  border: 2px solid #00F;
}
.services-solutions .solution-contact .cmn-btn:hover {
  background: #fff;
  color: #00F;
}
.services-solutions .solution-contact .cmn-btn:hover .arrow-normal {
  color: #00F;
}
.services-solutions .solution-contact .cmn-btn:hover .arrow-normal path {
  fill: #00F;
}

.services-success {
  padding: 60px 20px;
  background: #fff;
}
@media screen and (min-width: 481px) {
  .services-success {
    padding: 80px 20px;
  }
}
.services-success__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-success__title-section {
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (min-width: 481px) {
  .services-success__title-section {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 835px) {
  .services-success__title-section {
    margin-bottom: 40px;
  }
}
.services-success .section-title {
  color: #1A2792;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (min-width: 481px) {
  .services-success .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-success .section-title {
    font-size: 32px;
  }
}
.services-success .section-title-sub {
  color: #5A5A69;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 481px) {
  .services-success .section-title-sub {
    font-size: 18px;
  }
}
.services-success .success-cases-grid {
  display: grid;
  gap: 34px;
}
@media screen and (min-width: 481px) {
  .services-success .success-cases-grid {
    gap: 40px;
  }
}
@media screen and (min-width: 835px) {
  .services-success .success-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.services-success .success-case-item {
  text-align: center;
  padding: 12px 0;
}
.services-success .success-case-icon {
  margin: 0 auto 30px;
  display: block;
}
.services-success .success-case-icon img {
  width: 58px;
  height: 58px;
}
.services-success .success-case-title {
  color: #1A2792;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 28px;
}
@media screen and (min-width: 481px) {
  .services-success .success-case-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 835px) {
  .services-success .success-case-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 481px) {
  .services-success .success-case-title {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 835px) {
  .services-success .success-case-title {
    margin-bottom: 34px;
  }
}
.services-success .success-case-description {
  line-height: 170%;
  text-align: left;
}
@media screen and (min-width: 481px) {
  .services-success .success-case-description {
    font-size: 18px;
  }
}

.grecaptcha-badge {
  bottom: 100px !important;
  position: absolute !important;
  z-index: 100;
}
@media screen and (min-width: 481px) {
  .grecaptcha-badge {
    bottom: 20px !important;
  }
}/*# sourceMappingURL=style.css.map */