@charset "UTF-8";
/* main.scss */
* {
  box-sizing: border-box;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 14px;
  }
}

a {
  color: #004392;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
}

br[class^=br-] {
  display: none;
}

@media (min-width: 640px) {
  br.br-sm {
    display: inline;
  }
}
@media (min-width: 800px) {
  br.br-md {
    display: inline;
  }
}
@media (min-width: 1000px) {
  br.br-lg {
    display: inline;
  }
}
@media (max-width: 640px) {
  br.br-only-sm {
    display: inline;
  }
}
.img-sm-only,
.img-md-only,
.img-lg-only {
  display: none;
}

@media (max-width: 640px) {
  .img-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .img-sm-up {
    display: block;
  }
}
@media (max-width: 800px) {
  .img-md-only {
    display: block;
  }
}
@media (min-width: 800px) {
  .img-md-up {
    display: block;
  }
}
@media (min-width: 1000px) {
  .img-lg-up {
    display: block;
  }
}
p {
  margin: 0.5em auto 1em;
}
p:first-child {
  margin-top: 0;
}

:root {
  --page-padding: 1.5rem;
}

.entry-content {
  max-width: 1170px;
  margin-inline: auto;
  padding-inline: var(--page-padding);
  position: relative;
}

.entry-content > .alignwide {
  max-width: 1300px;
  margin-inline: auto;
}

.entry-content > .alignfull {
  width: var(--vw);
  max-width: var(--vw);
  margin-left: 50%;
  transform: translateX(-50%) !important;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1170px;
  margin: auto;
  width: calc(100% - 1.5rem);
}

/* ----------------------------------------
 * WordPress: alignments
 * 画像・figure・ブロック共通
 * -------------------------------------- */
/* 左寄せ：テキスト回り込み */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

/* 右寄せ：テキスト回り込み */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* 中央寄せ：ブロックとして中央に */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

img.alignleft,
.wp-block-image .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-block-image .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

img.aligncenter,
.wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* figure 共通の余白調整など */
.wp-block-image,
figure {
  max-width: 100%;
}

.wp-block-image img {
  height: auto;
}

/* キャプション */
.wp-element-caption,
.wp-block-image figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5em;
  color: #666;
}

@media (max-width: 768px) {
  .alignleft,
  .alignright,
  img.alignleft,
  img.alignright,
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.tri-link a {
  --arrow-color: #004392;
  display: inline-flex;
  align-items: center;
  color: var(--arrow-color);
  text-decoration: none;
  position: relative;
  padding-right: 40px;
  transition: all 0.3s ease;
}
.tri-link a::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 30px;
  height: 10px;
  border-bottom: 1px solid var(--arrow-color);
  border-right: 1px solid var(--arrow-color);
  transform: skewX(50deg);
  transition: all 0.3s ease;
}
.tri-link a:hover {
  padding-right: 60px;
}
.tri-link a:hover:after {
  width: 50px;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: #004392;
  margin: 2em auto 1em;
  font-weight: 500;
}
.entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child {
  margin-top: 0;
}
.entry-content h2 {
  font-size: clamp(18px, 4vw, 28px);
  position: relative;
}
.entry-content h2:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #004392;
  display: block;
}
.entry-content h3 {
  font-size: 1.6em;
}
.entry-content h4 {
  font-size: 1.4em;
}
.entry-content h5 {
  font-size: 1.3em;
}
.entry-content h6 {
  font-size: 1.2em;
}

/* =========================================================
   Header (fixed) + SP Menu Button + Mobile Nav
   ========================================================= */
header#header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 1000;
  transition: all 0.3s ease;
}
header#header.bg-wh {
  background: rgb(255, 255, 255);
}
header#header .header-container {
  display: grid;
  align-items: stretch;
  grid-template-columns: clamp(220px, 25vw, 300px) 1fr clamp(200px, 28vw, 300px);
  gap: 2rem;
}
@media (max-width: 1000px) {
  header#header .header-container {
    grid-template-columns: 240px 1fr;
    gap: 1rem;
  }
}
@media (max-width: 800px) {
  header#header .header-container {
    grid-template-columns: 228px 56px;
    justify-content: space-between;
  }
}

.contact-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.contact-area .contact-link {
  height: 100%;
}
.contact-area .contact-link a {
  height: 100%;
  background: #004392;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  color: white;
  border-radius: 0 0 0 2em;
  font-weight: 700;
}
.contact-area .contact-link a:hover {
  background-color: black;
}
@media (max-width: 1000px) {
  .contact-area {
    position: fixed;
    bottom: 0;
    gap: 0;
  }
  .contact-area .contact-link a {
    padding: 0.5rem 2rem 0.5rem 1.5rem;
    border-radius: 0 2em 0 0;
    border: 1px solid #004392;
  }
}

