@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&family=Zen+Kaku+Gothic+New:wght@500&display=swap");
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.scroll-animate-fade.animate {
  opacity: 1;
}

.scroll-animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate-slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate-slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate-scale.animate {
  opacity: 1;
  transform: scale(1);
}

.duration-fast.scroll-animate, .duration-fast.scroll-animate-fade, .duration-fast.scroll-animate-slide-left, .duration-fast.scroll-animate-slide-right, .duration-fast.scroll-animate-scale {
  transition-duration: 0.4s;
}

.duration-slow.scroll-animate, .duration-slow.scroll-animate-fade, .duration-slow.scroll-animate-slide-left, .duration-slow.scroll-animate-slide-right, .duration-slow.scroll-animate-scale {
  transition-duration: 1.2s;
}

.duration-slower.scroll-animate, .duration-slower.scroll-animate-fade, .duration-slower.scroll-animate-slide-left, .duration-slower.scroll-animate-slide-right, .duration-slower.scroll-animate-scale {
  transition-duration: 1.6s;
}

.delay-1.scroll-animate, .delay-1.scroll-animate-fade, .delay-1.scroll-animate-slide-left, .delay-1.scroll-animate-slide-right, .delay-1.scroll-animate-scale {
  transition-delay: 0.2s;
}

.delay-2.scroll-animate, .delay-2.scroll-animate-fade, .delay-2.scroll-animate-slide-left, .delay-2.scroll-animate-slide-right, .delay-2.scroll-animate-scale {
  transition-delay: 0.4s;
}

.delay-3.scroll-animate, .delay-3.scroll-animate-fade, .delay-3.scroll-animate-slide-left, .delay-3.scroll-animate-slide-right, .delay-3.scroll-animate-scale {
  transition-delay: 0.6s;
}

.delay-4.scroll-animate, .delay-4.scroll-animate-fade, .delay-4.scroll-animate-slide-left, .delay-4.scroll-animate-slide-right, .delay-4.scroll-animate-scale {
  transition-delay: 0.8s;
}

.delay-5.scroll-animate, .delay-5.scroll-animate-fade, .delay-5.scroll-animate-slide-left, .delay-5.scroll-animate-slide-right, .delay-5.scroll-animate-scale {
  transition-delay: 1s;
}

