@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__wrapper {
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 0 25px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__inner {
    padding: 25px 50px 0 50px;
  }
}

.h-logo {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h-logo__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.h-logo__icon {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .h-logo__icon {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1200px) {
  .h-logo__icon {
    width: 50px;
    height: 50px;
  }
}

.h-logo__text {
  font-size: 22px;
  font-weight: 700;
  color: #4a5568;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .h-logo__text {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .h-logo__text {
    font-size: 26px;
  }
}

.h-menu__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.h-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92.56deg, #2064ae 0.95%, #36a1be 99.4%);
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #ffffff;
  border-radius: 110px;
  padding: 7px 15px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}
@media (min-width: 768px) {
  .h-menu-btn {
    padding: 10px 20px;
  }
}
@media (min-width: 1200px) {
  .h-menu-btn {
    display: none;
  }
}

.h-menu-btn.is-active {
  color: #0f5886;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #2064ae 0%, #359dbd 100%) border-box;
}

.h-hum {
  display: none;
}

.h-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
  overflow-y: auto;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
}
@media (min-width: 1200px) {
  .h-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
    padding: 0;
    right: 0;
  }
}

.h-menu--sp.is-open {
  right: 0;
}

.h-menu__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (min-width: 1200px) {
  .h-menu__close {
    display: none;
  }
}

.h-menu.is-open + .h-menu__close {
  display: block;
}

.h-menu--pc {
  display: none;
}
@media (min-width: 1200px) {
  .h-menu--pc {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 12px 50px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 30px rgba(188, 188, 188, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 80px;
  }
}

.h-menu--sp {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(90deg, #2269af 0%, #36a1be 100%);
  overflow-y: auto;
  transition: right 0.4s ease;
  padding: 66px 25px 80px 25px;
}
@media (min-width: 1200px) {
  .h-menu--sp {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

.menu-pc__list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-pc__item {
  position: relative;
}

.menu-pc__link {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 200%;
  display: block;
  transition: color ease 0.3s;
  white-space: nowrap;
}

.menu-pc__link:hover {
  color: #2064ae;
}

.menu-pc__cta-list {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-pc__cta-list .menu-pc__cta {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #2064ae;
  border-radius: 60px;
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #226ab0 0%, #359dbd 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
  padding: 10px 20px;
  transition: all ease 0.3s;
}

.menu-pc__cta-list .menu-pc__cta:hover {
  background: linear-gradient(92.56deg, #2064ae 0.95%, #36a1be 99.4%);
  border: 1px solid transparent;
  color: #ffffff;
}

.menu-pc__cta-list .menu-pc__cta-primary {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  border: 1px solid transparent;
  background: linear-gradient(92.56deg, #2064ae 0.95%, #36a1be 99.4%);
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 110px;
  cursor: pointer;
}

.menu-pc__cta-list .menu-pc__cta-primary:hover {
  background: #fff;
  color: #2064ae;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #2064ae 0%, #359dbd 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.menu-sp__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-sp__item--has-sub {
  margin-bottom: 20px;
}
.menu-sp__item--has-sub .menu-sp__sublist {
  list-style: none;
}
.menu-sp__item--has-sub .menu-sp__sublink {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 229%;
  color: #ffffff;
  display: block;
  padding-left: 14px;
  position: relative;
  transition: opacity 0.3s;
}
.menu-sp__item--has-sub .menu-sp__sublink::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3192bb;
  width: 8px;
  height: 2px;
}
.menu-sp__item--has-sub .menu-sp__sublink:hover {
  opacity: 0.7;
}

.menu-sp__link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 200%;
  color: #ffffff;
  display: block;
  padding-bottom: 20px;
  transition: opacity 0.3s;
}

.menu-sp__link:hover {
  opacity: 0.8;
}

.menu-sp__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 200%;
  color: #ffffff;
}

.menu-sp__item--footer .menu-sp__sublist {
  list-style: none;
}
.menu-sp__item--footer .menu-sp__sublink {
  font-weight: 700;
  font-size: 12px;
  line-height: 250%;
  color: #ffffff;
  text-decoration: none;
}

.h-menu__cta {
  display: none;
}

.cta-bottom {
  display: none;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../img/bgimg_mv_001_i.jpg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: cover;
}
@media (min-width: 768px) {
  .mv {
    background-image: url("../img/bgimg_mv_001.jpg");
    background-position: 50% 50%;
  }
}
.mv .mv__ttl {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89.1%;
}
@media (min-width: 768px) {
  .mv .mv__ttl {
    top: 24.1%;
    left: 13.33%;
    transform: translate(0);
    width: 43%;
  }
}
@media (min-width: 1200px) {
  .mv .mv__ttl {
    width: 38.83%;
  }
}
.mv .mv__ttl .mv__bg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.scroll {
  position: absolute;
  top: 75%;
  left: 3.33%;
}
@media (min-width: 768px) {
  .scroll {
    top: 65.6%;
    left: 13.33%;
  }
}

.scroll-text {
  background: linear-gradient(90deg, #236ab0 0%, #3399bc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  transform: rotate(90deg);
}

.scroll-border {
  position: relative;
  top: 25px;
  left: -1px;
  width: 1px;
  height: 120px;
  background-color: #ffffff;
  overflow: hidden;
  margin: auto;
}
@media (min-width: 768px) {
  .scroll-border {
    width: 2px;
    height: 187px;
  }
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #2268af 0%, #349bbd 100%);
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}
@media (min-width: 768px) {
  .scroll-border::before {
    width: 2px;
    height: 50px;
  }
}

@keyframes scrollbar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(350%);
  }
}
.company-strength {
  background-image: url("../img/bgimg_strength_001.jpg");
  background-position: bottom;
  background-size: cover;
  height: 170vh;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .company-strength {
    padding-top: 165px;
  }
}

.company-strength__inner {
  width: calc(100% - 50px);
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 768px) {
  .company-strength__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
}
.company-strength__inner .company-strength__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .company-strength__inner .company-strength__title {
    font-size: 30px;
    line-height: 180%;
    margin-bottom: 0;
  }
}
.company-strength__inner .company-strength__items {
  width: 100%;
}
@media (min-width: 768px) {
  .company-strength__inner .company-strength__items {
    width: 493px;
  }
}
.company-strength__inner .company-strength__items .company-strength__description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 229%;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .company-strength__inner .company-strength__items .company-strength__description {
    font-size: 16px;
    line-height: 212%;
    margin-bottom: 36px;
  }
}
.company-strength__inner .company-strength__item-button {
  position: relative;
  width: 47.5%;
  display: none;
  border-radius: 60px;
  background: transparent;
}
.company-strength__inner .company-strength__item-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 60px;
  background: linear-gradient(90deg, #2269af, #349cbd);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.company-strength__inner .company-strength__item-button:hover::before {
  -webkit-mask: none;
  mask: none;
}
.company-strength__inner .company-strength__item-button:hover .btn_link {
  color: #ffffff;
}
.company-strength__inner .company-strength__item-button .btn_link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 244%;
  color: #000000;
  text-decoration: none;
  z-index: 1;
  padding: 7.8px 20px 9.8px 25px;
  transition: all 0.3s ease;
}
.company-strength__inner .company-strength__item-button .btn_link::after {
  content: "";
  display: inline-block;
  width: 22.4px;
  height: 22.09px;
  background-image: url("../img/icon_button_02.svg");
  background-size: contain;
  transition: all 0.3s ease;
}
.company-strength__inner .company-strength__item-button .btn_link:hover::after {
  background-image: url("../img/icon_button_01.svg");
}
@media (min-width: 768px) {
  .company-strength__inner .company-strength__item-button {
    display: inline-block;
  }
}

.scroll-section {
  position: relative;
  height: 200vh;
}

.circle-container {
  position: sticky;
  top: 0;
  height: 130vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.expanding-circle {
  position: absolute;
  width: 135px;
  height: 135px;
  background: linear-gradient(to right, #226aaf 12.49%, #349cbd 87.54%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .expanding-circle {
    width: 200px;
    height: 200px;
  }
}

.circle-text {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .circle-text {
    font-size: 20px;
  }
}

.content-section {
  position: relative;
  background: linear-gradient(135deg, #2b7cbc 0%, #1a5a8a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.content-inner {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.content-inner h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content-inner p {
  font-size: 1.1rem;
  line-height: 2;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #2b7cbc;
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: "";
  width: 20px;
  height: 30px;
  border: 2px solid #2b7cbc;
  border-radius: 10px;
  position: relative;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 4px;
  height: 8px;
  background: #2b7cbc;
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes scrollDot {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }
}
.scroll-area {
  height: 600vh;
  position: relative;
  background: linear-gradient(90deg, #ffffff 0%, #d3f6ff 42.96%, #c4e4ff 78.77%, #ffffff 99.3%);
}

.solution-intro-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(to right, #226aaf 12.49%, #349cbd 87.54%);
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: -100vh;
  z-index: 0;
}

.sticky-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("../img/bgimg_solution_001.jpg");
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 0 0 50px 50px;
  padding-top: 0;
}
.sticky-panel .sticky-panel__glow {
  display: none;
}

.solution-header {
  display: none;
}
@media (min-width: 1200px) {
  .solution-header {
    display: block;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1400px;
    width: calc(100% - 124px);
  }
}
.solution-header .solution-header__title {
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 140px;
  line-height: 100%;
  background: linear-gradient(90deg, #004383 1.7%, #0073c4 50.96%, #009ff9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
}
.solution-header .solution-header__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 160%;
  color: #ffffff;
}

.solution-header--sp {
  position: absolute;
  top: 3rem;
  left: 4%;
  display: block;
  text-align: left;
  width: 100%;
}
@media (min-width: 1200px) {
  .solution-header--sp {
    display: none;
  }
}
.solution-header--sp .solution-header__title {
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  background: linear-gradient(90deg, #004383 1.7%, #0073c4 50.96%, #009ff9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.solution-header--sp .solution-header__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 250%;
  color: #ffffff;
}

.main-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 130px 63px 0 63px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 1200px) {
  .main-grid {
    flex-direction: row;
    gap: 30px;
    max-width: 1400px;
    width: calc(100% - 124px);
    align-items: center;
    justify-content: initial;
    padding-top: 10%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.service-menu {
  display: none;
}
@media (min-width: 1200px) {
  .service-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: clamp(207px, 20vw, 207px);
  }
}
.service-menu .service-menu__item {
  padding-left: 16px;
  border-radius: 8px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-menu .service-menu__item .service-menu__item__bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdbdbd;
  transition: background 0.3s ease;
}
.service-menu .service-menu__item .service-menu__item__label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 244%;
  color: #bdbdbd;
  transition: all 0.3s ease;
}
.service-menu .service-menu__item--active .service-menu__item__bar {
  background: #4cedff;
}
.service-menu .service-menu__item--active .service-menu__item__label {
  color: #4cedff;
}

.service-circle {
  position: relative;
  width: min(40vh, 100%);
  height: min(40vh, 100%);
  order: 1;
  margin-inline: auto;
  aspect-ratio: 1/1;
  animation: floatCircle 4s ease-in-out infinite;
}
@media (min-width: 768px) {
  .service-circle {
    width: min(39.375rem, 50vh);
    height: min(39.375rem, 50vh);
  }
}
@media (min-width: 1200px) {
  .service-circle {
    width: clamp(207px, 50vw, 533px);
    height: 100%;
    order: unset;
  }
}
.service-circle .service-circle__inner {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-circle .service-circle__inner .service-circle__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.service-circle .service-circle__inner .service-circle__img--active {
  opacity: 1;
  transform: scale(1);
}

@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}
.service-desc {
  position: relative;
  order: 2;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .service-desc {
    position: static;
    order: unset;
    width: clamp(200px, 20vw, 286px);
    height: auto;
    display: block;
    gap: 0;
  }
}
.service-desc .service-desc__container {
  height: auto;
  flex: 1;
  text-align: left;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__container {
    position: relative;
    overflow: hidden;
    height: 500px;
    flex: unset;
  }
}
.service-desc .service-desc__panel {
  position: relative;
  display: none;
  transform: none;
  opacity: 1;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.service-desc .service-desc__panel .service-desc__badge {
  display: inline-block;
  margin-bottom: 5px;
}
.service-desc .service-desc__panel .service-desc__badge .service-desc__badge__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel .service-desc__badge .service-desc__badge__text {
    font-size: 32px;
    line-height: 156%;
  }
}
.service-desc .service-desc__panel .service-desc__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel .service-desc__title {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 30px;
  }
}
.service-desc .service-desc__panel .service-desc__body {
  font-weight: 500;
  font-size: 14px;
  line-height: 214%;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 13px;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel .service-desc__body {
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 35px;
  }
}
.service-desc .service-desc__panel .service-desc__btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 5px 20px;
  border: 2px solid #ffffff;
  border-radius: 60px;
  color: #ffffff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 279%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel .service-desc__btn {
    gap: 52px;
    padding: 8px 20px 10px 25px;
    font-size: 16px;
    line-height: 244%;
  }
}
.service-desc .service-desc__panel .service-desc__btn:hover {
  background-color: #ffffff;
  color: #2064ae;
}
.service-desc .service-desc__panel .service-desc__btn:hover .service-desc__btn-arrow {
  background-image: url("../img/icon_button_02.svg");
}
.service-desc .service-desc__panel .service-desc__btn .service-desc__btn-arrow {
  width: 22.4px;
  height: 22.14px;
  background-image: url("../img/icon_button_01.svg");
  background-size: contain;
  transition: background-image 0.3s ease;
}
.service-desc .service-desc__panel--active {
  display: block;
  position: relative;
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
  }
  .service-desc .service-desc__panel--active .service-desc__badge {
    animation: fadeInElement 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  }
  .service-desc .service-desc__panel--active .service-desc__title {
    animation: fadeInElement 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  .service-desc .service-desc__panel--active .service-desc__body {
    animation: fadeInElement 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }
  .service-desc .service-desc__panel--active .service-desc__btn {
    animation: fadeInElement 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  }
}
@media (min-width: 1200px) {
  .service-desc .service-desc__panel--prev {
    transform: translateY(-30px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInElement {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.dots-nav {
  position: absolute;
  bottom: 0px;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .dots-nav {
    display: none;
  }
}
.dots-nav .dots-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bdbdbd;
  transition: all 0.3s ease;
}
.dots-nav .dots-nav__dot--active {
  background: #4cedff;
}

.slider-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: linear-gradient(90deg, #ffffff 0%, #d3f6ff 42.96%, #c4e4ff 78.77%, #ffffff 99.3%);
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
}

.slider-section::before {
  content: "";
  background-image: none;
}

.slider-section::after {
  content: "";
  background-image: none;
}

.slider-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  order: 2;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.slider-item {
  width: auto;
  flex-shrink: 0;
}

.slider-item img {
  display: block;
  width: 250px;
  height: 161px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.slider-content {
  position: relative;
  z-index: 10;
  text-align: center;
  background: transparent;
  padding: 56px 34px;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  order: 1;
  background: url("../img/circle_img_001.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.slider-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3a8dba 0%, #5ab0d5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.slider-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.slider-title {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 165%;
  text-align: center;
  letter-spacing: 0.03em;
  color: #1758a7;
  margin-bottom: 15px;
}

.slider-description {
  font-weight: 500;
  font-size: clamp(11px, 1.5vw, 14px);
  line-height: 214%;
  text-align: center;
  letter-spacing: 0.03em;
  color: #000000;
}

@media (min-width: 768px) {
  .slider-section {
    background: linear-gradient(90deg, #ffffff 0%, #d3f6ff 42.96%, #c4e4ff 78.77%, #ffffff 99.3%);
    min-height: 884px;
    flex-direction: row;
    padding: 0;
    justify-content: center;
  }
  .slider-section::before {
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 44.2%;
    height: 62.1%;
    background-image: url("../img/bgimg_slider_01.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .slider-section::after {
    content: "";
    position: absolute;
    bottom: 3%;
    left: 0;
    width: 44.2%;
    height: 62.1%;
    background-image: url("../img/bgimg_slider_02.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .slider-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    order: 0;
  }
  .slider-track {
    gap: 25px;
  }
  .slider-item img {
    width: 457px;
    height: 294px;
    border-radius: 15px;
  }
  .slider-content {
    padding: 98px 78px 94px 84px;
    width: 450px;
    height: 450px;
    order: 0;
  }
  .slider-icon {
    width: 50px;
    height: 50px;
    margin: -65px auto 20px;
  }
  .slider-icon svg {
    width: 24px;
    height: 24px;
  }
  .slider-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 30px;
  }
  .slider-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #000000;
  }
}
.project {
  width: 100%;
  background: linear-gradient(90deg, #ffffff 0%, #d3f6ff 42.96%, #c4e4ff 78.77%, #ffffff 99.3%);
}

.project_inner {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .project_inner {
    padding: 75px 0 120px;
  }
}

.project_inner::before {
  content: "";
  position: absolute;
  width: 100%;
  inset: 0;
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  z-index: -1;
  pointer-events: none;
}

.project__container {
  max-width: 1400px;
  width: calc(100% - 50px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 1200px) {
  .project__container {
    width: calc(100% - 120px);
    grid-template-columns: 440px 1fr;
    gap: 155px;
  }
}

.project__header {
  align-self: start;
}
@media (min-width: 1200px) {
  .project__header {
    position: sticky;
    top: 80px;
  }
}

.project__title-en {
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  background: linear-gradient(90deg, #004383 1.7%, #0073c4 50.96%, #009ff9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (min-width: 1200px) {
  .project__title-en {
    line-height: 170%;
    font-size: 80px;
  }
}

.project__title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 250%;
  color: #000000;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .project__title-ja {
    font-size: 25px;
    line-height: 160%;
    margin-bottom: 50px;
  }
}

.project__description {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 229%;
  color: #000000;
}
@media (min-width: 1200px) {
  .project__description {
    font-size: 16px;
    line-height: 212%;
  }
}

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

.project__cases .case-card {
  border-radius: 10px;
  padding: 32.5px 20px 37.5px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .project__cases .case-card {
    grid-template-columns: 1fr 251px;
    gap: 60px;
    padding: 48px 40px 52px 40px;
    border-radius: 15px;
  }
}
.project__cases .pin-spacer:nth-of-type(1) .case-card {
  background-color: #e1ebf6;
}
.project__cases .pin-spacer:nth-of-type(2) .case-card {
  background-color: #cbe4fb;
}
.project__cases .pin-spacer:nth-of-type(3) .case-card {
  background-color: #b4cfe8;
}

.case-card.pin-spacer,
.pin-spacer {
  z-index: auto;
}

@media (min-width: 1200px) {
  .case-card--first {
    margin-top: 45px;
  }
}

.case-card__content {
  display: flex;
  flex-direction: column;
}

.case-card__number {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .case-card__number {
    font-size: 16px;
    line-height: 162%;
    margin-bottom: 30px;
  }
}

.case-card__title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 19px;
}
@media (min-width: 1200px) {
  .case-card__title {
    font-size: 25px;
    line-height: 228%;
    margin-bottom: 24px;
  }
}

.case-card__description {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 214%;
  color: #000000;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .case-card__description {
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 60px;
  }
}

.case-card__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-radius: 60px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
}
@media (min-width: 1200px) {
  .case-card__button {
    padding: 8.88px 25px 8.88px 25px;
    font-size: 16px;
    line-height: 244%;
    gap: 50px;
  }
}
.case-card__button span {
  z-index: 2;
}

.case-card__button::before {
  content: "";
  position: absolute;
  inset: 0;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(to right, #2269af 0%, #349cbd 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -1;
}

.case-card__button:hover {
  color: #fff;
}
.case-card__button:hover::before {
  -webkit-mask: none;
  mask: none;
}

.case-card__button::after {
  content: "";
  display: inline-block;
  width: 15.35px;
  height: 15.17px;
  background-image: url("../img/icon_button_02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 3;
}
@media (min-width: 1200px) {
  .case-card__button::after {
    width: 22.4px;
    height: 22.09px;
  }
}

.case-card__button:hover::after {
  background-image: url("../img/icon_button_01.svg");
}

.case-card__image {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  order: 1;
}
@media (min-width: 1200px) {
  .case-card__image {
    width: 100%;
    height: 311px;
    border-radius: 15px;
    margin-top: auto;
  }
}

.case-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  width: 100%;
  padding: 58px 0;
}
@media (min-width: 768px) {
  .news {
    padding: 160px 0;
  }
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  width: calc(100% - 48px);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .news-header {
    margin-bottom: 40px;
  }
}

.news-title {
  flex-shrink: 0;
}

.news-title-en {
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  background: linear-gradient(90deg, #004383 1.7%, #0073c4 50.96%, #009ff9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: #fff;
  letter-spacing: 0em;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .news-title-en {
    font-size: 80px;
    margin-bottom: 5px;
  }
}

.news-title-ja {
  font-weight: 700;
  font-size: 16px;
  line-height: 250%;
  color: #000000;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .news-title-ja {
    font-size: 25px;
    line-height: 100%;
  }
}

.news-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 12px 27px;
  border: none;
  border-radius: 60px;
  background: transparent;
  color: #000000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 244%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
  min-width: 137px;
  box-sizing: border-box;
  position: relative;
}
.news-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(to right, #2269af 0%, #349cbd 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -1;
}
.news-button:hover {
  color: #ffffff;
}
.news-button:hover::before {
  -webkit-mask: none;
  mask: none;
}
.news-button:hover .news-button-arrow {
  background-image: url("../img/icon_button_01.svg");
}
.news-button .news-button-arrow {
  width: 22.4px;
  height: 22.14px;
  background-image: url("../img/icon_button_02.svg");
  background-size: contain;
  transition: background-image 0.3s ease;
}
@media (min-width: 768px) {
  .news-button {
    padding: 12px 24px 14px 29px;
    min-width: 196px;
    font-size: 16px;
  }
  .news-button::before {
    padding: 2px;
  }
}

.news-header .news-button {
  display: none;
}
@media (min-width: 768px) {
  .news-header .news-button {
    display: inline-flex;
  }
}

.news-list {
  list-style: none;
}

.news-item {
  border-top: 1px solid #cccccc;
  transition: background 0.2s ease;
}

.news-item:last-child {
  border-bottom: 1px solid #cccccc;
}

.news-link {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .news-link {
    flex-direction: row;
    gap: 50px;
    padding: 32px 0;
  }
}

.news-link:hover {
  opacity: 0.7;
}

.news-date {
  flex-shrink: 0;
  font-size: 14px;
  color: #30557e;
  font-weight: 700;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .news-date {
    font-size: 16px;
  }
}

.news-text {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .news-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.news-button-sp {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news-button-sp {
    display: none;
  }
}

.recruit {
  margin-bottom: 80px;
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  width: calc(100% - 48px);
  min-height: auto;
  overflow: visible;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .recruit {
    margin-bottom: 190px;
    min-height: 480px;
  }
}

.recruit-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .recruit-container {
    display: block;
  }
}

.recruit-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 1200px) {
  .recruit-header {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.recruit-title {
  flex-shrink: 0;
}

.recruit-title-en {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  background: linear-gradient(90deg, #004383 1.7%, #0073c4 50.96%, #009ff9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: #fff;
  letter-spacing: 0em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .recruit-title-en {
    font-size: 80px;
  }
}

.recruit-title-ja {
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .recruit-title-ja {
    font-size: 25px;
    line-height: 100%;
  }
}

.recruit-description {
  max-width: 100%;
  text-align: left;
  padding-top: 0;
}
@media (min-width: 768px) {
  .recruit-description {
    text-align: right;
    padding-top: 10px;
  }
}

.recruit-description p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 214%;
  color: #000000;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .recruit-description p {
    font-size: 18px;
    line-height: 200%;
    text-align: left;
  }
}

.recruit-description .highlight {
  color: #1758a7;
  font-weight: 900;
}

.recruit-main-visual {
  position: relative;
  order: 1;
  margin: 10px 0 -30px;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-main-visual {
    order: unset;
    margin: -20px 0 10px;
    text-align: unset;
  }
}
@media (min-width: 1200px) {
  .recruit-main-visual {
    order: unset;
    margin: -80px 0 -20px;
    text-align: unset;
  }
}

.recruit-connect picture {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: auto;
}

.recruit-connect picture source,
.recruit-connect picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.recruit-button-wrapper {
  text-align: center;
  order: 2;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .recruit-button-wrapper {
    order: unset;
    margin-top: 0;
  }
}

.recruit-button {
  display: inline-flex;
  align-items: center;
  gap: 52px;
  padding: 10px 22px 12px 27px;
  border: none;
  border-radius: 60px;
  background: transparent;
  color: #000000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 244%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
  min-width: 137px;
  box-sizing: border-box;
  position: relative;
}
.recruit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(to right, #2269af 0%, #349cbd 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -1;
}
.recruit-button:hover {
  color: #ffffff;
}
.recruit-button:hover::before {
  -webkit-mask: none;
  mask: none;
}
.recruit-button:hover .recruit-button-arrow {
  background-image: url("../img/icon_button_01.svg");
}
.recruit-button .recruit-button-arrow {
  width: 22.4px;
  height: 22.14px;
  background-image: url("../img/icon_button_02.svg");
  background-size: contain;
  transition: background-image 0.3s ease;
}
@media (min-width: 768px) {
  .recruit-button {
    padding: 12px 24px 14px 29px;
    min-width: 196px;
    font-size: 16px;
  }
  .recruit-button::before {
    padding: 2px;
  }
}

.cta {
  margin-inline: auto;
  background: linear-gradient(135deg, #226bb0 0%, #349cbd 100%);
  border-radius: 15px;
  padding: 74px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(58, 141, 186, 0.2);
}
@media (min-width: 1200px) {
  .cta {
    width: calc(100% - 48px);
    max-width: 1550px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 94px 64px;
    gap: 100px;
  }
}

.cta-title {
  flex-shrink: 0;
}

.cta-title-en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .cta-title-en {
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 20px;
  }
}

.cta-title-ja {
  font-weight: 700;
  font-size: 14px;
  line-height: 214%;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cta-title-ja {
    font-size: 25px;
    line-height: 100%;
  }
}

.cta-description {
  flex: 1;
  padding-left: 0;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .cta-description {
    padding-left: 40px;
    margin-top: 0;
  }
}

.cta-description p {
  font-weight: 500;
  font-size: 14px;
  line-height: 214%;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cta-description p {
    font-size: 16px;
    line-height: 200%;
  }
}

.cta-button {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  margin-top: 15px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .cta-button {
    width: 96px;
    height: 96px;
    margin-top: 0;
    align-self: auto;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
}

.cta-button:hover {
  background: #ffffff;
  border-color: #fff;
}

.cta-button svg {
  width: 22px;
  height: auto;
  stroke: rgba(255, 255, 255, 0.9);
  transition: stroke 0.3s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .cta-button svg {
    width: 28px;
  }
}
.cta-button svg path {
  transition: stroke 0.3s ease;
}

.cta-button:hover svg path {
  stroke: #2064ae;
}

.footer-wrapper {
  padding: 50px 0 0;
  position: relative;
  margin: 0 auto 0;
  background: linear-gradient(to right, #ffffff 0%, #d3f6ff 43%, #c4e4ff 79%, #ffffff 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer-wrapper {
    padding: 140px 0 0;
  }
}

.footer {
  padding: 60px 0 40px;
}
@media (min-width: 768px) {
  .footer {
    padding: 160px 0 100px;
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .footer-container {
    padding: 0;
  }
}

.footer-main {
  display: block;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .footer-main {
    grid-template-columns: 300px 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  display: block;
  width: 175px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .footer-logo img {
    width: 206px;
  }
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a5a8a;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer-logo-text {
    font-size: 24px;
  }
}

.company-name {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .company-name {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.company-info {
  font-size: 10px;
}
@media (min-width: 768px) {
  .company-info {
    font-size: inherit;
  }
}

.company-info:not(:last-of-type) {
  margin-bottom: 25px;
  font-size: 12px;
  color: #000000;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .company-info:not(:last-of-type) {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.company-info.company-info--branch p {
  font-size: 12px;
}
@media (min-width: 768px) {
  .company-info.company-info--branch p {
    font-size: 12px;
  }
}

.company-info p {
  font-weight: 500;
  font-size: 12px;
  line-height: 183%;
  color: #000000;
}
@media (min-width: 768px) {
  .company-info p {
    font-size: 14px;
    line-height: 171%;
  }
}

.branch-label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-top: 12px;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .branch-label {
    margin-top: 15px;
  }
}

.footer-nav {
  display: none;
}
@media (min-width: 768px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
@media (min-width: 1200px) {
  .footer-nav {
    grid-template-columns: max-content max-content max-content;
    margin-left: auto;
  }
}

.footer-nav-column h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  border-bottom: none;
}

.footer-nav-column h3 a {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: unset;
  border-bottom: none;
}

.footer-nav-column h3 a::before {
  display: none;
}

.footer-nav-column ul {
  list-style: none;
}

.footer-nav-column li {
  margin-bottom: 8px;
}

.footer-nav-column a {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}

.footer-nav-column a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  background-color: #3192bb;
  height: 2px;
  width: 10px;
}

.footer-nav-column a:hover {
  color: #1a5a8a;
}

.footer-nav-column-section:not(:first-of-type) {
  margin-top: 32px;
}

.footer-sp-links {
  display: block;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #000000;
}
@media (min-width: 768px) {
  .footer-sp-links {
    display: none;
  }
}

.footer-sp-links ul {
  list-style: none;
}

.footer-sp-links li:not(:last-of-type) {
  margin-bottom: 8px;
}

.footer-sp-links a {
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  display: block;
}

.footer-bottom {
  display: flex;
  text-align: left;
  align-items: flex-start;
  padding: 0;
  margin-top: 0;
  flex-wrap: wrap;
  gap: 15px;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .footer-bottom {
    border-top: 1px solid #000000;
    padding-top: 10px;
    margin-top: unset;
  }
}
@media (min-width: 1200px) {
  .footer-bottom {
    flex-direction: row;
    text-align: unset;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-weight: 500;
  font-size: 12px;
  line-height: 250%;
  color: #000000;
}
@media (min-width: 768px) {
  .footer-copyright {
    font-size: 14px;
    line-height: 214%;
  }
}

.footer-bottom-links {
  display: none;
}
@media (min-width: 768px) {
  .footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
}

.footer-bottom-links a {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #1a5a8a;
}

.br-display {
  display: block;
}
@media (min-width: 768px) {
  .br-display {
    display: none;
  }
}/*# sourceMappingURL=top.css.map */