.jp-en {
  display: flex;
}
.jp-en span.current a {
  border: 1px solid;
  padding: 0.5rem 1rem;
  color: #004392;
  background-color: white;
  font-weight: 700;
}
.jp-en span a {
  border: 1px solid;
  padding: 0.5rem 1rem;
  color: #666;
  background-color: #333;
  font-weight: 700;
  display: block;
}

a.contact-btn {
  gap: 0.25em;
}
a.contact-btn:before {
  content: "";
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-mail.svg);
  width: 1.2em;
  height: 1em;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 800px) {
  .nav-area {
    position: fixed;
    transform: translateX(100%);
    transition: all 0.3s ease;
    width: 100%;
    background-color: white;
  }
  .nav-area.active {
    transform: translateX(0);
    box-shadow: 0 2px 3px #e7e7e7;
  }
}
nav.global-menu,
nav.global-menu ul,
nav.global-menu li,
nav.global-menu a {
  height: 100%;
}
nav.global-menu ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 800px) {
  nav.global-menu ul {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
nav.global-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
nav.global-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #004392;
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  nav.global-menu li a:after {
    display: none;
  }
}
nav.global-menu li a:hover:after {
  width: 100%;
}
@media (max-width: 800px) {
  nav.global-menu li a:hover {
    background-color: #004392;
    color: white;
  }
}
@media (max-width: 800px) {
  nav.global-menu li a {
    padding: 0.75em;
    border-bottom: 1px solid;
  }
}

/* -----------------------------------------
     Hamburger button
     ----------------------------------------- */
.sp-menu {
  /* 初期は非表示（PC）。md以下で出す */
  display: none;
}
@media (max-width: 800px) {
  .sp-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* ボタンリセット */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: #004392;
    color: #fff;
    width: 56px;
    height: 100%;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
    right: 0;
    /* 3本のバー（span）はボタン内の中央に重ねる */
    /* active（開）でX化 */
  }
  .sp-menu span {
    position: absolute;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .sp-menu span:nth-child(1) {
    top: 14px;
  }
  .sp-menu span:nth-child(2) {
    top: 23px;
  }
  .sp-menu span:nth-child(3) {
    height: 0;
    top: 26px;
    font-size: 12px;
  }
  .sp-menu:hover, .sp-menu:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
  }
  .sp-menu.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  .sp-menu.active span:nth-child(2) {
    top: 23px;
    transform: rotate(-45deg);
  }
  .sp-menu.active span:nth-child(3) {
    opacity: 0;
  }
}

.sp-menu-area {
  display: none;
}
@media (max-width: 800px) {
  .sp-menu-area {
    display: block;
    padding: 2em 1em;
  }
  .sp-menu-area .jp-en {
    justify-content: center;
    margin: 1rem auto;
  }
  .sp-menu-area .contact-sp-btn {
    text-align: center;
  }
  .sp-menu-area .contact-sp-btn a {
    background-color: #004392;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
  }
}

.entry-content {
  max-width: 1170px;
  padding: 1rem;
  margin: 5em auto;
}

article.post-card:first-child h2,
article.post-card:first-child h3 {
  margin-top: 0;
}

span.date {
  font-size: 14px;
  color: black;
  display: block;
}

.view-more {
  text-align: right;
  margin: 2em auto;
}

nav.navigation.pagination {
  margin: 5em auto;
}
nav.navigation.pagination .nav-links {
  text-align: center;
}
nav.navigation.pagination .nav-links span,
nav.navigation.pagination .nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid;
}
nav.navigation.pagination .nav-links a.next, nav.navigation.pagination .nav-links a.prev {
  width: 3.5em;
}

nav.navigation.post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5em;
  border-top: 1px solid #849DD5;
  padding: 1em 0;
}
nav.navigation.post-navigation .nav-links .nav-previous {
  margin-right: auto;
}
nav.navigation.post-navigation .nav-links .nav-previous a {
  display: flex;
  align-items: center;
}
nav.navigation.post-navigation .nav-links .nav-previous a:before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-tri.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  margin-right: 0.5em;
}
nav.navigation.post-navigation .nav-links .nav-next {
  margin-left: auto;
  text-align: right;
}
nav.navigation.post-navigation .nav-links .nav-next a {
  display: flex;
  align-items: center;
}
nav.navigation.post-navigation .nav-links .nav-next a:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-tri.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  margin-left: 0.5em;
}