.btn_01 {
  position: relative;
  display: inline-block;
  border: 2px solid #1D1A76;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  min-width: 140px;
  text-align: center;
  padding: 20px 40px 20px 40px;
  text-decoration: none;
  color: #1D1A76;
}
.btn_01::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background-image: url(/common/img/arrow_bm.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .btn_01:hover {
    border: 2px solid #00B7FF;
    color: #00B7FF;
    transition: all 0.3s ease;
  }
  .btn_01:hover::after {
    background-image: url(/common/img/arrow_sb.svg);
  }
}
.btn_01.secondary-1 {
  border-color: #0614CF;
  color: #0614CF;
  font-weight: 600;
}
.btn_01.secondary-1::after {
  background-image: url(/common/img/arrow_b.svg);
}
@media screen and (min-width: 1024px) {
  .btn_01.secondary-1:hover {
    border: 2px solid #00B7FF;
    color: #00B7FF;
    transition: all 0.3s ease;
  }
  .btn_01.secondary-1:hover::after {
    background-image: url(/common/img/arrow_sb.svg);
  }
}
.btn_01.white {
  border-color: #fff;
  color: #fff;
}
.btn_01.white::after {
  background-image: url(/common/img/arrow_w.svg);
}
@media screen and (min-width: 1024px) {
  .btn_01.white:hover {
    border: 2px solid #E1FF38;
    color: #E1FF38;
    transition: all 0.3s ease;
  }
  .btn_01.white:hover::after {
    background-image: url(/common/img/arrow_y.svg);
  }
}
.btn_01.gradient {
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  color: #fff;
  border: 0;
}
.btn_01.gradient::after {
  background-image: url(/common/img/arrow_w.svg);
}
@media screen and (min-width: 1024px) {
  .btn_01.gradient:hover {
    background: linear-gradient(324deg, #4863FF 33.4%, #663BFF 83.79%);
    transition: all 0.3s ease;
  }
}

.footer_cta {
  position: relative;
  padding: 140px 0;
  background: url(/common/img/bg_contact.png) no-repeat center center #0614CF;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_cta {
    padding: 80px 0;
  }
}
.footer_cta .inner {
  width: calc(100% - 100px);
  padding-inline: 50px;
  margin: 0 auto;
  text-align: center;
}
.footer_cta .cont_ttl {
  margin-bottom: 80px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  color: #fff;
}
.footer_cta .contact_btn {
  margin-top: 80px;
  text-align: center;
}
.footer_cta p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.breadcrumb {
  width: 100%;
  padding: 20px 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
}
.breadcrumb li {
  position: relative;
  padding: 0;
  margin: 0;
}
.breadcrumb li a {
  color: #1D1A76;
  text-decoration: none;
}
.breadcrumb li:not(:last-child) {
  padding-right: 16px;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 1px #1D1A76;
  border-right: solid 1px #1D1A76;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.breadcrumb-list {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  z-index: 10000;
  padding: 0 50px;
  min-width: auto;
  background: transparent;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
    padding: 0 15px;
  }
}
.header.header-hidden {
  transform: translateY(-100%);
}
.header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.header nav {
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header nav {
    width: calc(100% - 30px);
  }
}
.header nav:has(.hamburger.active) .header_logo img {
  display: none;
}
.header nav:has(.hamburger.active) .header_logo a {
  display: block;
  width: 136px;
  height: 35px;
  background: url(/common/img/logo_Algoage_w.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .header nav:has(.hamburger.active) .header_logo a {
    width: 93px;
    height: 26px;
  }
}
.header nav:has(.hamburger.active) .header_logo a img {
  width: auto;
}
.header .header_logo {
  flex-shrink: 0;
  z-index: 10001;
}
.header .header_logo img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header .header_logo img {
    height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .header .header_logo img {
    height: 24px;
  }
}
.header .header_menu_subnav {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header_menu_subnav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header .header_menu_subnav li a {
    text-decoration: none;
    color: #1D1A76;
  }
}
@media screen and (max-width: 768px) {
  .header .header_menu_subnav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 40px;
  height: 18px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  padding: 8px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header .hamburger {
    width: 30px;
    height: 13px;
  }
}
.header .hamburger span {
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
  border-radius: 1px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .header .hamburger span {
    width: 30px;
    height: 2px;
  }
}
.header .hamburger span:nth-child(2) {
  width: 27px;
}
@media screen and (max-width: 768px) {
  .header .hamburger span:nth-child(2) {
    width: 17px;
  }
}
.header .hamburger.scrolled span {
  background-color: #1D1A76;
}
.header .hamburger.active span {
  background-color: #fff !important;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
@media screen and (max-width: 768px) {
  .header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
}
.header .hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 40px;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .header .hamburger.active span:nth-child(2) {
    width: 30px;
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.header .header_menu {
  display: none;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #969CB5;
  z-index: 9999;
  padding: 60px 0;
  margin: 0;
  padding-top: 150px;
  padding-bottom: 60px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .header .header_menu {
    padding-top: 100px;
    gap: 50px;
  }
}
.header .header_menu.open {
  display: flex;
  transform: translateY(0);
}
.header .header_menu.open .header_menu_list li {
  opacity: 1;
  transform: translateY(0);
}
.header .header_menu.open .header_menu_sns {
  opacity: 1;
  transform: translateY(0);
}
.header .header_menu::after {
  content: "";
  display: block;
  height: 60px;
  width: 100%;
  flex-shrink: 0;
}
.header .header_menu_list {
  display: flex;
  width: calc(100% - 100px);
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  min-height: fit-content;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .header .header_menu_list {
    width: calc(100% - 80px);
    padding: 0 40px;
    gap: 30px;
    font-size: 20px;
    width: auto;
  }
}
.header .header_menu_list li {
  list-style: none;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.header .header_menu_list li:nth-child(1) {
  transition-delay: 0.1s;
}
.header .header_menu_list li:nth-child(2) {
  transition-delay: 0.2s;
}
.header .header_menu_list li:nth-child(3) {
  transition-delay: 0.3s;
}
.header .header_menu_list li:nth-child(4) {
  transition-delay: 0.4s;
}
.header .header_menu_list li:nth-child(5) {
  transition-delay: 0.5s;
}
.header .header_menu_list a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  text-decoration: none;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .header_menu_list a {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1;
    gap: 8px;
  }
}
.header .header_menu_list a .text_en {
  width: 45%;
  font-size: 56px;
  font-weight: 500;
  text-align: right;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header .header_menu_list a .text_en {
    width: 100%;
    font-size: 40px;
    text-align: left;
  }
}
.header .header_menu_list a .text_jp {
  width: calc(55% - 48px);
  text-align: left;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .header .header_menu_list a .text_jp {
    width: 100%;
    font-size: 18px;
    line-height: 1;
  }
}
.header .header_menu_list a:hover {
  color: #E1FF38;
}
.header .header_menu_sns {
  display: flex;
  gap: 40px;
  width: calc(100% - 100px);
  justify-content: flex-end;
  align-items: center;
  padding: 0 50px 50px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.5s;
}
.header .header_menu_sns li a img {
  width: auto;
  height: 27px;
}
.header .header_menu_sns li a:hover img {
  transition: all 0.3s ease;
  opacity: 0.7;
}
.header .header_menu_sns li:nth-child(1) a img {
  height: 18px;
}

body.menu-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  body:has(#top) .header .hamburger span {
    background: #1D1A76;
  }
}

.footer {
  display: flex;
  align-items: flex-end;
  background: url(/common/img/bg_footer.jpg) no-repeat top center #1D1A76;
  background-size: cover;
  aspect-ratio: 1500/900;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 80px 0;
    background: url(/common/img/bg_footer_sp.jpg) no-repeat top center #1D1A76;
    aspect-ratio: 563/1230;
    background-size: cover;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}
.footer ul {
  list-style: none;
}
.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding-bottom: 80px;
  padding-inline: 40px;
}
@media screen and (max-width: 640px) {
  .footer .inner {
    gap: 50px;
    max-width: 300px;
    padding-bottom: 20px;
  }
}
.footer .footer_nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 640px) {
  .footer .footer_nav {
    gap: 32px;
  }
}
.footer .footer_nav .logo {
  padding: 30px 20px;
  max-width: 200px;
}
@media screen and (max-width: 640px) {
  .footer .footer_nav .logo {
    padding: 30px 0;
  }
}
.footer .footer_nav .logo img {
  width: 132px;
  height: 132px;
  opacity: 0.5;
}
@media screen and (max-width: 640px) {
  .footer .footer_nav .logo img {
    width: 90px;
    height: 90px;
  }
}
.footer .footer_nav ul {
  display: flex;
  gap: 40px;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  .footer .footer_nav ul {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .footer_subnav {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 640px) {
  .footer .footer_subnav {
    width: 100%;
    flex-direction: column;
    gap: 24px;
    order: 2;
  }
}
.footer .footer_subnav .privacy_list {
  display: flex;
  gap: 40px;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .footer .footer_subnav .privacy_list {
    justify-content: space-between;
    order: 1;
  }
}
.footer .footer_subnav .copyright {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 640px) {
  .footer .footer_subnav .copyright {
    order: 2;
  }
}
.footer .footer_sns {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .footer .footer_sns {
    order: 1;
  }
}
.footer .footer_sns img {
  height: 22px;
}
.footer .footer_sns li:nth-child(1) img {
  height: 14px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

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

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

#company .cont_ttl,
#products .cont_ttl {
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

@media screen and (max-width: 1240px) {
  #privacy .cont_ttl,
  #terms .cont_ttl {
    flex-direction: column;
  }
}

.cont_ttl_eng {
  white-space: nowrap;
}

.content {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 100px;
  color: #1D1A76;
  font-feature-settings: "palt" on;
  overflow-x: hidden;
}
.content img {
  width: 100%;
  height: auto;
}

.content_ttl .inner {
  display: flex;
  width: calc(100% - 100px);
  padding: 0 50px;
  aspect-ratio: 1500/330;
}
@media screen and (max-width: 1300px) {
  .content_ttl .inner {
    aspect-ratio: 1024/450;
  }
}
@media screen and (max-width: 768px) {
  .content_ttl .inner {
    justify-content: flex-end;
    aspect-ratio: 1125/673;
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}
.content_ttl .content_kv_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 2250px;
  min-width: 1500px;
  height: 100%;
  background: url(../../common/img/bg_header.jpg) no-repeat top left/contain #fff;
  z-index: -1;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
@media screen and (max-width: 1300px) {
  .content_ttl .content_kv_bg {
    background: url(../../common/img/bg_header_tab.jpg) no-repeat top right/80% #fff;
    margin-left: 20%;
  }
}
@media screen and (max-width: 768px) {
  .content_ttl .content_kv_bg {
    background: url(../../common/img/bg_header_sp.jpg) no-repeat top center/contain #fff;
    min-width: 100%;
  }
}
.content_ttl .content_ttl_inner {
  width: 70%;
  order: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  height: 100%;
  padding-right: 50px;
}
@media screen and (max-width: 1300px) {
  .content_ttl .content_ttl_inner {
    gap: 30px;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner {
    width: auto;
    padding: 0 10px;
    gap: 20px;
  }
}
.content_ttl .content_ttl_inner .cont_ttl {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  display: flex;
  align-items: last baseline;
  font-weight: 600;
  gap: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner .cont_ttl {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px 0;
  }
}
.content_ttl .content_ttl_inner .cont_ttl .cont_ttl_eng {
  font-size: 60px;
  letter-spacing: 0.03em;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner .cont_ttl .cont_ttl_eng {
    font-size: 32px;
  }
}
.content_ttl .content_ttl_inner .cont_ttl .cont_ttl_jp {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner .cont_ttl .cont_ttl_jp {
    font-size: 16px;
  }
}
.content_ttl .content_ttl_inner .cont_subnav {
  display: flex;
  gap: 40px;
  list-style: none;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner .cont_subnav {
    gap: 16px;
  }
}
.content_ttl .content_ttl_inner .cont_subnav li a {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .content_ttl .content_ttl_inner .cont_subnav li a {
    font-size: 12px;
  }
}
.content_ttl .breadcrumb {
  order: 1;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .content_ttl .breadcrumb {
    display: none;
  }
}

section .inner {
  width: calc(100% - 100px);
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.section_ttl {
  display: inline-block;
  width: auto;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  padding: 12px 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section_ttl {
    font-size: 18px;
    padding: 8px 24px;
    margin-bottom: 40px;
  }
}

#top.contents {
  overflow-x: hidden;
}

.top_kv {
  position: relative;
  width: 100%;
  height: 240vh;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_kv {
    height: 190vh;
  }
}
.top_kv .inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_kv .inner {
    height: 100vh;
  }
}
.top_kv .top_kv_bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(/img/top_kv.jpg) no-repeat top right/100% #fff;
  z-index: -1;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_bg {
    background: url(/img/top_kv_sp.jpg) no-repeat top right/cover #fff;
  }
}
.top_kv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66.666%;
  margin-left: 50px;
  z-index: 10;
  will-change: opacity, transform;
}
@media screen and (max-width: 768px) {
  .top_kv h1 {
    width: 90%;
    margin-inline-start: 0;
  }
}
.top_kv h1 img {
  width: 100%;
  height: auto;
}
.top_kv .top_kv_txt {
  position: absolute;
  top: 100vh;
  right: 0;
  width: 100%;
  height: auto;
  min-height: 120vh;
  font-size: 24px;
  line-height: 2;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  z-index: 20;
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top_kv .top_kv_txt.pc {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_txt.pc {
    display: none;
  }
}
.top_kv .top_kv_txt.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_txt.sp {
    display: flex;
    width: calc(100% - 90px);
    font-size: 16px;
    line-height: 1.25;
    padding: 20px 30px 40px 60px;
    min-height: auto;
    opacity: 0;
    transition: opacity 0.8s ease-out;
  }
}
.top_kv .top_kv_txt p {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15%;
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_txt p {
    padding-left: 0;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_txt p + p {
    margin-top: 16px;
  }
}
.top_kv .top_kv_txt span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-bottom: 0.5em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top_kv .top_kv_txt span {
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transform: translateY(20px);
  }
}
.top_kv .top_kv_txt span.animate {
  opacity: 1;
  transform: translateY(0);
}

.cont_ttl {
  font-size: 72px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  color: #1D1A76;
  font-weight: 400;
  margin-bottom: 80px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .cont_ttl {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
  }
}

.top_news {
  position: relative;
  background-color: #F2F3F7;
  padding: 140px 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_news {
    padding: 80px 0;
  }
}
.top_news a {
  text-decoration: none;
}
.top_news .inner {
  width: calc(100% - 100px);
  max-width: 1020px;
  margin: 0 auto;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  .top_news .inner {
    width: calc(100% - 40px);
    padding-inline: 20px;
  }
}
.top_news .news_list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-bottom: 24px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top_news .news_list {
    display: none;
  }
}
.top_news .news_list_select {
  display: none;
}
@media screen and (max-width: 768px) {
  .top_news .news_list_select {
    position: relative;
    display: block;
    width: 100%;
    height: 42px;
    max-width: 120px;
    padding: 8px 16px;
    border: none;
    color: #1D1A76;
    font-size: 16px;
    cursor: pointer;
    background-color: #F2F3F7;
    margin-left: auto;
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
  }
  .top_news .news_list_select:focus {
    outline: none;
  }
}
.top_news .news_list_item {
  display: flex;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .top_news .news_list_item {
    font-size: 16px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    padding-inline-end: 24px;
  }
  .top_news .news_list_item:hover {
    color: #0614CF;
  }
  .top_news .news_list_item:not(:first-child) {
    display: none;
    border-top: none;
  }
  .top_news .news_list_item:nth-child(2) {
    top: 100%;
  }
  .top_news .news_list_item:nth-child(3) {
    top: calc(100% + 40px);
  }
  .top_news .news_list_item:nth-child(4) {
    top: calc(100% + 80px);
  }
  .top_news .news_list_item:first-child {
    cursor: pointer;
    position: relative;
  }
  .top_news .news_list_item:first-child::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #1D1A76;
    border-right: solid 2px #1D1A76;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto;
  }
  .top_news .news_list_item:first-child.active::after {
    transform: rotate(225deg);
  }
  .top_news .news_list_item:first-child a {
    pointer-events: none; /* aタグのクリックを無効化してliで受ける */
  }
}
.top_news .news_list_item a {
  padding: 8px 24px;
  color: #1D1A76;
}
@media screen and (max-width: 768px) {
  .top_news .news_list_item a {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 12px 24px;
    line-height: 1.2;
    box-sizing: border-box;
  }
}
.top_news .news_list_item a:hover, .top_news .news_list_item a.current {
  color: #0614CF;
}
@media screen and (max-width: 768px) {
  .top_news .news_list_item a:hover, .top_news .news_list_item a.current {
    color: #1D1A76;
  }
}
.top_news .news_content p {
  color: #1D1A76;
}
.top_news .news_content p.no-posts {
  border-top: 1px solid #1D1A76;
  padding: 16px 0;
}
.top_news .news_content_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  border-top: 1px solid #1D1A76;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .top_news .news_content_list {
    padding: 16px 0;
    border-top: none;
  }
}
.top_news .news_content_item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: #1D1A76;
}
@media screen and (max-width: 768px) {
  .top_news .news_content_item a {
    flex-wrap: wrap;
    border-top: 1px solid #1D1A76;
  }
}
.top_news .news_content_item a:hover p {
  color: #0614CF;
  transition: all 0.3s ease;
}
.top_news .news_content_item a:hover .news_content_item_category {
  border: 1px solid #0614CF;
}
.top_news .news_content_item_date {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  min-width: 80px;
}
.top_news .news_content_item_category {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  border: 1px solid #1D1A76;
  padding: 6px 18px;
  min-width: 60px;
  text-align: center;
  text-transform: capitalize;
}
.top_news .news_content_item_ttl {
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .top_news .news_content_item_ttl {
    width: 100%;
    font-size: 14px;
  }
}
.top_news .news_btn {
  text-align: right;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .top_news .news_btn {
    text-align: center;
  }
}

.products {
  position: relative;
  padding: 140px 0;
  overflow-x: hidden;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .products {
    padding: 80px 0;
  }
}
.products .inner {
  width: calc(100% - 100px);
  padding-inline: 50px;
  margin: 0 auto;
}
.products .cont_ttl {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .products .cont_ttl {
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 0;
  }
}
.products .cont_ttl .cont_ttl_sub {
  display: block;
  width: fit-content;
  height: 10px;
  font-size: 32px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  color: #1D1A76;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .products .cont_ttl .cont_ttl_sub {
    font-size: 14px;
  }
}
.products .cont_ttl .cont_ttl_eng {
  font-size: 100px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .products .cont_ttl .cont_ttl_eng {
    font-size: 36px;
  }
}
.products .cont_ttl .cont_ttl_jp {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .products .cont_ttl .cont_ttl_jp {
    width: 100%;
    font-size: 15px;
  }
}
.products .top_products_list {
  position: relative;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .products .top_products_list {
    padding-bottom: 16px;
  }
}
.products .top_products_list_item {
  width: 640px;
  margin: 0 20px;
  padding: 32px 0;
}
@media screen and (max-width: 768px) {
  .products .top_products_list_item {
    padding: 24px 0;
  }
}
.products .top_products_list_item img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .products .top_products_list_item img {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  }
}
.products .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.products .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 40px;
  background-color: #E2E9F2;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .products .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 12px;
  }
}
.products .slick-dots li.slick-active, .products .slick-dots li:hover {
  background-color: #0614CF;
}
.products .slick-dots li button::before {
  content: "";
}
.products .products_btn {
  margin: 80px auto 0;
  text-align: center;
}

#company .mvv_content {
  width: auto;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #company .mvv_content {
    margin-bottom: 80px;
  }
}
#company .mvv_content:nth-of-type(2) .mvv_content_ttl,
#company .mvv_content:nth-of-type(2) .mvv_content_item {
  margin-left: 25%;
}
@media screen and (max-width: 768px) {
  #company .mvv_content:nth-of-type(2) .mvv_content_ttl,
  #company .mvv_content:nth-of-type(2) .mvv_content_item {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #company .mvv_content p {
    font-size: 14px;
    line-height: 1.75;
  }
}
#company .mvv_content.value .mvv_content_item {
  margin-left: auto;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item {
    gap: 24px;
  }
}
#company .mvv_content.value .mvv_content_item .mvv_content_img {
  width: calc(30.769% - 16px);
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item .mvv_content_img {
    width: 100%;
  }
}
#company .mvv_content.value .mvv_content_item .mvv_content_txt {
  width: calc(30.769% - 16px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item .mvv_content_txt {
    width: 100%;
    gap: 16px;
  }
}
#company .mvv_content.value .mvv_content_item .mvv_content_txt:nth-of-type(2), #company .mvv_content.value .mvv_content_item .mvv_content_txt:nth-of-type(5) {
  width: calc(32.307% - 16px);
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item .mvv_content_txt:nth-of-type(2), #company .mvv_content.value .mvv_content_item .mvv_content_txt:nth-of-type(5) {
    width: 100%;
  }
}
#company .mvv_content.value .mvv_content_item .mvv_content_txt_num {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 32px;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item .mvv_content_txt_num {
    font-size: 20px;
  }
}
#company .mvv_content.value .mvv_content_item h4 {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" on;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item h4 {
    font-size: 20px;
    cursor: pointer;
    padding-right: 50px;
    padding-bottom: 8px;
  }
  #company .mvv_content.value .mvv_content_item h4::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #1D1A76;
    border-right: solid 2px #1D1A76;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto;
    transition: transform 0.3s ease;
  }
  #company .mvv_content.value .mvv_content_item h4.active::after {
    transform: rotate(225deg);
  }
}
#company .mvv_content.value .mvv_content_item p {
  font-size: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  #company .mvv_content.value .mvv_content_item p {
    font-size: 14px;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    border-bottom: 1px solid #E2E9F2;
  }
  #company .mvv_content.value .mvv_content_item p.show {
    max-height: 280px;
    padding-bottom: 24px;
  }
}
#company .mvv_content .mvv_content_ttl {
  position: relative;
  width: auto;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_ttl {
    margin-bottom: 40px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px 0;
  }
}
#company .mvv_content .mvv_content_ttl .cont_ttl_sub {
  position: absolute;
  top: 30%;
  left: -10px;
  display: block;
  width: fit-content;
  line-height: 1;
  font-size: 24px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  color: #0614CF;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_ttl .cont_ttl_sub {
    font-size: 15px;
    top: 15px;
  }
}
#company .mvv_content .mvv_content_ttl .cont_ttl_eng {
  font-size: 72px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_ttl .cont_ttl_eng {
    font-size: 45px;
    padding-left: 20px;
  }
}
#company .mvv_content .mvv_content_ttl .cont_ttl_jp {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_ttl .cont_ttl_jp {
    width: 100%;
    font-size: 18px;
    margin-left: 0;
  }
}
#company .mvv_content .mvv_content_item {
  width: auto;
  display: inline-flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_item {
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }
}
#company .mvv_content .mvv_content_item .mvv_content_img {
  width: 380px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #company .mvv_content .mvv_content_item .mvv_content_img {
    width: 100%;
  }
}
#company .mvv_content .mvv_content_item .mvv_content_txt {
  width: auto;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}
#company .bm {
  background: url(/company/img/bg_boardmember.jpg) no-repeat center center/cover #F2F3F7;
  padding: 140px 0 120px;
}
@media screen and (max-width: 768px) {
  #company .bm {
    background: url(/company/img/bg_boardmember_sp.jpg) no-repeat center center/cover #F2F3F7;
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  #company .bm .inner {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #company .bm h2 {
    margin-left: 20px;
  }
}
#company .bm_content {
  width: 100%;
  display: flex;
  gap: 13px;
}
@media screen and (max-width: 768px) {
  #company .bm_content {
    width: calc(100% - 40px);
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 20px;
  }
}
#company .bm_content_item {
  width: calc(25% - 10px);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  #company .bm_content_item {
    width: 220px;
    flex-shrink: 0;
  }
}
#company .bm_content_item_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}
#company .bm_content_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#company .bm_content_item_img:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
#company .bm_content_item_txt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 16px;
  letter-spacing: 0.03em;
  font-size: 16px;
  flex-grow: 1;
}
#company .bm_content_item_txt_ttl {
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 24px;
}
#company .bm_content_item_txt_ttl span {
  font-size: 12px;
  line-height: 1.25;
}
#company .bm_content_item_txt_name {
  font-size: 20px;
  margin-top: auto;
}
#company .bm_content_item_txt_name_eng {
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
}
#company .bm_content_item_txt_sns {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 60px;
}
#company .bm_content_item_txt_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#company .bm_content_item_txt_sns a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
#company .bm_content_item_txt_sns img {
  width: 60px;
  height: auto;
}
#company .info {
  padding: 140px 0 40px;
}
@media screen and (max-width: 768px) {
  #company .info {
    padding: 80px 0 0;
  }
}
#company .info .inner {
  width: calc(100% - 100px);
  max-width: 820px;
  padding: 0 50px;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #company .info .inner {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}
#company .info dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #company .info dl {
    flex-direction: column;
    gap: 18px;
  }
}
#company .info dt {
  width: 100px;
  padding: 32px 40px;
  border-bottom: 1px solid #E2E9F2;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #company .info dt {
    width: 100%;
    padding: 8px 0 0;
    font-weight: 700;
    border-bottom: none;
  }
}
#company .info dt:last-of-type {
  border-bottom: none;
}
#company .info dd {
  width: calc(100% - 220px);
  padding: 32px 20px;
  border-bottom: 1px solid #E2E9F2;
}
@media screen and (max-width: 768px) {
  #company .info dd {
    width: 100%;
    padding: 0 0 24px;
  }
}
#company .info dd:last-of-type {
  border-bottom: none;
}
#company .info_content_map {
  width: 100%;
  max-width: 820px;
  padding: 0 50px;
  margin: 80px auto 0;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #company .info_content_map {
    padding: 0;
    margin-top: 36px;
  }
}
#company .info_content_map iframe {
  width: 100%;
  height: 100%;
}
#company .modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  backdrop-filter: blur(5px);
}
#company .modal-wrap.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
#company .modal-content {
  background: #fff;
  max-width: 746px;
  width: calc(100% - 40px);
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}
@media screen and (max-width: 768px) {
  #company .modal-content {
    max-width: calc(100% - 40px);
  }
}
#company .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
}
@media screen and (max-width: 768px) {
  #company .modal-close {
    top: 16px;
  }
}
#company .modal-close:hover {
  opacity: 0.7;
}
#company .modal-close::before, #company .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #ccc;
  transform-origin: center;
}
#company .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#company .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#company .modal-inner {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  #company .modal-inner {
    padding: 50px 20px;
  }
}
#company .modal-header {
  display: flex;
  gap: 48px;
  margin-bottom: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #company .modal-header {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }
}
#company .modal-header .bm_content_item_img {
  width: 220px;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 640px) {
  #company .modal-header .bm_content_item_img {
    width: 300px;
    height: 300px;
  }
}
#company .modal-header .bm_content_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#company .modal-header .bm_content_item_txt {
  padding: 0;
  gap: 8px;
}
#company .modal-header .bm_content_item_txt_ttl {
  font-size: 18px;
  padding-bottom: 40px;
}
@media screen and (max-width: 640px) {
  #company .modal-header .bm_content_item_txt_ttl {
    width: 300px;
    font-size: 15px;
    padding-bottom: 24px;
  }
}
#company .modal-header .bm_content_item_txt_name {
  font-size: 32px;
}
@media screen and (max-width: 640px) {
  #company .modal-header .bm_content_item_txt_name {
    font-size: 24px;
  }
}
#company .modal-header .bm_content_item_txt_name_eng {
  font-size: 15px;
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  #company .modal-header .bm_content_item_txt_name_eng {
    font-size: 13px;
    margin-top: 16px;
  }
}
#company .modal-content-text dl {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 640px) {
  #company .modal-content-text dl {
    width: 300px;
    flex-direction: column;
    margin: 0 auto;
    gap: 16px;
  }
}
#company .modal-content-text dl dt {
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 1em;
  align-self: center;
}
@media screen and (max-width: 640px) {
  #company .modal-content-text dl dt {
    align-self: flex-start;
  }
}
#company .modal-content-text dl dd {
  font-size: 15px;
  line-height: 1.8;
  border-left: 1px solid #E2E9F2;
  padding-left: 40px;
}
@media screen and (max-width: 640px) {
  #company .modal-content-text dl dd {
    border-top: 1px solid #E2E9F2;
    border-left: none;
    padding-left: 0;
    padding-top: 24px;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  #products .inner {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}
#products .inner:has(.products_content_ttl) {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
}
@media screen and (max-width: 768px) {
  #products .inner:has(.products_content_ttl) {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
#products .inner:has(.products_content_img) {
  display: flex;
  justify-content: stretch;
  padding-top: 50px;
  gap: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #products .inner:has(.products_content_img) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 24px;
    margin-bottom: 80px;
  }
}
#products .products_content_ttl {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
#products .products_content_ttl img {
  height: 92px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #products .products_content_ttl img {
    height: 43px;
  }
}
#products .products_content_ttl .cont_ttl_jp {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #products .products_content_ttl .cont_ttl_jp {
    width: 100%;
    font-size: 18px;
  }
}
#products .products_content_bnr {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  background: linear-gradient(270deg, #1D1A76 0.8%, #0614CF 97.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#products .products_content_bnr a {
  text-decoration: none;
}
#products .products_content_bnr img {
  max-height: 26px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #products .products_content_bnr {
    font-size: 18px;
  }
}
#products .products_content_img {
  padding-bottom: 56px;
  width: 57.6%;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  #products .products_content_img {
    width: 100%;
    padding-bottom: 32px;
  }
}
#products .products_content_img img {
  width: 100%;
  height: auto;
}
#products .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
#products .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 40px;
  background-color: #E2E9F2;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #products .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 12px;
  }
}
#products .slick-dots li.slick-active, #products .slick-dots li:hover {
  background-color: #0614CF;
}
#products .slick-dots li button::before {
  content: "";
}
#products .products_content_txt {
  width: calc(42.4% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 85px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #products .products_content_txt {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    gap: 24px;
  }
}
#products .products_content_txt p {
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
#products .products_content_txt .products_content_tag {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
}
#products .products_content_txt .products_content_tag li {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
  background-color: #F2F3F7;
}
#products .products_content_txt .products_content_btn {
  text-align: right;
}
#products .products_content_txt .btn_01 {
  width: auto;
  padding: 24px 40px 24px 24px;
}
#products .products_prd02 .inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #products .products_prd02 .inner {
    flex-direction: column;
  }
}
#products .products_prd03 .products_content_txt,
#products .products_prd03 .products_content_img {
  padding-bottom: 0px;
}

#news.content {
  padding-bottom: 0;
}
#news .news_content {
  position: relative;
  padding: 80px 0 140px;
}
@media screen and (max-width: 768px) {
  #news .news_content {
    padding: 20px 0 80px;
  }
}
#news .news_content a {
  text-decoration: none;
}
#news .news_content .inner {
  width: calc(100% - 100px);
  max-width: 1020px;
  margin: 0 auto;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  #news .news_content .inner {
    width: calc(100% - 40px);
    padding-inline: 20px;
  }
}
#news .news_content .news_list_wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
#news .news_content select {
  position: relative;
  width: 120px;
  height: 42px;
  max-width: 120px;
  padding: 8px 16px;
  border: none;
  color: #1D1A76;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}
#news .news_content select:focus {
  outline: none;
}
#news .news_content .news_list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_list {
    display: none;
  }
}
#news .news_content .news_list_select {
  display: none;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_list_select {
    position: relative;
    display: block;
    width: 120px;
    max-width: 120px;
    height: 42px;
    padding: 8px 16px;
    border: none;
    color: #1D1A76;
    font-size: 16px;
    cursor: pointer;
  }
  #news .news_content .news_list_select:focus {
    outline: none;
  }
}
#news .news_content .news_list_item {
  display: flex;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_list_item {
    font-size: 16px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    padding-inline-end: 24px;
  }
  #news .news_content .news_list_item:hover {
    background-color: #fff;
  }
  #news .news_content .news_list_item:not(:first-child) {
    display: none;
    border-top: none;
  }
  #news .news_content .news_list_item:nth-child(2) {
    top: 100%;
  }
  #news .news_content .news_list_item:nth-child(3) {
    top: calc(100% + 40px);
  }
  #news .news_content .news_list_item:nth-child(4) {
    top: calc(100% + 80px);
  }
  #news .news_content .news_list_item:first-child {
    cursor: pointer;
    position: relative;
  }
  #news .news_content .news_list_item:first-child::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #1D1A76;
    border-right: solid 2px #1D1A76;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto;
  }
  #news .news_content .news_list_item:first-child.active::after {
    transform: rotate(225deg);
  }
}
#news .news_content .news_list_item a {
  padding: 8px 24px;
  color: #1D1A76;
}
#news .news_content .news_list_item a:hover, #news .news_content .news_list_item a.current {
  color: #0614CF;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_list_item a:hover, #news .news_content .news_list_item a.current {
    color: #1D1A76;
  }
}
#news .news_content .news_index_content {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1D1A76;
  border-bottom: 1px solid #1D1A76;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_index_content {
    border-top: none;
    border-bottom: 1px solid #dddddd;
  }
}
#news .news_content .news_index_content a:hover .news_content_item {
  color: #0614CF;
  transition: all 0.3s ease;
}
#news .news_content .news_index_content a:hover .news_content_item_category {
  border: 1px solid #0614CF;
}
#news .news_content .news_content_item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: #1D1A76;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_item {
    flex-wrap: wrap;
    border-top: 1px solid #dddddd;
  }
}
#news .news_content .news_content_item_date {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  min-width: 80px;
}
#news .news_content .news_content_item_category {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  border: 1px solid #1D1A76;
  padding: 6px 18px;
  min-width: 60px;
  text-align: center;
  text-transform: capitalize;
}
#news .news_content .news_content_item_category a {
  text-decoration: none;
  color: #1D1A76;
}
#news .news_content .news_content_item_ttl {
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_content_item_ttl {
    width: 100%;
    font-size: 14px;
  }
}
#news .news_content .news_pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_pagination {
    margin-top: 24px;
  }
}
#news .news_content .news_pagination .btn_01 {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
}
#news .news_content .news_pagination .btn_01::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#news .news_content .news_pagination .btn_01.prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
#news .news_content .news_pagination .btn_01.disabled {
  border: 2px solid #dddddd;
}
#news .news_content .news_pagination .btn_01.disabled::after {
  background-image: url(/common/img/arrow_gr.svg);
}
@media screen and (min-width: 1024px) {
  #news .news_content .news_pagination .btn_01:hover {
    border: 2px solid #00B7FF;
    transition: all 0.3s ease;
  }
  #news .news_content .news_pagination .btn_01:hover::after {
    background-image: url(/common/img/arrow_sb.svg);
  }
}
#news .news_content .news_btn {
  text-align: right;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #news .news_content .news_btn {
    text-align: center;
  }
}
#news .news_detail_content {
  line-height: 1.75;
  padding-bottom: 100px;
}
#news .news_detail_content .inner {
  max-width: 920px;
  padding-inline: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news .news_detail_content .inner {
    padding-inline: 20px;
  }
}
#news .news_detail_content p {
  margin: 1em 0;
}
#news .news_detail_content img {
  margin: 30px 0;
}
#news .news_detail_content img .alignleft {
  float: left;
}
#news .news_detail_content .news_content_ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 32px;
}
@media screen and (max-width: 768px) {
  #news .news_detail_content .news_content_ttl {
    flex-wrap: wrap;
    border-top: 1px solid #dddddd;
  }
}
#news .news_detail_content .news_content_item_date {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
}
#news .news_detail_content .news_content_item_category {
  font-size: 15px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  border: 1px solid #1D1A76;
  line-height: 1;
  padding: 6px 18px;
  text-align: center;
  text-transform: capitalize;
}
#news .news_detail_content .news_content_item_category a {
  text-decoration: none;
  color: #1D1A76;
}
#news .news_detail_content .news_content_item_ttl {
  width: 100%;
  line-height: 1.25;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #news .news_detail_content .news_content_item_ttl {
    font-size: 24px;
  }
}
#news .news_detail_content .news_content_body {
  padding-bottom: 80px;
  border-bottom: 1px solid #dddddd;
}
#news .news_detail_content .news_btn {
  text-align: center;
  margin: 40px auto;
}

#privacy .privacy_content {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.75;
}
#privacy .privacy_content .inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  #privacy .privacy_content .inner {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}
#privacy .privacy_content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #1D1A76;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  #privacy .privacy_content h2 {
    font-size: 18px;
  }
}
#privacy .privacy_content ul,
#privacy .privacy_content ol {
  list-style: none;
}
#privacy .privacy_content ul.privacy-list {
  padding-left: 24px;
  text-indent: -24px;
}
#privacy .privacy_content ol.privacy-list-num {
  padding-left: 24px;
  text-indent: -24px;
}
#privacy .privacy_content li + li {
  margin-top: 16px;
}
#privacy .privacy_content li > ol, #privacy .privacy_content li > ul {
  margin-left: 1em;
  margin-top: 16px;
}
#privacy .privacy_content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #333333;
  margin: 24px 0;
}
#privacy .privacy_content table th,
#privacy .privacy_content table td {
  padding: 16px;
}
#privacy .privacy_content table th {
  background-color: #1D1A76;
  color: #fff;
  text-align: center;
  border: 1px solid #333333;
}
#privacy .privacy_content table td {
  border: 1px solid #333333;
}
#privacy .privacy_content .privacy_logo {
  display: flex;
  align-items: center;
  gap: 24px;
}
#privacy .privacy_content .privacy_logo .privacy_date {
  text-align: right;
}
#privacy .privacy_content .privacy_date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

#terms .terms_content {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.75;
}
#terms .terms_content .inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  #terms .terms_content .inner {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}
#terms .terms_content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #1D1A76;
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  #terms .terms_content h2 {
    font-size: 18px;
  }
}
#terms .terms_content ol.terms-list-num {
  list-style: decimal;
  padding-left: 24px;
}
#terms .terms_content ol > li + li {
  margin-top: 16px;
}
#terms .terms_content li > ol, #terms .terms_content li > ul {
  margin-left: 1em;
  margin-top: 16px;
}
#terms .terms_content .terms_date {
  display: flex;
  margin-left: auto;
  margin-bottom: 16px;
}

#contact .contact_content {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.75;
}
#contact .contact_content .inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .inner {
    padding: 0;
    width: 100%;
  }
}
#contact .contact_content iframe {
  width: 100%;
  height: 2300px;
  border: none;
}
@media screen and (max-width: 768px) {
  #contact .contact_content iframe {
    height: 2500px;
  }
}

body:has(#page_404) header .hamburger span {
  background-color: #1D1A76;
}

#page_404.contents {
  background-color: #F2F3F7;
}
#page_404.contents .inner {
  position: relative;
  width: calc(100% - 100px);
  height: auto;
  overflow: hidden;
  padding: 200px 50px 80px;
}
@media screen and (max-width: 768px) {
  #page_404.contents .inner {
    width: auto;
    max-width: 360px;
    margin: 0 auto;
    padding: 160px 20px 80px;
  }
}
#page_404.contents h1 {
  color: #666666;
  text-align: center;
  margin-bottom: 32px;
  font-family: "Poppins", "Helvetica", "Arial", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #page_404.contents h1 {
    margin-bottom: 24px;
    font-size: 32px;
    text-align: left;
  }
}
#page_404.contents h1 span {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  #page_404.contents h1 span {
    font-size: 64px;
  }
}
#page_404.contents p {
  color: #666666;
  text-align: center;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #page_404.contents p {
    text-align: left;
  }
}
#page_404.contents p.ttl {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  #page_404.contents p.ttl {
    font-size: 24px;
  }
}
#page_404.contents p.txt {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #page_404.contents p.txt {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */