html {
  height: 100%;
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
html body {
  min-height: 100%;
  color: #212121;
  background: #FFF;
  overflow-x: hidden;
}
html body, html input, html select, html textarea {
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

.en {
  font-family: "Oswald", sans-serif;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover, a:focus, a:active,
li a:hover,
p a:hover {
  text-decoration: underline;
}

.main-content {
  max-width: min(90%, 1080px);
  margin-inline: auto;
}

.wide-content {
  width: min(90%, 1280px);
  margin-inline: auto;
}
@media print, screen and (max-width: 760px) {
  .wide-content {
    width: 100%;
  }
}

.tight-content {
  max-width: 700px;
  margin-inline: auto;
}
@media print, screen and (max-width: 760px) {
  .tight-content {
    width: 92%;
  }
}

.main-section h2 {
  color: #212121;
  font-size: clamp(18px, 5.8vw, 1.75rem);
  font-weight: bold;
  position: relative;
}
.main-section h2::after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  margin: 0.5em auto 0;
  background-color: #1A3DA5;
}

.bg-lightgray {
  background-color: #F0F3F5;
}

.bg-bluegray {
  background-color: #CDD6DD;
}

@media screen and (min-width: 760px) {
  .pc-none {
    display: none;
  }
}
@media print, screen and (max-width: 760px) {
  .pc-none {
    display: block;
  }
}

@media screen and (min-width: 760px) {
  .sp-none {
    display: block;
  }
}
@media print, screen and (max-width: 760px) {
  .sp-none {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.no-bold {
  font-weight: normal;
}

.pc-text-center {
  text-align: center;
}
@media print, screen and (max-width: 760px) {
  .pc-text-center {
    text-align: left;
  }
}

.text-md {
  font-size: clamp(16px, 3.8vw, 18px);
}

.text-sm {
  font-size: clamp(12px, 2vw, 14px);
}

.text-accent {
  color: #1A3DA5;
}

.btn-more a,
.wp-block-vk-blocks-button a {
  display: inline-block;
  padding: 0.6em 2.7em 0.6em 1.7em !important;
  color: #FFF;
  background-color: #1A3DA5;
  text-decoration: none;
  border-radius: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn-more a::before,
.wp-block-vk-blocks-button a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin-top: -0.35em;
  background: url(../images/arrow-right-white.svg) no-repeat 0 0;
}
.btn-more a::after,
.wp-block-vk-blocks-button a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.btn-more a:focus, .btn-more a:hover,
.wp-block-vk-blocks-button a:focus,
.wp-block-vk-blocks-button a:hover {
  color: #FFF;
  text-decoration: none;
  opacity: 1 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.btn-more a:focus::after, .btn-more a:hover::after,
.wp-block-vk-blocks-button a:focus::after,
.wp-block-vk-blocks-button a:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

.btn-white a {
  display: inline-block;
  padding: 0.6em 1.7em 0.6em;
  color: #1A3DA5;
  background-color: #FFF;
  text-decoration: none;
  border-radius: 1.6em;
  border: 2px solid #CDD6DD;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn-white a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #CDD6DD;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.btn-white a:focus, .btn-white a:hover {
  color: #1A3DA5;
  text-decoration: none;
}
.btn-white a:focus::after, .btn-white a:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

@media screen and (min-width: 760px) {
  .tel {
    pointer-events: none;
    cursor: default;
  }
}

.touka,
.touka-image a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.touka:hover,
.touka-image a:hover {
  opacity: 0.7;
}

.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}

.mt-3em {
  margin-top: 3em;
}

.mt-4em {
  margin-top: 4em;
}

.mb-none {
  margin-bottom: 0;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-2em {
  margin-bottom: 2em;
}

.mb-3em {
  margin-bottom: 3em;
}

.mb-4em {
  margin-bottom: 4em;
}

.site-header {
  color: #FFF;
  background-color: #1A3DA5;
  position: relative;
}

.header_scrolled .site-header {
  height: auto;
  background-color: #1A3DA5;
}

@media screen and (max-width: 991.98px) {
  .site-header-logo img {
    margin-left: 0;
  }
  .vk-mobile-nav-menu-btn {
    top: 32px !important;
    right: 12px !important;
    margin-top: -19px;
    background: url("../images/vk-menu-btn-white.svg") center 50% no-repeat;
    background-color: transparent !important;
  }
  .vk-mobile-nav {
    padding-top: 80px !important;
    color: #FFF;
    background-color: #1A3DA5;
    border: none;
  }
  .vk-mobile-nav-menu-btn.menu-open {
    background: url("../images/vk-menu-close-white.svg") center 50% no-repeat;
    background-color: transparent !important;
  }
  .vk-mobile-nav nav ul {
    border-top: 1px solid #415EB4 !important;
  }
  .vk-mobile-nav nav ul li a {
    color: #FFF !important;
    border-bottom: 1px solid #415EB4 !important;
  }
  .admin-bar .vk-mobile-nav-menu-btn {
    top: 72px !important;
  }
}
.global-nav-list li a {
  color: #FFF;
}
.global-nav-list li a .global-nav-name {
  font-size: 16px;
}
.global-nav-list li.menu-item-has-children > a {
  position: relative;
}
.global-nav-list li.menu-item-has-children > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 5px;
  right: 50%;
  bottom: 0;
  margin-right: -5px;
  background: none;
  background-color: #CDD6DD;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.device-pc .global-nav-list > li:focus-within li:focus-within > .sub-menu,
.device-pc .global-nav-list > li:focus-within > .sub-menu,
.device-pc .global-nav-list > li:hover li:focus-within > .sub-menu,
.device-pc .global-nav-list > li:hover > .sub-menu {
  opacity: 0;
  max-height: 0;
  overflow-y: none;
  display: none;
}

.device-pc .global-nav-list {
  position: static;
}
.device-pc .global-nav-list > li {
  position: static;
}
.device-pc .global-nav-list > li .acc-btn {
  display: none;
}
.device-pc .global-nav-list > li > ul.sub-menu, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close {
  width: 100%;
  top: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 5%;
  margin: 0;
  padding: 40px 5% 60px;
  background-color: #4763B7;
  max-height: 80vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 100;
}
.device-pc .global-nav-list > li > ul.sub-menu > li, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close > li {
  width: 30%;
}
.device-pc .global-nav-list > li > ul.sub-menu > li > a, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close > li > a {
  padding: 1em 0.5em;
  font-size: 1rem;
  border-bottom: 1px solid #374d8e;
  position: relative;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.device-pc .global-nav-list > li > ul.sub-menu > li > a::after, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close > li > a::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  right: 0.6em;
  margin-top: -0.6em;
  background: url(../images/icon_arrow_right_blue_circle.svg) no-repeat right center;
  background-size: contain;
}
.device-pc .global-nav-list > li > ul.sub-menu > li > a:hover, .device-pc .global-nav-list > li > ul.sub-menu > li > a:focus, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close > li > a:hover, .device-pc .global-nav-list > li > ul.sub-menu.acc-child-close > li > a:focus {
  background-color: transparent;
  text-decoration: none;
  border-bottom-color: #FFF;
}

.device-pc .global-nav-list .menu-item-has-children:hover > .sub-menu,
.device-pc .global-nav-list .menu-item-has-children:hover > .sub-menu.acc-child-close {
  visibility: visible;
  opacity: 1;
}

.header_scrolled .global-nav-list > li > a::after {
  bottom: 4px;
}

@media screen and (max-width: 991.98px) {
  .vk-mobile-nav-menu-btn {
    top: 2em;
    left: auto;
    right: 1em;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 0;
  }
  .vk-mobile-nav-menu-btn.menu-open {
    border: 0;
  }
  #vk-mobile-nav {
    padding-top: 1em;
  }
}
.vk-mobile-nav .acc-btn {
  border-color: #98A6B5;
  background: url(../images/vk-menu-acc-icon-open-white.svg) center 50% no-repeat;
}

.vk-menu-acc .acc-btn-close {
  background: url(../images/vk-menu-acc-icon-open-white.svg) center 50% no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-header {
  min-height: 300px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#FFF), to(#CADAE5)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #FFF 0%, #CADAE5 100%) 0% 0% no-repeat padding-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-header .page-header-breadcrumb {
  min-height: 2.2rem;
  padding-top: 0.4em;
  text-align: left;
  line-height: 1.4;
}
.page-header .page-header-breadcrumb .container {
  padding-inline: 0;
}
.page-header .page-header-breadcrumb .breadcrumb-list li,
.page-header .page-header-breadcrumb .breadcrumb-list li a {
  color: #3B4043;
  font-size: clamp(10px, 1vw, 12px);
}
@media screen and (max-width: 991.98px) {
  .page-header {
    min-height: 12rem;
  }
}
@media print, screen and (max-width: 760px) {
  .page-header {
    min-height: 10rem;
  }
  .page-header .page-header-breadcrumb {
    padding-top: 0;
  }
}

.page-image-wrap {
  position: relative;
  overflow: hidden;
}
.page-image-wrap .hd-page-image {
  width: 260px;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 24px;
  right: 0;
  opacity: 0.7;
  z-index: -1;
}
.page-image-wrap .hd-page-eyecatch {
  width: 340px;
  height: 340px;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -1;
}
.page-image-wrap .hd-page-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 991.98px) {
  .page-image-wrap .hd-page-image {
    width: 11rem;
    height: 11rem;
    top: 0.7rem;
  }
  .page-image-wrap .hd-page-eyecatch {
    width: 14rem;
    top: -1rem;
  }
}
@media print, screen and (max-width: 760px) {
  .page-image-wrap .hd-page-image {
    width: auto;
    height: calc(100% - 1rem);
    top: 0.5rem;
  }
  .page-image-wrap .hd-page-eyecatch {
    width: auto;
    height: 100%;
    top: 0;
    right: -12px;
  }
}

.page-header-inner {
  width: 100%;
  min-height: calc(300px - 2.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  position: relative;
}
.page-header-inner .hd-title-wrap {
  text-align: left;
}
.page-header-inner .hd-title-wrap .en-title {
  color: #1A3DA5;
  font-size: clamp(36px, 7.5vw, 68px);
  font-weight: bold;
  line-height: 1.4;
}
.page-header-inner .hd-title-wrap .page-header-title {
  font-size: clamp(16px, 2.8vw, 24px);
  font-weight: 400;
}
@media screen and (max-width: 991.98px) {
  .page-header-inner {
    min-height: 9.8rem;
  }
  .page-header-inner .hd-title-wrap .en-title {
    line-height: 1.1;
  }
}
@media print, screen and (max-width: 760px) {
  .page-header-inner {
    min-height: 7.8rem;
  }
  .page-header-inner .hd-page-image {
    width: 30%;
  }
  .page-header-inner .hd-page-eyecatch {
    width: 40%;
    top: 0;
    right: -12px;
    bottom: 0;
  }
}

.breadcrumb {
  border: 0;
}

.breadcrumb-list .fas.fa-home {
  display: none;
}

.site-footer {
  color: #212121;
  background-color: #F0F3F5;
}

.site-footer-content {
  padding-block: 1rem 1.5rem;
}

.footer-title {
  padding-top: 0.5rem;
  font-weight: bold;
  font-size: 16px;
}

.footer-nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.footer-nav-wrap > nav {
  min-width: 9em;
}
@media screen and (max-width: 991.98px) {
  .footer-nav-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media print, screen and (max-width: 760px) {
  .footer-nav-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .footer-nav-wrap > nav {
    width: 50%;
  }
}

.page_top_btn {
  width: 50px;
  height: 50px;
  background-color: #1A3DA5;
  background-image: none;
  border-radius: 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s background-color ease-out;
  transition: 0.3s background-color ease-out;
}
.page_top_btn::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -7px;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  rotate: 45deg;
}
.page_top_btn:hover {
  background-color: #212121;
}

.site-footer-copyright {
  padding: 1rem 2rem 1.5rem;
  color: #FFF;
  background-color: #222;
}
.site-footer-copyright .copylight {
  font-size: 0.75rem;
  text-align: left;
}

@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slidein {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}
.fadein.visible {
  -webkit-animation: slideup 0.7s ease-out forwards;
          animation: slideup 0.7s ease-out forwards;
}

.top-mv-bg {
  width: 100%;
  max-height: calc(94vh - 100px);
  aspect-ratio: 62/35;
  margin-bottom: 60px;
  position: relative;
}
.top-mv-bg .top-mv-image {
  width: 76%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-animation: 1s ease-out forwards slidein;
          animation: 1s ease-out forwards slidein;
}
.top-mv-bg .top-mv-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.top-mv-bg .top-mv-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1A3DA5;
  opacity: 0.3;
}
.top-mv-bg .top-mv-inner {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 5%;
}
.top-mv-bg .top-mv-inner .top-mv-copy {
  margin: 0 auto 16px 0;
  color: #1A3DA5;
  font-size: clamp(36px, 3.9vw, 50px);
  line-height: 1;
}
.top-mv-bg .top-mv-inner .top-mv-copy .bg {
  display: inline-block;
  padding: 0 0.3em 0.2em 0.2em;
  background-color: #FFF;
}
.top-mv-bg .top-mv-inner .top-mv-text {
  display: inline-block;
  margin: 0 auto 40px 0;
  color: #212121;
  font-size: clamp(16px, 2.3vw, 30px);
  font-weight: bold;
  line-height: 1;
}
.top-mv-bg .top-mv-inner .top-mv-text .bg {
  display: inline-block;
  padding: 0.3em 0.3em;
  background-color: #FFF;
}
.top-mv-bg .top-mv-inner .top-mv-btn {
  margin: 0 0 8px 16px;
}
@media screen and (min-width: 1400px) {
  .top-mv-bg {
    aspect-ratio: 62/28;
  }
}
@media screen and (max-width: 991.98px) {
  .top-mv-bg .top-mv-image {
    width: 84%;
  }
  .top-mv-bg .top-mv-inner .top-mv-text {
    margin-bottom: 1em;
  }
}
@media print, screen and (max-width: 760px) {
  .top-mv-bg {
    max-height: auto;
    margin-bottom: 0;
  }
  .top-mv-bg .top-mv-image {
    width: 100%;
    height: auto;
    position: static;
  }
  .top-mv-bg .top-mv-image img {
    aspect-ratio: 62/35;
  }
  .top-mv-bg .top-mv-image::after {
    height: auto;
    aspect-ratio: 62/35;
  }
  .top-mv-bg .top-mv-inner {
    position: relative;
    margin-top: -24px;
    padding-left: 0;
  }
  .top-mv-bg .top-mv-inner .top-mv-copy {
    width: 90%;
    margin-bottom: 8px;
    font-size: min(32px, 8.5vw);
    line-height: 1.1;
  }
  .top-mv-bg .top-mv-inner .top-mv-copy .bg {
    padding: 0 0.3em 0.2em 0.4em;
  }
  .top-mv-bg .top-mv-inner .top-mv-text .bg {
    padding: 0.3em 0 0.3em 0.9em;
  }
}
@media (orientation: landscape) {
  .top-mv-bg {
    max-height: 100vw;
    margin-bottom: 24px;
  }
}

.top-section-title {
  color: #1A3DA5;
  font-size: clamp(36px, 9.6vw, 68px);
}

.top-intro-text {
  width: min(90%, 760px);
  margin-inline: auto;
}

.top-hgroup .top-section-title {
  margin-bottom: 0;
}
.top-hgroup .top-section-jp {
  color: #212121;
  font-size: clamp(16px, 4.3vw, 24px);
}

.top-altongroup {
  padding-block: 80px 180px;
  background: url(../images/top_group_bg.webp) no-repeat center top;
  background-size: 100% auto;
  position: relative;
}
.top-altongroup::after {
  content: "";
  display: block;
  width: 100%;
  height: 240px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFF;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media print, screen and (max-width: 760px) {
  .top-altongroup {
    padding-block: 40px 60px;
  }
  .top-altongroup::after {
    height: 120px;
  }
}

.group-intro {
  margin-block: 0 40px;
}

.group-mov-wrap {
  width: min(90%, 760px);
  margin-inline: auto;
  overflow: hidden;
  background-color: #FFF;
  border: 3px solid #FFF;
}
.group-mov-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.top-capabilities {
  padding: 160px 24px;
  background-color: #F0F3F5;
  position: relative;
}
.top-capabilities::after {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -1px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #FFF;
}
.top-capabilities .top-hgroup {
  margin-top: calc(-160px - 3em);
  margin-bottom: 52px;
}
@media print, screen and (max-width: 760px) {
  .top-capabilities {
    padding-bottom: 80px;
  }
  .top-capabilities::after {
    height: 60px;
  }
  .top-capabilities .top-hgroup {
    margin-top: calc(-160px - 1.7em);
    margin-bottom: 32px;
  }
}

.top-capa-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 5%;
}
@media print, screen and (max-width: 760px) {
  .top-capa-list {
    gap: 24px 0;
  }
}

.top-capa-card {
  width: 30%;
  background-color: #FFF;
  position: relative;
  -webkit-box-shadow: 0 0 4px 0 rgba(116, 121, 125, 0.5);
          box-shadow: 0 0 4px 0 rgba(116, 121, 125, 0.5);
}
.top-capa-card .capa-jp-title {
  margin-bottom: 0;
  padding: 0.4em 24px;
  color: #FFF;
  background-color: #1A3DA5;
  font-size: 18px;
  font-weight: bold;
}
.top-capa-card .capa-jp-title.tight-title {
  padding-right: 8px;
}
.top-capa-card .capa-jp {
  margin: 0;
  padding: 16px 24px;
}
.top-capa-card .capa-jp .capa-jp-detail {
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.5;
}
.top-capa-card .capa-en-title {
  position: absolute;
  right: 4px;
  bottom: 4px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
  text-align: right;
  color: #CDD6DD;
}
@media screen and (max-width: 991.98px) {
  .top-capa-card {
    width: 45%;
  }
  .top-capa-card .capa-en-title {
    font-size: min(18px, 4vw);
  }
}
@media print, screen and (max-width: 760px) {
  .top-capa-card {
    width: 100%;
  }
  .top-capa-card .capa-jp-title {
    padding: 0.3em 16px;
    font-size: 16px;
  }
  .top-capa-card .capa-jp {
    padding: 8px 16px;
  }
  .top-capa-card .capa-en-title {
    font-size: min(18px, 4vw);
  }
}

.top-capa-card.fadein {
  --delay: .3s;
}
.top-capa-card.fadein:nth-child(1) {
  -webkit-animation-delay: calc(var(--delay) * 1);
          animation-delay: calc(var(--delay) * 1);
}
.top-capa-card.fadein:nth-child(2) {
  -webkit-animation-delay: calc(var(--delay) * 2);
          animation-delay: calc(var(--delay) * 2);
}
.top-capa-card.fadein:nth-child(3) {
  -webkit-animation-delay: calc(var(--delay) * 3);
          animation-delay: calc(var(--delay) * 3);
}
.top-capa-card.fadein:nth-child(4) {
  -webkit-animation-delay: calc(var(--delay) * 4);
          animation-delay: calc(var(--delay) * 4);
}
.top-capa-card.fadein:nth-child(5) {
  -webkit-animation-delay: calc(var(--delay) * 5);
          animation-delay: calc(var(--delay) * 5);
}
.top-capa-card.fadein:nth-child(6) {
  -webkit-animation-delay: calc(var(--delay) * 6);
          animation-delay: calc(var(--delay) * 6);
}
.top-capa-card.fadein:nth-child(7) {
  -webkit-animation-delay: calc(var(--delay) * 7);
          animation-delay: calc(var(--delay) * 7);
}

.top-technology {
  padding: 0 24px 40px;
  position: relative;
}
.top-technology::after {
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #CDD6DD;
}
.top-technology .top-hgroup {
  margin-top: -120px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 760px) {
  .top-technology .top-hgroup {
    margin-top: -40px;
    margin-bottom: 32px;
  }
  .top-technology .top-hgroup .top-section-title {
    font-size: 30px;
  }
}

.top-tech-image {
  width: 100%;
  position: relative;
}
.top-tech-image .tech-image-item {
  width: 90%;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.top-tech-image .tech-image-text {
  width: 80%;
  margin-top: -100px;
  margin-left: auto;
  padding: 24px 40px;
  background-color: #FFF;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 760px) {
  .top-tech-image .tech-image-item {
    width: 100%;
    margin: 0;
  }
  .top-tech-image .tech-image-text {
    width: 100%;
    margin: 0;
    padding: 0.5em 1.2em 1em;
  }
}

.top-partners {
  padding: 120px 0;
}
@media print, screen and (max-width: 760px) {
  .top-partners {
    padding: 60px 0;
  }
}

@-webkit-keyframes horizontal-animation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes horizontal-animation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.top-partners-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 200px;
  width: 100vw;
  height: 200px;
  overflow: hidden;
}
@media print, screen and (max-width: 760px) {
  .top-partners-logo {
    gap: 100px;
    height: 100px;
  }
}

.parners-logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-animation: horizontal-animation 120s linear infinite;
          animation: horizontal-animation 120s linear infinite;
}
.parners-logo-list .slide {
  width: 200px;
  margin: 0 24px 0 0;
  padding: 0;
}
.parners-logo-list .slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}
@media print, screen and (max-width: 760px) {
  .parners-logo-list .slide {
    width: 100px;
    margin-right: 18px;
  }
}

.top-globalreach {
  background-color: #F0F3F5;
}
.top-globalreach .top-hgroup {
  margin-bottom: 24px;
  padding: 24px 0 8px;
  color: #FFF;
  background-color: #1A3DA5;
}
.top-globalreach .top-hgroup .top-section-title {
  color: #FFF;
}
.top-globalreach .top-hgroup .top-section-jp {
  color: #FFF;
}
@media print, screen and (max-width: 760px) {
  .top-globalreach .top-hgroup {
    padding: 8px 0;
  }
  .top-globalreach .top-hgroup .top-section-jp {
    margin-bottom: 0;
  }
}

.map-position {
  position: relative;
  z-index: 2;
}

.top-global-features {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}
.top-global-features li {
  width: 30%;
}
.top-global-features li img {
  width: 100%;
  max-width: 180px;
}
@media print, screen and (max-width: 760px) {
  .top-global-features {
    gap: 2%;
  }
  .top-global-features li {
    width: 32%;
  }
}

.top-global-map {
  margin-top: -120px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.top-global-map img {
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .top-global-map {
    margin-top: 0;
  }
}
@media print, screen and (max-width: 760px) {
  .top-global-map img {
    width: 100%;
  }
}

.top-news-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 80px 0;
}
.top-news-area .top-hgroup {
  width: 25%;
}
.top-news-area .news-content {
  width: 73%;
  padding-top: 40px;
}
@media print, screen and (max-width: 760px) {
  .top-news-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
  }
  .top-news-area .top-hgroup {
    width: 100%;
  }
  .top-news-area .news-content {
    width: 100%;
    padding-top: 0;
  }
}

.top-news-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  border-bottom: 1px solid #CDD6DD;
}
.top-news-list dt {
  width: 25%;
  margin-bottom: 0;
  padding: 1em 0.5em;
  color: #707F89;
  font-weight: normal;
  line-height: 1.4;
}
.top-news-list dd {
  width: 75%;
  padding: 1em 0;
  line-height: 1.4;
}
.top-news-list dd a {
  color: #212121;
  text-decoration: none;
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#212121));
  background-image: linear-gradient(to bottom, transparent, #212121);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.top-news-list dd a:hover {
  text-decoration: none;
  background-size: 100% 1px;
}
.top-news-list:first-of-type {
  border-top: 1px solid #CDD6DD;
}
@media print, screen and (max-width: 760px) {
  .top-news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-news-list dt {
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .top-news-list dd {
    width: 100%;
    padding-top: 0;
  }
}

.top-news-btn {
  margin-top: 32px;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.wp-block-search input.wp-block-search__input {
  width: 75%;
  border-radius: 4px 0 0 4px;
}

.wp-block-search .wp-block-search__button {
  width: 25%;
  margin: 0;
  border-radius: 0 4px 4px 0;
}

@media print, screen and (max-width: 760px) {
  .products-search-box {
    padding: 1rem;
  }
  .products-search-box .wp-block-column:first-of-type,
  .products-search-box .wp-block-column:last-of-type {
    display: none;
  }
  .products-search-icon {
    display: none;
  }
}
.term-product-type-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 10%;
}
.term-product-type-list .term-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.term-product-type-list .term-item a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border: 1px solid #CDD6DD;
  border-radius: 8px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.term-product-type-list .term-item a .term-image {
  display: block;
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.term-product-type-list .term-item a .term-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.term-product-type-list .term-item a .term-title {
  margin: 0;
  padding: 1.2em 2em 1.2em 1em;
  color: #FFF;
  background-color: #1A3DA5;
  font-size: clamp(14px, 3.8vw, 18px);
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.term-product-type-list .term-item a .term-title::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.8em;
  margin-top: -0.5em;
  background: url(../images/icon_arrow_right_white_circle.svg) no-repeat 0 0;
  background-size: contain;
}
.term-product-type-list .term-item a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 991.98px) {
  .term-product-type-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 4%;
  }
}

.term-brand-type-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 6%;
  margin: 40px 0;
  list-style: none;
}
.term-brand-type-list .brand-item {
  width: 47%;
}
.term-brand-type-list .brand-item a {
  display: block;
  border: 1px solid #CDD6DD;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.term-brand-type-list .brand-item a .brand-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 28/17;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.term-brand-type-list .brand-item a .brand-title {
  margin: 0;
  padding: 1.2em 2em 1.2em 1em;
  color: #212121;
  background-color: #FFF;
  font-size: clamp(16px, 5vw, 22px);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
}
.term-brand-type-list .brand-item a .brand-title::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.8em;
  margin-top: -0.5em;
  background: url(../images/icon_arrow_right_blue_circle.svg) no-repeat 0 0;
  background-size: contain;
}
.term-brand-type-list .brand-item a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media print, screen and (max-width: 760px) {
  .term-brand-type-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .term-brand-type-list .brand-item {
    width: 100%;
  }
}

.bnr-product-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 200px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#f0f3f5), to(#CCD6DE)) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(180deg, #f0f3f5 0%, #CCD6DE 100%) 0 0 no-repeat padding-box;
  border: 2px solid #98A6B5;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  overflow: hidden;
}
.bnr-product-wrap a .bnr-inner-text {
  color: #212121;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: bold;
  text-align: center;
}
.bnr-product-wrap a .bnr-inner-btn {
  display: inline-block;
  padding: 0.6em 2.7em 0.6em 1.7em;
  color: #FFF;
  background-color: #1A3DA5;
  text-decoration: none;
  border-radius: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bnr-product-wrap a .bnr-inner-btn::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin-top: -0.35em;
  background: url(../images/arrow-right-white.svg) no-repeat 0 0;
}
.bnr-product-wrap a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.bnr-product-wrap.bnr-brand a {
  gap: 28px;
}
.bnr-product-wrap.bnr-brand a::before {
  content: "";
  display: block;
  width: 24%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  background: url(../images/bnr_image_brand.svg) no-repeat 0 0;
  background-size: contain;
  opacity: 0.3;
}
.bnr-product-wrap.bnr-brand a .bnr-inner-text {
  padding-top: 1em;
}
.bnr-product-wrap.bnr-support a {
  gap: 18px;
}
.bnr-product-wrap.bnr-support a::before {
  content: "";
  display: block;
  width: 28%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -48px;
  background: url(../images/bnr_image_support.svg) no-repeat 0 0;
  background-size: contain;
  opacity: 0.3;
}
.bnr-product-wrap.bnr-support a::after {
  content: "";
  display: block;
  width: 18%;
  height: 50%;
  position: absolute;
  right: -18px;
  bottom: 8px;
  background: url(../images/bnr_image_mail.svg) no-repeat right bottom;
  background-size: contain;
  opacity: 0.3;
}
@media print, screen and (max-width: 760px) {
  .bnr-product-wrap a {
    height: auto;
    padding-block: 12px;
  }
  .bnr-product-wrap.bnr-brand a {
    gap: 8px;
  }
  .bnr-product-wrap.bnr-support a {
    gap: 8px;
  }
  .bnr-product-wrap.bnr-support a .bnr-inner-text {
    line-height: 1.4;
  }
}

.tax-brand-type .archive-description {
  max-width: 700px;
  margin-inline: auto;
}

.product-item-list {
  gap: 60px 2%;
  margin-block: 80px;
}
@media print, screen and (max-width: 760px) {
  .product-item-list {
    width: 92%;
    gap: 32px 0;
    margin: 40px auto;
  }
}

.product-item-list-item {
  width: 32%;
}
.product-item-list-item .thumb {
  margin-bottom: 8px;
  border: 1px solid #CDD6DD;
}
.product-item-list-item .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item-list-item .category {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0.3em 1.5em;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.1;
  font-weight: bold;
  border: 1px solid #CDD6DD;
}
.product-item-list-item .title {
  font-size: clamp(16px, 3.8vw, 18px);
  font-weight: bold;
  line-height: 1.4;
}
@media print, screen and (max-width: 760px) {
  .product-item-list-item {
    width: 100%;
  }
}

.product-title-area {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 40% 58%;
  gap: 0 2%;
  margin-bottom: 80px;
}
.product-title-area .p-item-title-wrap {
  grid-column: 1/2;
  grid-row: 1/2;
}
.product-title-area .p-item-cat-wrap {
  grid-column: 1/2;
  grid-row: 2/3;
}
.product-title-area .p-item-image-wrap {
  grid-column: 2/3;
  grid-row: 1/3;
  height: 480px;
  overflow-x: hidden;
}
@media print, screen and (max-width: 760px) {
  .product-title-area {
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    gap: 16px 0;
    margin-bottom: 40px;
  }
  .product-title-area .p-item-cat-wrap {
    grid-row: 3/4;
  }
  .product-title-area .p-item-image-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
    max-height: 50vh;
  }
}

.p-item-title-wrap h2 {
  margin-bottom: auto;
}
.p-item-title-wrap h2::after {
  display: none;
}

.p-item-cat-wrap .p-item-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  margin: 0;
  padding: 0;
  font-size: clamp(12px, 2vw, 14px);
  list-style: none;
}
.p-item-cat-wrap .p-item-category li {
  margin: 0;
  padding: 0;
}
.p-item-cat-wrap .p-item-category li a {
  display: inline-block;
  padding: 0.2em 1.2em;
  color: #212121;
  font-size: clamp(12px, 2vw, 14px);
  border: 1px solid #98A6B5;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.p-item-cat-wrap .p-item-category li a:hover {
  color: #212121;
  text-decoration: none;
  background-color: #F0F3F5;
}
.p-item-cat-wrap .p-item-product-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin-bottom: 0;
  font-size: clamp(12px, 2vw, 14px);
}
.p-item-cat-wrap .p-item-product-num dt {
  margin: 0;
  font-weight: bold;
}

.swiper-parent {
  padding: 0 24px;
  position: relative;
  overflow: visible;
}

.swiper-container {
  border: 1px solid #CDD6DD;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-pagination {
  position: absolute;
  top: 0;
  left: 50% !important;
  bottom: -32px !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 5px !important;
  outline: none !important;
}

.swiper-pagination-bullet-active {
  background-color: #1A3DA5 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background: rgba(112, 127, 137, 0.4);
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid #FFF;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  border-left: 2px solid #FFF;
  rotate: -45deg;
  margin: -5px 0 0 -5px;
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  border-right: 2px solid #FFF;
  rotate: 45deg;
  margin: -5px 0 0 -8px;
}

@media print, screen and (max-width: 760px) {
  .swiper-pagination {
    padding-inline: 24px;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
    border-radius: 19px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    margin-top: -6px;
  }
}
.products-dtl-title {
  padding: 0.2em 0.7em 0.3em;
  color: #FFF;
  background-color: #707F89;
  font-weight: bold;
}

.products-detail .products-detail-inner {
  width: 100%;
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  border-bottom: 1px solid #CDD6DD;
}
.products-detail .products-detail-inner:nth-of-type(even) {
  background-color: #F0F3F5;
}
.products-detail .products-detail-inner dt {
  width: 30%;
  margin: 0;
  padding: 0.5em 1em 0.5em 2em;
  font-weight: bold;
  font-size: 0.9rem;
}
.products-detail .products-detail-inner dd {
  width: 70%;
  margin: 0;
  padding: 0.5em 1em;
  font-size: 0.9rem;
}
@media print, screen and (max-width: 760px) {
  .products-detail .products-detail-inner dt {
    width: 40%;
  }
  .products-detail .products-detail-inner dd {
    width: 60%;
  }
}

.item-template-default .vk_posts.next-prev {
  display: none;
}

.alton-news-list {
  max-width: 700px;
  margin-inline: auto;
  padding-bottom: 4rem;
}
.alton-news-list .postListText {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #98A6B5;
}
.alton-news-list .postListText_title {
  font-size: clamp(14px, 3.5vw, 16px);
}
.alton-news-list .postListText_title a:hover {
  color: #222;
  text-decoration: underline;
}

.wp-singular.single.post-type-post .entry-header .news-post-date {
  margin-bottom: 1em;
  font-size: clamp(12px, 3vw, 14px);
}
.wp-singular.single.post-type-post .entry-header .entry-meta {
  display: none;
}
.wp-singular.single.post-type-post .entry-body {
  padding-bottom: 4em;
}

.entry-footer {
  display: none;
}

.news-post-btm {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8rem;
  padding-top: 1rem;
  border-top: 1px solid #98A6B5;
}

.news-btn-s {
  font-size: clamp(12px, 3vw, 14px);
}

.next-prev {
  display: none;
}

.recruit-table,
.company-table {
  width: min(90%, 1080px);
  margin-inline: auto;
  border-collapse: collapse;
  border: 0;
}
.recruit-table tr th,
.company-table tr th {
  padding: 0.8em 1em;
  background-color: #F0F3F5;
  text-align: left;
  font-weight: bold;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #98A6B5;
}
.recruit-table tr td,
.company-table tr td {
  padding: 0.8em 1em;
  border: 0;
  border-bottom: 1px solid #98A6B5;
}
.recruit-table tr:first-of-type th, .recruit-table tr:first-of-type td,
.company-table tr:first-of-type th,
.company-table tr:first-of-type td {
  border-top: 1px solid #98A6B5;
}
@media print, screen and (max-width: 760px) {
  .recruit-table tr th, .recruit-table tr td,
  .company-table tr th,
  .company-table tr td {
    display: block;
    width: 100%;
  }
  .recruit-table tr th,
  .company-table tr th {
    border-bottom: 0;
  }
  .recruit-table tr td,
  .company-table tr td {
    border-top: 0;
  }
  .recruit-table tr:first-of-type td,
  .company-table tr:first-of-type td {
    border-top: 0;
  }
}

.recruit-info-btn {
  display: inline-block;
  padding: 0.6em 3em 0.6em 1.7em !important;
  color: #FFF;
  background-color: #1A3DA5;
  text-decoration: none;
  border-radius: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.recruit-info-btn::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 1.2em;
  margin-top: -0.35em;
  background: url(../images/icon_mail_white.svg) no-repeat 0 0;
  background-size: contain;
}
.recruit-info-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.recruit-info-btn:focus, .recruit-info-btn:hover {
  color: #FFF;
  text-decoration: none;
  opacity: 1 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.recruit-info-btn:focus::after, .recruit-info-btn:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

.support-nav .support-nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 210px;
  padding: 32px 0 24px;
  color: #212121;
  text-align: center;
  text-decoration: none;
  border: 1px solid #98A6B5;
  border-radius: 8px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.support-nav .support-nav-btn::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
}
.support-nav .support-nav-btn:hover {
  background-color: rgba(207, 224, 237, 0.7);
}
.support-nav .support-nav-btn.support-manual::before {
  background: url(../images/notebook.svg) no-repeat center center;
  background-size: contain;
}
.support-nav .support-nav-btn.support-faq::before {
  background: url(../images/help.svg) no-repeat center center;
  background-size: contain;
}
.support-nav .support-nav-btn.support-contact::before {
  background: url(../images/envelope.svg) no-repeat center center;
  background-size: contain;
}
@media print, screen and (max-width: 760px) {
  .support-nav {
    width: 90%;
    margin-inline: auto;
  }
  .support-nav .support-nav-btn {
    min-height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 8px 0;
    gap: 10%;
  }
  .support-nav .support-nav-btn::before {
    width: 30%;
    height: 4em;
  }
}

.support-btn-innner {
  display: inline-block;
  padding-right: 1.6em;
  font-size: 1.1em;
  position: relative;
}
.support-btn-innner::after {
  content: "";
  display: block;
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  background: url(../images/icon_arrow_right_blue_circle.svg) no-repeat 0 0;
  background-size: contain;
}
@media print, screen and (max-width: 760px) {
  .support-btn-innner {
    width: 60%;
    text-align: left;
  }
  .support-btn-innner::after {
    display: inline-block;
    position: relative;
    margin-bottom: -0.1em;
    margin-left: 0.5em;
  }
}

.before-contact-nav {
  max-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  padding: 32px 40px 24px;
  border: 1px solid #98A6B5;
}
@media print, screen and (max-width: 760px) {
  .before-contact-nav {
    max-width: 100%;
    padding: 24px 16px;
  }
}

.before-contact-nav-mds {
  color: #1A3DA5;
  font-weight: bold;
}

.snow-monkey-form {
  max-width: min(90%, 1080px);
  margin-inline: auto;
}

.smf-progress-tracker {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: #1A3DA5;
}

.smf-progress-tracker__item__number {
  width: 32px;
  height: 32px;
}

.smf-form--business .smf-item {
  border-color: #98A6B5;
  border-right: 0;
  border-left: 0;
}
.smf-form--business .smf-item__col {
  padding: 1em 1.5em;
}
.smf-form--business .smf-item__col--label {
  border-right: 0;
}
@media print, screen and (max-width: 760px) {
  .smf-form--business .smf-item__col {
    padding: 0.5em 1em;
  }
  .smf-form--business .smf-item__col.smf-item__col--label {
    border-bottom: 0;
  }
  .smf-form--business .smf-item__col .smf-item__label {
    display: inline-block;
    margin-right: 1em;
  }
}

.smf-form--business .smf-item:last-of-type {
  padding-bottom: 1em;
  border-bottom: 0;
}

.smf-item__description {
  display: inline-block;
  margin-top: 0;
  padding: 0 4px;
  color: #FFF;
  background: #A51A6A;
  font-size: 12px;
}

#zip {
  max-width: 10em;
}

#autozip {
  display: none !important;
}

.smf-form .smf-text-control__control {
  font-size: 1rem;
}
.smf-form .smf-checkbox-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.smf-form .smf-checkbox-control__control {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.smf-item__controls a {
  color: #222;
  text-decoration: underline;
}
.smf-item__controls a:focus, .smf-item__controls a:hover {
  color: #1A3DA5;
  text-decoration: none;
}

.smf-action .smf-button-control__control[data-action=confirm],
.smf-action .smf-button-control__control[data-action=complete] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 0.6em 2.7em 0.6em 1.7em;
  color: #FFF;
  background: #1A3DA5;
  font-size: clamp(16px, 3.8vw, 18px);
  text-decoration: none;
  border-radius: 1.6em;
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.smf-action .smf-button-control__control[data-action=confirm]::before,
.smf-action .smf-button-control__control[data-action=complete]::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin-top: -0.35em;
  background: url(../images/arrow-right-white.svg) no-repeat 0 0;
}
.smf-action .smf-button-control__control[data-action=confirm]::after,
.smf-action .smf-button-control__control[data-action=complete]::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.smf-action .smf-button-control__control[data-action=confirm]:focus, .smf-action .smf-button-control__control[data-action=confirm]:hover,
.smf-action .smf-button-control__control[data-action=complete]:focus,
.smf-action .smf-button-control__control[data-action=complete]:hover {
  color: #FFF;
  text-decoration: none;
}
.smf-action .smf-button-control__control[data-action=confirm]:focus::after, .smf-action .smf-button-control__control[data-action=confirm]:hover::after,
.smf-action .smf-button-control__control[data-action=complete]:focus::after,
.smf-action .smf-button-control__control[data-action=complete]:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}
.smf-action .smf-button-control__control[data-action=back] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  margin-right: 4em;
  padding: 0.6em 1.7em 0.6em 2.7em;
  color: #FFF;
  background: #707F89;
  font-size: clamp(16px, 3.8vw, 18px);
  text-decoration: none;
  border-radius: 1.6em;
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.smf-action .smf-button-control__control[data-action=back]::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0.7em;
  margin-top: -0.66em;
  background: url(../images/arrow-right-white.svg) no-repeat 0 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.smf-action .smf-button-control__control[data-action=back]::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.smf-action .smf-button-control__control[data-action=back]:focus, .smf-action .smf-button-control__control[data-action=back]:hover {
  color: #FFF;
  text-decoration: none;
}
.smf-action .smf-button-control__control[data-action=back]:focus::after, .smf-action .smf-button-control__control[data-action=back]:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

.smf-complete-content {
  margin-block: 6em;
}
.smf-complete-content p {
  text-align: center;
}
@media print, screen and (max-width: 760px) {
  .smf-complete-content p {
    text-align: left;
  }
}

.contact-layout-table {
  max-width: min(90%, 1080px);
  margin-inline: auto;
  border-collapse: collapse;
  border: 0;
}
.contact-layout-table tbody tr {
  border-bottom: 1px solid #98A6B5;
}
.contact-layout-table tbody tr:first-of-type {
  border-top: 1px solid #98A6B5;
}
.contact-layout-table tbody tr th {
  padding: 1em;
  font-size: clamp(16px, 3.8vw, 18px);
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  border: 0;
}
.contact-layout-table tbody tr th p {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-layout-table tbody tr td {
  padding: 1em 0 1em 0;
  border: 0;
}
.contact-layout-table tbody tr td p {
  margin-bottom: 0;
}
@media print, screen and (max-width: 760px) {
  .contact-layout-table tbody tr th {
    display: block;
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .contact-layout-table tbody tr td {
    display: block;
    width: 100%;
    padding: 0 0 1em;
  }
}

.hissu {
  display: inline-block;
  margin-left: 0.7em;
  padding: 0 0.5em;
  color: #FFF;
  background-color: #A51A6A;
  font-size: 12px;
  line-height: 1.5;
}

.form-notice {
  font-size: 12px;
}

.contact-btn-area {
  padding-top: 32px;
  text-align: center;
}
.contact-btn-area .text-link {
  color: #212121;
  text-decoration: underline;
}
.contact-btn-area .text-link:focus, .contact-btn-area .text-link:hover {
  color: #1A3DA5;
  text-decoration: none;
}
.contact-btn-area .btn-submit {
  display: inline-block;
  padding: 0.6em 2.7em 0.6em 1.7em;
  color: #FFF;
  background-color: #1A3DA5;
  text-decoration: none;
  border-radius: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.contact-btn-area .btn-submit::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.7em;
  margin-top: -0.35em;
  background: url(../images/arrow-right-white.svg) no-repeat 0 0;
}
.contact-btn-area .btn-submit::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.contact-btn-area .btn-submit:focus, .contact-btn-area .btn-submit:hover {
  color: #FFF;
  text-decoration: none;
}
.contact-btn-area .btn-submit:focus::after, .contact-btn-area .btn-submit:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}
@media print, screen and (max-width: 760px) {
  .contact-btn-area {
    max-width: 90%;
    margin-inline: auto;
  }
  .contact-btn-area p {
    text-align: left;
  }
}

table.wptb-table {
  max-width: min(90%, 1080px);
}
@media print, screen and (max-width: 760px) {
  table.wptb-table tr:nth-of-type(1) td,
  table.wptb-table tr:nth-of-type(2) td,
  table.wptb-table tr:nth-of-type(3) td {
    padding: 2px !important;
  }
}

:where(:not(.wp-block-table)) > table :is(thead, tbody, tfoot, th, td) {
  border-color: #98A6B5 !important;
}

.faq-tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 3%;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid #98A6B5;
}
.faq-tab-buttons .faq-tab-btn {
  padding: 0.6em 1.7em;
  color: #1A3DA5;
  background-color: #FFF;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  outline: none;
  border: 2px solid #CDD6DD;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.faq-tab-buttons .faq-tab-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  background: #1A3DA5;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  visibility: hidden;
}
.faq-tab-buttons .faq-tab-btn:active, .faq-tab-buttons .faq-tab-btn:focus, .faq-tab-buttons .faq-tab-btn:hover {
  color: #FFF;
  text-decoration: none;
  opacity: 1 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.faq-tab-buttons .faq-tab-btn:active::after, .faq-tab-buttons .faq-tab-btn:focus::after, .faq-tab-buttons .faq-tab-btn:hover::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}
.faq-tab-buttons .faq-tab-btn.open {
  color: #FFF;
  background-color: #1A3DA5;
  border-color: #1A3DA5;
  text-decoration: none;
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media print, screen and (max-width: 760px) {
  .faq-tab-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.faq-tab-content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.faq-tab-content.open {
  display: block;
  opacity: 1;
}

@starting-style {
  .faq-tab-content.open {
    opacity: 0;
  }
}
.faq-content-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  margin-bottom: 60px;
}
.faq-content-header .faq-content-title {
  width: 48%;
}
.faq-content-header .faq-mokuji {
  width: 48%;
  padding: 24px 32px;
  border: 1px solid #98A6B5;
  border-radius: 8px;
}
@media print, screen and (max-width: 760px) {
  .faq-content-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .faq-content-header .faq-content-title {
    width: 100%;
  }
  .faq-content-header .faq-mokuji {
    width: 100%;
    padding: 16px;
  }
}

.faq-mokuji-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-mokuji-list > li {
  padding-left: 1.5em;
  position: relative;
}
.faq-mokuji-list > li::before {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  position: absolute;
  top: 0.6em;
  left: 0;
  background-color: #1A3DA5;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.faq-mokuji-list > li a {
  color: #212121;
  font-weight: bold;
  text-decoration: none;
}
.faq-mokuji-list > li a:focus, .faq-mokuji-list > li a:hover {
  text-decoration: underline;
}

.faq-case-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2%;
  margin-bottom: 40px;
}
.faq-case-title .case-label {
  min-width: 5em;
  padding: 0.8em;
  color: #FFF;
  background-color: #707F89;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.faq-case-title .case-title {
  margin: 0;
  font-size: clamp(18px, 4.5vw, 1.75rem);
  font-weight: bold;
}

.faq-table {
  width: 100%;
  margin-bottom: 80px;
  border-collapse: collapse;
  border: 1px solid #98A6B5;
}
.faq-table thead tr th {
  padding: 0.5em;
  background-color: #F0F3F5;
  text-align: center;
  font-weight: normal;
  border: 0;
}
.faq-table tbody tr th, .faq-table tbody tr td {
  padding: 0.8em 1em;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #98A6B5;
}
.faq-table tbody tr th {
  width: 45%;
  font-weight: bold;
}
.faq-table tbody tr td {
  width: 55%;
  text-indent: -1em;
}
.faq-table tbody tr td .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.5em;
  background-color: #CDD6DD;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.faq-notice {
  padding-top: 16px;
  font-weight: normal;
  font-size: clamp(12px, 2vw, 14px);
}/*# sourceMappingURL=style.css.map */