section.under-contact {
  background-color: #004392;
  color: white;
  padding: 2rem 0;
}
section.under-contact .under-contact-btn {
  margin-top: 3em;
  text-align: right;
}
section.under-contact .under-contact-btn a {
  background-color: white;
  color: #004392;
  display: inline-block;
  padding: 0.5rem 3em;
  font-size: 1.5em;
  border-radius: 2em;
}
section.under-contact .under-contact-btn a:hover {
  background-color: black;
  color: white;
}

footer {
  background-color: black;
  color: white;
  padding: 1em 0;
}
footer p.site-info {
  text-align: center;
  font-size: 12px;
}
@media (max-width: 640px) {
  footer {
    padding-bottom: 5em;
  }
}

ul#footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 2rem auto;
  padding: 0;
}
ul#footer-menu a {
  color: white;
}

.fixed-area {
  position: fixed;
  right: 0;
  z-index: 999;
  bottom: 5em;
}
.fixed-area > div {
  margin: 1rem auto;
}
.fixed-area > div span {
  display: flex;
  width: 48px;
  height: 48px;
  background-color: white;
  color: #004392;
  border: 1px solid;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.fixed-area > div span svg {
  width: 100%;
}
.fixed-area > div span:hover {
  background-color: #849DD5;
}

div#page_top span {
  cursor: pointer;
}

span.wpcf7-spinner {
  display: none;
}

.mailform {
  max-width: 640px;
  margin: auto;
}
.mailform input,
.mailform button,
.mailform textarea,
.mailform select {
  width: 100%;
}
.mailform__label {
  border-bottom: 1px solid #004392;
  margin: 1em auto;
  background-color: #EEF2FB;
  padding: 0.25em 0.5em;
}
.mailform__actions {
  text-align: center;
  margin: 2em auto;
}
.mailform__actions input {
  width: auto;
  border: none;
  font-size: 1.1em;
  padding: 0.25em 2em;
  border-radius: 2em;
  background-color: #004392;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mailform__actions input:hover {
  background-color: black;
}
.mailform span.red {
  color: red;
  font-size: 0.8em;
  margin-left: 0.5em;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.25em;
  margin: 0;
  background-color: #EEF2FB;
}
.breadcrumbs li + li::before {
  content: ">";
  margin-right: 0.5rem;
  color: #999;
}

.wp-block-button .wp-block-button__link:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.is-provider-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

figure.wp-block-embed.aligncenter.is-type-video.is-provider-youtube.wp-block-embed-youtube {
  text-align: center;
}

.page-header {
  background-color: #3e3e3e;
  background-image: var(--page-header-bg);
  background-size: cover;
  background-position: center;
  height: 200px;
}
.page-header .container {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.page-header .container h1 {
  color: white;
}
@media (max-width: 640px) {
  .page-header {
    height: 100px;
  }
  .page-header .container h1 {
    font-size: 18px;
  }
}

.page-header--company {
  --page-header-bg: url("../image/header_company.webp");
}

.page-header--service {
  --page-header-bg: url("../image/header_service.webp");
}

.page-header--product {
  --page-header-bg: url("../image/header_product.webp");
}

.page-header--recruit {
  --page-header-bg: url("../image/header_recruit.webp");
}

.page-header--privacy-policy {
  --page-header-bg: url("../image/header_privacy-policy.webp");
}

.page-header--search {
  --page-header-bg: url("../image/header_search.webp");
}

.page-header--archive {
  --page-header-bg: url("../image/header_archive.webp");
}

.page-header--contact {
  --page-header-bg: url("../image/header_contact.webp");
}

.page-header--thank {
  --page-header-bg: url("../image/header_thank.webp");
}

.product-btn-list p {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.25em 0;
}
@media (max-width: 640px) {
  .product-btn-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

ul.list-product01,
ul.list-product02 {
  -moz-columns: 3;
       columns: 3;
}
@media (max-width: 640px) {
  ul.list-product01,
  ul.list-product02 {
    -moz-columns: 1;
         columns: 1;
  }
}

div#post-17 h3 {
  position: relative;
}
div#post-17 h3:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #004392;
  display: block;
}
div#post-17 .bg02 {
  background-image: url(/wp/wp-content/themes/zana/assets/image/service_bg01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 3em 0;
}
div#post-17 .bg02 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: white;
}
div#post-17 .bg02 h2:before, div#post-17 .bg02 h2:after {
  content: "";
  display: block;
  max-width: 120px;
  width: 100%;
  height: 1px;
  background-color: white;
}
div#post-17 .entry-content {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .order-reverse > div:nth-child(1) {
    order: 2;
  }
  .order-reverse > div:nth-child(2) {
    order: 1;
  }
}
.expertise-column > div {
  border: 1px solid white;
  padding: 1.5em;
  background-color: rgba(0, 0, 0, 0.5);
}
.expertise-column > div figure {
  width: 52px;
  margin: 0 !important;
}
.expertise-column > div figure + p {
  font-size: 1.2em;
  margin: 0.25em 0 0;
}
.expertise-column > div figure + p + p {
  margin: 0 0 2em 0;
}
.expertise-column > div ul.wp-block-list {
  padding-left: 1.25rem;
}

.company-column h3 {
  margin: 0.5em auto 0.25em;
}

.company-history {
  position: relative;
}
.company-history:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #004392;
  left: 7px;
}
.company-history .smb-information__item__label strong:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #004392;
  display: inline-block;
  margin-right: 10px;
}
.company-history .c-row__col.c-row__col--3-4 {
  border-bottom: 1px solid #ccc;
}
.company-history .c-row__col--1-4 {
  --_item-width: 15% !important;
}
@media (max-width: 640px) {
  .company-history .c-row__col--1-4 {
    --_item-width: 25% !important;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.fv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem 0;
}
.fv__title {
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  font-size: clamp(18px, 6vw, 2em);
}
.fv__belt {
  width: 100%;
  background: rgba(35, 79, 175, 0.5);
  color: white;
  padding: 1em;
}
@media (max-width: 640px) {
  .fv__lead {
    text-align: left;
  }
}

.front-intro {
  color: #004392;
}
.front-intro > div {
  box-shadow: 0 2px 5px 0 #ccc;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  padding: 1em 0;
}
.front-intro .icon {
  font-size: 60px;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.front-intro .icon:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.nomination::before {
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-diamond.svg);
}

.icon.sale::before {
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-sale.svg);
}

.icon.workweek::before {
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-graph.svg);
}

.bg01 {
  background-image: url(/wp/wp-content/themes/zana/assets/image/front_bg01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 3em 1em;
}
.bg01 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: white;
  margin: 0;
}
.bg01 h2:before, .bg01 h2:after {
  content: "";
  display: block;
  max-width: 120px;
  width: 100%;
  height: 1px;
  background-color: white;
}
@media (max-width: 640px) {
  .bg01 h2:before, .bg01 h2:after {
    max-width: 20px;
  }
}
.bg01 h2 + p {
  margin: 0 0 2em 0;
}

.zana-policy-column > div {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid white;
  padding: 1.5em;
}
.zana-policy-column > div p:nth-child(1) {
  font-size: 1.2em;
  line-height: 2;
  margin-bottom: 2em;
}

.group-tab {
  --smb-tabs--style--line--accent-color: #004392;
}
.group-tab * {
  transition: all 0.3s ease;
}
.group-tab.smb-tabs.is-style-line[data-orientation=horizontal] > .smb-tabs__tabs > .smb-tabs__tab-wrapper:after, .group-tab.smb-tabs.is-style-line[data-orientation=horizontal] > .smb-tabs__tabs .smb-tabs__tab[aria-selected=true]:after {
  height: 2px !important;
}
.group-tab .smb-tabs__tabs {
  font-weight: bold;
  color: #004392;
}
.group-tab .smb-tabs__tab[aria-selected=false] {
  opacity: 0.5;
  color: #666;
}

.front-tab-grid {
  gap: 3em;
}
.front-tab-grid > div p:first-child {
  color: #004392;
  font-weight: 600;
}
.front-tab-grid > div p:first-child + figure + p {
  color: #004392;
  font-weight: 600;
}
@media (max-width: 640px) {
  .front-tab-grid {
    gap: 1em;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .smb-tab-panel__body {
    height: 300px;
    overflow-y: scroll;
  }
}
.worldmap {
  position: relative;
}
.worldmap figure {
  position: relative;
  z-index: 1;
  margin: 0;
}
.worldmap > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  max-width: inherit;
}
.worldmap > div.global-map__btn {
  z-index: 5 !important;
}
.worldmap > div img {
  position: absolute;
  height: auto;
}
.worldmap > div.global-map__flag img {
  width: 30px;
}
.worldmap > div.global-map__txt img {
  height: 2%;
  width: auto;
}
.worldmap > div.global-map__ttl img {
  height: 5%;
  width: auto;
}
.worldmap > div button {
  position: absolute;
  background: #849DD5;
  border-radius: 2em;
  font-size: 0.8vw;
  padding: 0.25em 1em;
  box-shadow: 0 2px 3px #000000;
  color: white;
}
.worldmap > div button:before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: red;
  display: inline-block;
}
.worldmap > div button.global-map__point--america {
  top: 31%;
  left: 18%;
}
.worldmap > div button.global-map__point--europe {
  top: 31%;
  left: 51%;
}
.worldmap > div button.global-map__point--asia {
  top: 37%;
  left: 65%;
}
.worldmap > div button.global-map__point--japan {
  top: 31%;
  left: 81%;
}
.worldmap > div img.flag_usa {
  top: 32%;
  left: 25.5%;
}
.worldmap > div img.flag_china {
  top: 38%;
  left: 72.5%;
}
.worldmap > div img.flag_german {
  top: 25%;
  left: 47%;
}
.worldmap > div img.flag_india {
  top: 41%;
  left: 61%;
}
.worldmap > div img.flag_japan {
  top: 34%;
  left: 78%;
}
.worldmap > div img.flag_mexico {
  top: 44%;
  left: 21%;
}
.worldmap > div img.txt_usa1 {
  top: 25%;
  left: 18.5%;
}
.worldmap > div img.txt_usa2 {
  top: 42%;
  left: 28.25%;
}
.worldmap > div img.txt_china1 {
  top: 33%;
  left: 58%;
}
.worldmap > div img.txt_china2 {
  top: 54%;
  left: 74%;
}
.worldmap > div img.txt_german1 {
  top: 19.5%;
  left: 38.5%;
}
.worldmap > div img.txt_german2 {
  top: 24%;
  left: 51%;
}
.worldmap > div img.txt_german3 {
  top: 34.5%;
  left: 36%;
}
.worldmap > div img.txt_india {
  top: 50%;
  left: 51%;
}
.worldmap > div img.txt_japan {
  top: 42%;
  left: 79%;
}
.worldmap > div img.txt_mexico {
  top: 56%;
  left: 21%;
}
.worldmap > div img.Alutrim-Asia-LTD {
  top: 49%;
  left: 74%;
}
.worldmap > div img.Alutrim-Europe-GmbH {
  top: 19.5%;
  left: 51%;
}
.worldmap > div img.Narens-Associates-lnc {
  top: 37.5%;
  left: 28%;
}
.worldmap > div img.Scala-design-GmbH {
  top: 30%;
  left: 35.85%;
}
.worldmap > div img.ZANA {
  top: 38%;
  left: 79%;
}
.worldmap > div img.zat-automabiltechnik-de-mexico {
  top: 52%;
  left: 20.85%;
}
.worldmap > div img.ZAT-Automobiltechnik-GmbH {
  top: 15%;
  left: 38.5%;
}
.worldmap > div img.ZAT-Automobiltechnik-Pvt-Ltd {
  top: 46%;
  left: 51%;
}
.worldmap > div img.ZAT-Automobiltechnik-Shanghai-Co-Ltd {
  top: 28%;
  left: 57.75%;
}
.worldmap > div img.ZAT-Automobiltechnik-USA-LLC {
  top: 20.5%;
  left: 18.25%;
}
@media (max-width: 640px) {
  .worldmap {
    display: none;
  }
}

.global-map__item {
  /* ホバー・キーボードフォーカスで表示 */
}
.global-map__item .global-map__point__inner {
  position: absolute;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
.global-map__item .global-map__point__inner p {
  margin: 0;
}
.global-map__item .global-map__point:hover + .global-map__point__inner,
.global-map__item .global-map__point:focus-visible + .global-map__point__inner {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-map__point__inner.america {
  top: 36%;
  left: 18%;
}

.global-map__point__inner.europe {
  top: 36%;
  left: 51%;
}

.global-map__point__inner.asia {
  top: 42%;
  left: 65%;
}

.global-map__point__inner.japan {
  top: 36%;
  left: 76%;
}

.front-news article h3 {
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 20px;
  border-bottom: 1px solid #ccc;
}
.front-news article h3:after {
  content: "";
  width: 20px;
  height: 100%;
  display: block;
  background-image: url(/wp/wp-content/themes/zana/assets/image/icon-tri2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.front-news article h3 a {
  padding: 1em 0;
}

.map iframe {
  width: 100%;
}

/* トップページだけ効かせたいので .home を頭につける */
.home .entry-content > .js-scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* 画面内に入ったら表示 */
.home .entry-content > .js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */