@charset "UTF-8";

/* =Reset
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: inherit;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select,
button {
  *font-size: 100%;
}

legend {
  color: #000;
}

img {
  vertical-align: top;
}

input[type="radio"],
input[type="checkbox"] {
  vertical-align: -2px;
}

label {
  cursor: pointer;
}

section.company-logo .company-logo-animation {
  background-color: #fff;
  pointer-events: none;
  background: url(../../img/logos/company-logo.png) repeat-x;
  background-size: auto 200px;
  width: 100%;
  height: 200px;
  animation: loop-slide 50s infinite linear 1s both;
  margin-top: 30px;
}

@keyframes loop-slide {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: -5695px 0;
  }
}

/* =Common
-------------------------------------------------------------- */
:root {
  /*color*/
  --blue: #0071bc;
  --red: #e3335d;
  --black: #444;
  --shadow: 0 3px 6px rgb(0 0 0 / 10%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-size: 18px;
  line-height: 26px;
  -webkit-text-size-adjust: 100%;
  color: var(--black);
  font-family: Noto Sans JP;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

@media (hover) {
  a,
  a img,
  input[type="submit"],
  input[type="reset"],
  svg * {
    transition-property: color, background-color, border-color, fill;
    transition-duration: 0.3s;
  }
}

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

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

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

.mob {
  display: none !important;
}

.pc {
  display: block;
}

/* clearfix */
/* .cf:before, .cf:after {content:"";display:table;} */
.cf:after {
  clear: both;
}

.clr {
  clear: both;
}

h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
}

h2 span {
  font-size: 18px;
  line-height: 28px;
  display: block;
  font-weight: normal;
  color: var(--black);
}

h3 {
  font-size: 30px;
  line-height: 45px;
  font-weight: bold;
  text-align: center;
}

.hide {
  display: none;
}

h4 {
}

h5 {
}

.white-txt {
  color: #fff;
}

section {
  padding: 50px 0;
}

small {
  font-size: 23px;
  line-height: 34px;
}

.flex {
  display: flex;
}

p {
  font-size: 22px;
  line-height: 32px;
}

.video-wrapper {
  margin: auto;
  max-width: 640px;
  text-align: center;
}

section.video-play {
  background: #fcfcfc;
}

.video-play iframe {
  border-radius: 8px;
}

.video-play h5.label-line {
  margin-bottom: 20px;
}

h2.label-line {
  margin-bottom: 20px;
}

.label-line strong.video-title {
  position: relative;
  padding: 3px 50px;
  border-radius: 4px;
  display: inline-block;
}

.label-line small {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: var(--red);
  text-align: left;
  display: inline-block !important;
}
.label-line strong:before {
  background-image: url(../../img/vectors/illustrations/label-left.svg);
  left: 5px;
}

  .label-line strong:after {
    background-image: url(../../img/vectors/illustrations/label-right.svg);
    right: 5px;
  }

  .label-line strong:before, .label-line strong:after  {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
  }

/* =Styles 
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--black);
}

@media (min-width: 480px) {
  .sp {
    display: none;
  }
}

@media (min-width: 897px) {
  .sptab {
    display: none;
  }
}

@media (max-width: 896px) {
  .pc {
    display: none;
  }

  span.btn-style {
    margin-bottom: 0 !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 479px) {
  body {
    font-size: 3.2vw;
  }

  .pctab {
    display: none;
  }

  .wrapper {
    padding: 0 4.4vw;
  }
}

@media (min-width: 1101px) {
  .menu_btn {
    display: none;
  }
}

@media (max-width: 1100px) {
  .gnav {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  section.problems-block ul {
    grid-template-columns: 1fr 1fr;
  }
}

/* =common class
-------------------------------------------------------------- */
.bold {
  font-weight: bold;
}

.sec_tit {
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 479px) {
  .sec_tit {
    font-size: 6vw;
    line-height: 1.2;
    letter-spacing: -0.04em;
  }
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =header mv
-------------------------------------------------------------- */
.header {
  text-align: left;
  background-color: #fff;
}

.header_wrap {
  display: table;
  width: 100%;
}

.header .logo {
  display: table-cell;
}

.header .head_txt {
  display: table-cell;
  line-height: 1.5;
  vertical-align: middle;
}

/*一時的処理*/
.sec1 .sec_wrap {
  display: none;
}

span.btn-style {
  background: var(--red);
  color: #fff;
  padding: 13px 16px 14px 16px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 0px 3px var(--red);
  border-radius: 8px;
  margin: 34px 0 40px 0;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

span.btn-style strong {
  font-size: 22px;
}

/*---------------
 追加　追従ヘッダー
 ---------------*/

header.sticky {
  height: 90px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}

@media (min-width: 1060px) {
  header.sticky {
    border-radius: 0px;
  }
}

.header_inner {
  width: 90%;
  margin: 0 auto;
  display: table-cell;
}

/*ID-checker logo*/
.header .header_wrap .logo.logo_idchecker {
  width: 160px;
}

/*>>>Start max-width: 479px スマホ以下*/
@media (max-width: 1059px) {
  /*ID-checker logo*/
  .header .header_wrap .logo.logo_idchecker {
    display: block;
    width: 130px;
    margin-left: 1.2rem;
    margin-top: 20px;
  }
}

/*<<<スマホ以下 END*/
/*----------Gナビゲーションデバイス共通----------*/
/*ナビ*/
.nav .header__nav {
  position: relative;
}

/*navigation*/
li.nav-items__item {
  font-size: 16px;
  padding: 1px;
  margin-right: 10px;
}

/*ナビ項目ボックス(=.nav__items)*/
.ul.navi__wrap {
  display: table;
  width: 80%;
  margin: 0 auto;
}

/*ナビ項目(=.nav-items__item)*/
ul.navi__wrap li {
  display: table-cell;
}

/*スマホ以上(スマホ含まず)*/
@media (min-width: 1060px) {
  /*ナビ項目ホバー時表示(=.nav__items :hover)*/
  .gnavi__wrap > li :hover {
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
  }
}

@media only screen and (max-width: 1350px) {

}

@media only screen and (max-width: 896px) {
  .mob {
    display: block !important;
  }

  .pc {
    display: none;
  }

  section.banner .banner-col {
    grid-template-columns: 100% !important;
    margin: 0 !important;
    height: auto !important;
  }

  section.banner {
    height: auto !important;
    overflow: unset !important;
    background-size: cover !important;
  }

  .mob-illustrator {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    overflow: hidden;
    border-bottom: 1px solid #aaa;
    margin: 30px 0;
  }

  section.banner .mynum-illustrator img {
    width: 100% !important;
  }

  .selfie-illustrator {
    margin-bottom: -7px !important;
  }

  section.two-authentication .two-col {
    flex-direction: column;
  }
  section.two-authentication .jpki-block {
    flex-direction: column !important;
  }
   section.two-authentication .jpki-block img.plus {
    margin-top: 5px !important;
}

  section.two-authentication .block-one {
    min-height: auto !important;
  }
  .bubble {
    height: 155px !important;

  }

  .jpki {
    width: 100% !important;
  }

  .mob-ver {
    flex-direction: row !important;
  }

  section.two-authentication .two-col ul li img.plus {
    width: 30px !important;
  }

  section.two-authentication .two-col li:first-child,
  section.two-authentication .two-col li:last-child {
    flex-basis: 200px !important;
  }
}

@media only screen and (max-width: 1350px) {
  .section.banner {
    height: 532px !important;
  }

  ul.two-col.sec-block.mob-ver img:not(.plus),
  section.two-authentication .two-col ul li img:not(.plus) {
    width: 160px !important;
  }

  section.why-ekyc .ekyc-info .card-hold {
    align-self: center !important;
  }

  .bubble {
    margin-top: 20px !important;
  }


  .bg-img {
    margin-top: 30px !important;
  }

}

@media only screen and (max-width: 1024px) {
  section.banner .mynum-illustrator img {
    margin-left: 0 !important;
  }

  section.two-authentication .cards-documents ul li {
    white-space: normal !important;
  }

  section.implementation ul {
    grid-template-columns: 1fr 1fr !important;
  }

  section.two-authentication .cards-documents ul {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  section.protech-feature ul.feature-list div {
    grid-template-rows: 125px 95px 1fr !important;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding: 0 20px !important;
  }

  section.why-ekyc .ekyc-info {
    flex-direction: column-reverse;
  }

  section.why-ekyc .ekyc-info ul li {
    padding-bottom: 25px;
  }

  section.why-ekyc .ekyc-info ul li:last-child {
    padding-bottom: 0 !important;
  }

  section.why-ekyc .ekyc-info div {
    text-align: center;
  }

  section.problems-block ul {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  section.problems-block ul li span {
    font-size: 3.1vw !important;
    line-height: 4.1vw !important;
  }

  section.company-logo .logo-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }

  section.company-logo ul {
    flex-direction: column;
  }

  section.problems-block {
    margin-top: 30px;
  }

  section.problems-block ul li img {
    height: 12vh !important;
  }

  section.usage-scenarios ul {
    gap: 12px !important;
  }

  section.online-ekyc {
    background-position: center 0 !important;
    padding-top: 70px !important;
  }

  h2 span {
    font-size: 3.7vw !important;
    line-height: 4.7vw !important;
  }

  h2,
  h2.ekyc-logo small,
  section.banner .logo-area h2 span,
  h2.ekyc-logo small {
    font-size: 6vw !important;
    line-height: 7vw !important;
    text-align: center !important;
  }

  section.ekyc-feature h4,
  section.protech-feature h4 {
    font-size: 4.5vw;
    line-height: 5.5vw;
  }

  section.protech-feature ul.feature-list li span br,
  h2 span br,
  section.usage-scenarios p br,
  section.implementation p br,
  section.two-authentication .two-col li strong br,
  section.two-authentication h5 br,
  h2.sub-title br,
  section.ekyc-feature h4 br,
  section.usage-scenarios ul li h4 br {
    display: inline;
    content: " ";
  }

  section.company-logo h2 {
    font-size: 30px !important;
  }

  section.company-logo h2 span {
    font-size: 45px !important;
  }

  section.usage-scenarios p,
  h2 span,
  section.online-ekyc span,
  section.ekyc-feature h5,
  section.implementation p,
  section.usage-scenarios ul li h4,
  ul.list-items li,
  section.two-authentication .two-col li strong,
  section.protech-feature ul.feature-list li span,
  section.why-ekyc .ekyc-info ul li,
  section.problems-block ul li span,
  section.two-authentication .cards-documents small,
  body,
  section.two-authentication .cards-documents ul li,
  section.banner .banner-text-area h1 small,
  section.implementation p {
    font-size: 3.5vw !important;
    line-height: 4.5vw !important;
  }

  section.two-authentication .cards-documents small {
    margin-top: 20px !important;
  }

  .button_area {
    justify-content: center;
  }

  section.protech-feature ul.feature-list li {
    padding: 20px 22px 40px 22px !important;
  }

  section.ekyc-feature ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .wrap-jpki {
    width: 100% !important;
  }

  section.ekyc-feature ul li div {
    display: grid;
    grid-template-rows: 24px 190px 1fr;
    align-items: center;
    justify-content: center;
  }

  section.two-authentication .cards-documents ul {
    grid-template-columns: 1fr 1fr !important;
    margin: 0 !important;
    gap: 10px !important;
  }

  section.protech-feature ul.feature-list {
    grid-template-columns: 1fr !important;
  }

  section.implementation .list-wrapper {
    display: block !important;
  }

  section.implementation .list-wrapper .link-btn {
    margin: 10px 0 !important;
  }

  section.implementation ul {
    grid-template-columns: 1fr !important;
  }

  section.usage-scenarios ul {
    grid-template-columns: 1fr 1fr !important;
  }

  section.implementation ul li {
    padding: 10px 10px 16px 10px;
  }

  section.protech-feature ul.feature-list {
    margin: 30px 0 0 0 !important;
  }

  section.problems-block ul li {
    border-radius: 8px !important;
  }

  section.implementation ul li {
    padding: 15px 15px 16px 15px !important;
    transition: all 0.2s;
  }

  section.implementation ul li img {
    width: 90%;
  }

  section.two-authentication .cards-documents ul li {
    padding: 36px 12px 36px 12px !important;
    white-space: normal !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  section.company-logo ul li img {
    width: 30vw;
  }

  .mrg-top {
    margin-top: 0 !important;
  }

  .mrg-space {
    margin: 0 !important;
  }

  section.banner .banner-col {
    gap: 20px;
    height: auto !important;
  }

  section.banner .banner-text-area h1 {
    font-size: 8vw !important;
    line-height: 9vw !important;
    font-weight: 900;
  }

  section.banner .banner-text-area h1 small {
    margin-top: 8px !important;
  }

  section.banner {
    height: auto !important;
  }

  section {
    padding: 30px 0 !important;
  }

  ul.list-items {
    flex-direction: column;
    margin: 30px !important;
    gap: 20px !important;
  }
  section.ai .two-col {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  section.two-authentication h3 {
    font-size: 5vw;
    line-height: 6vw;
  }

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

  section.implementation ul li {
    padding: 15px !important;
  }

  section.protech-feature ul.feature-list div {
    grid-template-rows: 120px 75px 1fr !important;
  }

  section.implementation h4 {
    font-size: 15px !important;
  }

  section.two-authentication .link-btn {
    margin-top: 14px !important;
  }

  section.implementation .list-wrapper {
    grid-template-rows: 266px 50px 80px 110px 1fr 1fr !important;
  }

  .ai-block {
    margin: 5px 0 !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }

  section.ai .two-col {
    gap: 15px !important;
}

  section.ai .ai-block strong {
    font-size: 24px;
    margin-bottom: 12px;
  }

  section.two-authentication .two-col {
    flex-direction: column;
}
}

@media only screen and (max-width: 576px) {
  section.ekyc-feature ul,
  section.problems-block ul {
    grid-template-columns: 1fr !important;
    margin-top: 30px !important;
  }

  section.implementation ul {
    grid-template-columns: 1fr !important;
  }

  section.ekyc-feature ul li div {
    grid-template-rows: 50px 145px 1fr !important;
  }

  .button_area .dl_link_btn a,
  .button_area .contact_btn a {
    padding: 3vw 8vw !important;
  }

  section.banner .logo-area img.no-one {
    width: 100% !important;
  }

  .button_area .contact_btn a,
  .button_area .dl_link_btn a {
    white-space: nowrap;
    font-size: 3.3vw !important;
    line-height: 4vw !important;
  }

  section.two-authentication .two-col {
    gap: 10px !important;
  }

  section.implementation ul li {
    padding: 15px !important;
  }

  section.implementation h5 {
    font-size: 18px;
    line-height: 24px;
  }

  h2 span {
    font-size: 3.7vw !important;
    line-height: 4.7vw !important;
  }

  h2,
  h2.ekyc-logo small,
  section.banner .logo-area h2 span,
  h2.ekyc-logo small,
  h2.ekyc-logo em {
    font-size: 7.5vw !important;
    line-height: 8.5vw !important;
    text-align: center !important;
  }

  section.two-authentication .two-col li:first-child,
  section.two-authentication .two-col li:last-child {
    flex-basis: 50px !important;
  }

  section.usage-scenarios p,
  h2 span,
  section.online-ekyc span,
  section.ekyc-feature h5,
  section.implementation p,
  section.usage-scenarios ul li h4,
  ul.list-items li,
  section.two-authentication .two-col li strong,
  section.protech-feature ul.feature-list li span,
  section.why-ekyc .ekyc-info ul li,
  section.problems-block ul li span,
  section.two-authentication .cards-documents small,
  body,
  section.ai .ai-block p,
  section.two-authentication .cards-documents ul li,
  section.implementation p {
    font-size: 4vw !important;
    line-height: 1.4 !important;
  }

  section.company-logo h2 span {
    font-size: 45px !important;
  }

  ul.two-col.sec-block.mob-ver img {
    width: 82px;
  }

  ul.two-col.sec-block.mob-ver img:not(.plus),
  section.two-authentication .two-col ul li img:not(.plus) {
    width: 116px !important;
  }

  section.legal-block .block-one {
    min-height: auto !important;
  }

  section.two-authentication h2 {
    margin-bottom: 30px;
  }
}

/*----------Gナビゲーションデバイス共通 ここまで----------*/
/*PCとタブレットで表示しない*/
.onlysp {
  display: none;
}

.btn_back {
  display: none;
}

/*------Gナビゲーション デバイス別レイアウト調整------*/
/*タブレット以下スマホ以上(スマホ含まず)*/
@media (min-width: 480px) and (max-width: 1419px) {
  .header_inner {
    width: 100%;
  }

  .header_inner .header_wrap {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1059px) and (max-width: 1419px) {
  /*赤ボタン 消える*/
  .hbtn_left {
    display: none;
  }
}

/*>>>Start max-width: 479px スマホ以下*/
@media (max-width: 1059px) {
  header.sticky {
    height: 70px;
    align-items: baseline;
  }

  header .header_inner {
    width: 100%;
  }

  .header_wrap {
    display: table;
    /* width: 90%; */
  }

  /*スマホのみで表示*/
  .onlysp {
    display: inline;
  }

  a.btn_back {
    display: block;
    text-align: center;
    width: 100%;
    cursor: pointer;
  }

  a.btn_back > p {
    position: relative;
    display: inline-block;
  }

  a.btn_back > p::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(315deg);
    position: absolute;
    left: -15px;
    top: calc(50% - 4px);
  }
}

/*<<< スマホ以下　END*/

/*------Gナビゲーション デバイス別レイアウト調整　ここまで------*/

/*----------ドロップダウンリスト
❶外側の<ul>
❷外側の<li>
❸外側の<li>の内側の<ul>
❹外側の<li>の内側の<ul>の内側の<li>
❺外側の<li>の内側の<ul>の内側の<li>の<a>
----------*/
/*❶外側の<ul>*/
.gnavi__wrap {
  position: relative;
}

/*❸外側の<li>の内側の<ul>
❹外側の<li>の内側の<ul>の内側の<li>*/
li.gnavi__list ul.dropdown__lists,
li.gnavi__list ul.dropdown__lists li.dropdown__list {
  visibility: hidden;
  /*デフォルトでは非表示の状態にしておく*/
  opacity: 0;
  /*不透明度0*/
  transition: margin 0.3s;
}

/*❷外側の<li>*/
li.gnavi__list {
  padding-right: 1em;
  position: relative;
}

/*❸外側の<li>の内側の<ul>*/
li.gnavi__list ul.dropdown__lists {
  position: absolute;
  top: 27px;
  left: -36%;
  width: 15vw;
}

/*❺外側の<li>の内側の<ul>の内側の<li>の<a>*/
/*ドロップリストの矢印*/
li.gnavi__list > a {
  position: relative;
  cursor: pointer;
}

li.gnavi__list > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(224deg);
  position: absolute;
  right: -15px;
  top: calc(50% - 5px);
}

/*---ドロップリストボックス ホバーの表示
①外側<li>がホバーされた時の内側<ul>
②外側<li>がホバーされた時の内側<ul>の<li>
③外側<li>がホバーされた時の内側<ul>の<li>の<a>
④内側の<li>がホバーされた時
⑤内側の<ul>ホバーされた時
⑥内側の<li>の<a>がホバーされた時
---*/
/*④内側の<li>がホバーされた時 ※デバイス共通*/
li.dropdown__list:hover {
  border-bottom: none;
}

/*⑥内側の<li>の<a>がホバーされた時 ※デバイス共通*/
li.dropdown__list a:hover {
  border-bottom: none;
  padding: 0;
}

/*スマホ以上(スマホ含まず)*/
@media (min-width: 1060px) {
  /*①、⑤*/
  li.gnavi__list:hover ul.dropdown__lists,
  ul.dropdown__lists:hover {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
    background-color: #fff;
    color: #000;
    vertical-align: middle;
    border-bottom: none;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border-radius: 8px;
    border-top: 5px solid var(--blue);
  }

  /*吹き出し*/
  li.gnavi__list:hover ul.dropdown__lists::before {
    content: "";
    position: absolute;
    border: 12px solid transparent;
    border-bottom: 12px solid var(--blue);
    top: -24px;
    left: 20%;
  }

  /*吹き出し　三角の影*/
  li.gnavi__list:hover ul.dropdown__lists::after {
    content: "";
    position: absolute;
    border: 12px solid transparent;
    border-bottom: 12px solid #dbd8d8;
    top: -24px;
    left: 22%;
    z-index: -10;
    filter: blur(5px);
  }

  /*②*/
  li.gnavi__list:hover ul.dropdown__lists li.dropdown__list {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
    height: 46px;
    border-bottom: none;
    position: relative;
    text-align: left;
    display: grid;
    place-items: center;
  }

  /*④*/
  li.dropdown__list:hover {
    height: 60px;
    margin: 1em 0 0;
    border-bottom: none;
    position: relative;
    text-align: left;
    margin: 0;
    vertical-align: middle;
  }

  /*❺外側の<li>の内側の<ul>の内側の<li>の<a>*/
  li.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--black);
    text-decoration: none;
    position: relative;
  }
}

/*スマホ以上(スマホ含まず) ここまで*/

/*>>>Start max-width: 479px スマホ以下*/
@media (max-width: 1059px) {
  /*ドロップダウンリストを最初から表示*/
  li.gnavi__list ul.dropdown__lists,
  li.gnavi__list ul.dropdown__lists li.dropdown__list {
    visibility: visible;
    opacity: 1;
    padding: 1em 0;
    width: 100%;
  }

  /* ⑤内側の<ul>ホバーされた時 */
  li.gnavi__list ul.dropdown__lists:hover {
    border-bottom: none;
  }

  /*ドロップダウンbox<ul>*/
  li.gnavi__list ul.dropdown__lists {
    visibility: visible;
    opacity: 1;
    padding: 1em 0;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }

  /*ドロップダウンリスト<li>*/
  li.dropdown__list {
    font-size: 0.9rem;
    padding: 1em;
  }

  li.dropdown__list a {
    display: block;
  }

  /*ドロップダウンリストのタイトルテキスト*/
  li.gnavi__list > a {
    font-size: 0.8em;
    color: #888888;
  }

  /*下点線*/
  ul.gnavi__wrap > li {
    font-size: 0.9rem;
    padding: 1.6em 1em;
    border-bottom: 1px dotted #ddd;
    width: 90%;
  }

  .language-dropdown {
    right: unset !important;
  }

  .language-selector {
    margin: 24px 0 0 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /*ドロップダウンリスト 矢印*/
  li.gnavi__list > a::before {
    display: none;
    cursor: pointer;
  }

  li.nav-items__item a,
  .dropdown__list a {
    position: relative;
    display: block;
    font-weight: bold;
  }

  li.nav-items__item > a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--blue);
    border-left: 2px solid var(--blue);
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
  }

  li.nav-items__item.gnavi__list > a::before {
    content: none;
  }

  /* .dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--blue);
    border-left: 2px solid  var(--blue);
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
} */
}

/*<<<END max-width: 479px スマホ以下*/
/*----------ドロップダウンリスト ここまで----------*/

/*------ヘッダー二列ボタン------*/
/*ヘッダボタン親要素ボックス*/
.hbtn_in {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*親ボックスの中のhbtn_がつく要素全て*/
/* .hbtn_in > div */
.hbtn_in [class^="hbtn_"] {
  margin: 0 1.5% 0 1.5%;
}

/*ボタン <a>共通*/
/* .hbtn_in > div a */
.hbtn_in [class^="hbtn_"] a {
  display: block;
  border-radius: 3em;
}

/*ホバーで落ちるボタンの状態*/
/* .hbtn_in > div a:hover picture img  */
.hbtn_in [class^="hbtn_"] a:hover picture img {
  transform: translate3d(0, 3px, 0);
  transition: 0.3s;
}

/*赤ボタン*/
.hbtn_left {
  margin-right: 0.75em;
}

.hbtn_left a {
  max-width: 160px;
  padding: 9px 34px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  background: transparent linear-gradient(270deg, #f07896 0%, #e53660 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 4px #a72a4b;
  text-shadow: 0px 2px 0px #ad1c1c;
  white-space: nowrap;
}

.hbtn_left a:hover {
  border-bottom: solid 2px #a72a4b;
  transform: translateY(3px);
}

/*青ボタン*/
.hbtn_right a {
  max-width: 160px;
  padding: 9px 20px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  background: transparent linear-gradient(270deg, #65abde 0%, #0b71bc 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 4px #2d4f7c;
  text-shadow: 0px 2px 0px #195f93;
  white-space: nowrap;
}

.hbtn_right a:hover {
  border-bottom: solid 2px #2d4f7c;
  transform: translateY(3px);
}

/*>>>Start max-width: 479px スマホ以下*/
@media (max-width: 1059px) {
  div.hbtn {
    margin: 2em auto;
  }
}

/*<<<END max-width: 479px スマホ以下*/

/*------ヘッダー二列ボタン ここまで------*/
/*スマホ以上(スマホ含まず)-タブレットまで（PC含まず）*/
@media (min-width: 1059px) and (max-width: 1419px) {
  .hbtn_right a {
    max-width: 160px;
    padding: 14px 18px;
    color: #fff;
    transition: 0.1s ease-in-out;
    font-size: 13px;
    font-weight: 500;
    background: transparent linear-gradient(270deg, #65abde 0%, #0b71bc 100%) 0%
      0% no-repeat padding-box;
    border-bottom: solid 4px #2d4f7c;
    text-shadow: 0px 2px 0px #195f93;
    white-space: nowrap;
  }
}

/*スマホ以上(スマホ含まず)*/

@media (min-width: 1060px) {
  /*ハンバーガーメニュー,<nav__items=ul.navi__wrap>*/
  .nav__items {
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
    font-weight: bold;
    gap: 25px !important;
  }

  /*PCでは見せない ハンバーガーメニュー*/
  .hamburger {
    display: none;
  }
}

/*>>>Start max-width: 479px スマホ以下*/
@media (max-width: 1059px) {
  /*ヘッダー*/
  header .header_wrap {
    display: block;
    position: relative;
  }

  .header_inner {
    display: block;
  }

  /*-----ハンバーガーメニュー　-----*/
  /*ナビゲーション*/
  nav.header__nav {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: ease 0.4s;
  }

  /*ナビゲーション クリック後表示*/
  nav.header__nav.active {
    margin-top: 1em;
    opacity: 100;
    visibility: visible;
    display: block;
    /* right: 0;
	  left: 0;
	  top: 0; */
    width: 100%;
    height: 100vh;
    background-color: #fff;
  }

  ul.nav__items {
    /* width: 100%; */
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    height: initial;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  /*邪魔なのでボタン一旦隠す*/
  .hbtn.button_area_wrap {
    display: none;
  }

  /*ハンバーガーのサイズ*/
  .header__hamburger {
    width: 46px;
    height: 100%;
    height: 50px;
  }

  /*三本線の位置*/
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 10000;
    position: fixed;
    top: 10px;
    right: 5%;
    cursor: pointer;
  }

  /*- ハンバーガーメニューの線 共通*/
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #0071bc;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: -17px;
    transform: rotate(-45deg);
  }

  /* -----ハンバーガーメニュー END----- */
}

/*<<<END max-width: 479px*/

section.banner {
  background: url(../../img/banner-bg.png) no-repeat;
  background-size: cover;
 
  overflow: hidden;
  border-bottom: 1px solid #e8e8e8;
  background-position: center;
  padding: 0;
  margin: 0;
}

section.banner .banner-col {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 450px;
  gap: 30px;
  align-items: center;
}

section.banner .banner-col,
.mynum-illustrator,
section.banner .banner-col,
.selfie-illustrator {
  align-self: end;
  /* margin-bottom: -70px; */
}

section.banner .banner-col,
.selfie-illustrator {
  /* margin-bottom: -85px; */
}

section.banner .banner-text-area h1 {
  font-size: 35px;
  line-height: 50px;
  font-weight: 900;
  color: var(--black);
}

section.banner .banner-text-area h1 small {
  font-size: 18px;
  line-height: 23px;
  margin: 16px 0;
  font-weight: normal;
  display: block;
  color: var(--black) !important;
}

span.underline {
  position: relative;
}
span.underline::after {
  content: "";
  position: absolute;
  background: url(../../img/bitmaps/bg/shape_01.svg) no-repeat;
  width: 95%;
  height: 10px;
  left: 0;
  bottom: -9px;
}

.effect-shine {
  position: relative;
}

.effect-shine:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.effect-shine:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

section.banner .button-area span {
  font-size: 10px;
  line-height: 16px;
  text-align: left;
  margin-top: 12px;
  display: block;
}

section.banner .logo-area img.no-one {
  width: 245px;
  display: block;
}

section.banner .logo-area .logo-inner {
  width: 200px;
  margin-bottom: 10px;
}

section.banner .logo-area h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: var(--blue);
  text-align: left;
}

section.banner span.sub-title {
  display: inline-block;
  margin:8px 0 30px 0;

}

section.banner .logo-area h2 span,
h2.ekyc-logo small,
h2.sub-title small {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: var(--red);
  text-align: left;
  display: inline-block !important;
}

section.banner h5 {
  position: relative;
  font-size: 1.4rem;
  color: var(--blue);
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

h2.ekyc-logo em {
  color: var(--black) !important;
}

section.banner .mynum-illustrator img {
  height: auto;
}

.cf {
  justify-content: center;
}

section.btn-area {
  background: #fff;
}

.button_area .contact_btn a,
.button_area .dl_link_btn a {
  display: block;
  border-radius: 3em;
  text-align: center;
  padding: 20px 38px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.button_area .big-btn a {
  padding: 25px 40px 24px 40px;
}

.button_area .big-btn a {
  padding: 22px 42px;
  font-size: 20px;
  line-height: 20px;
}

.button_area .contact_btn a {
  background: transparent linear-gradient(270deg, #65abde 0%, #0b71bc 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 5px #2d4f7c;
  text-shadow: 0px 2px 0px #195f93;
}

.button_area .dwn-btn a {
  background: transparent linear-gradient(270deg, #f07896 0%, #e53660 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 5px #a72a4b;
  text-shadow: 0px 2px 0px #ad1c1c;
}

.button_area .dl_link_btn a {
  padding: 16px 40px 18px 40px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 22px;
  font-weight: 600;
  background: transparent linear-gradient(270deg, #65abde 0%, #0b71bc 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 5px #2d4f7c;
  text-shadow: 0px 2px 0px #195f93;
  position: relative;
}

.button_area .contact_btn a {
  padding: 16px 40px 18px 40px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 22px;
  font-weight: 600;
  background: transparent linear-gradient(270deg, #f07896 0%, #e53660 100%) 0%
    0% no-repeat padding-box;
  border-bottom: solid 5px #a72a4b;
  text-shadow: 0px 2px 0px #ad1c1c;
}

.mv .button_area {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.button_area_wrap {
  background-color: rgba(122, 153, 174, 0.62);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
  border-top: 2px solid #ffffff4f;
  padding: 10px 0;
}

.button_area .contact_btn a:hover {
  border-bottom: solid 2px #a72a4b;
  transform: translateY(3px);
}

.button_area .dwn-btn a:hover {
  border-bottom: solid 2px #2d4f7c;

  transform: translateY(3px);
}

.button_area {
  display: flex;
  gap: 10px;
}

/* Company Logo */
section.company-logo {
  border-bottom: 1px solid #e8e8e8;
}

section.company-logo h2 {
  font-size: 30px;
  line-height: 44px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
}

section.company-logo h2 span {
  font-size: 45px;
  line-height: 28px;
  font-weight: 900;
  color: var(--red);
  display: inline-block;
}

section.company-logo ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

section.company-logo ul li img {
  width: 200px;
}

/* Why eKyc */
section.why-ekyc {
  padding: 20px 0 0 0;
}

section.why-ekyc h2 {
  text-align: left;
  margin-bottom: 30px;
}

section.why-ekyc ul li {
  font-size: 18px;
  line-height: 28px;
}

section.why-ekyc .ekyc-info {
  display: flex;
  justify-content: space-between;
  gap: 11px;
}

section.why-ekyc .ekyc-info ul {
  padding: 0 0 20px 0;
}

section.why-ekyc .ekyc-info .card-hold {
  align-self: end;
}

section.why-ekyc .ekyc-info .card-hold img {
  margin-bottom: -2px;
}

/* Problems */
section.problems-block {
  background: var(--blue);
}

section.problems-block h2 {
  color: #fff;
  margin-bottom: 30px;
}

section.problems-block i {
  width: 215px;
  background: url(../../img/vectors/illustrations/graphic-online.svg) no-repeat;
}

section.problems-block ul {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

section.problems-block ul li {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

section.problems-block ul li img {
  height: 125px;
}

section.problems-block ul li span {
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  font-weight: bold;
  display: block;
  margin-top: 30px;
}

.wrap-jpki {
  width: 45%;
  margin: 0 auto;
}

/* AI */
section.ai {
  background: #f8f8f8;
  background-size: cover;
  background-attachment: fixed;
}

section.ai h2 {
  margin-bottom: 30px;
}
section.ai .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

section.ai strong {
  display: block;
}
section.ai img {
  width: 500px;
}

.ai-block {
  margin: 5px 150px;
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 5%);
  border: 1px solid #eeeeee;
}

section.ai .ai-block strong {
  display: block;
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

section.ai .ai-block p {
  font-size: 18px;
  line-height: 1.5;
}

/* Online Ekyc */
section.online-ekyc {
  background: #f4f4f4 url(../../img/vectors/illustrations/arrow-bg.svg) no-repeat;
  background-position: center -28px;
  background-size: 100%;
  padding-top: 120px;
  text-align: center;
}

section.online-ekyc img {
  width: 270px;
}

section.online-ekyc .logo-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

section.online-ekyc .logo-txt span {
  margin-top: 32px;
}

section.online-ekyc .button_area {
  justify-content: center;
  margin-top: 16px;
}

section.online-ekyc span {
  display: block;
  font-size: 26px;
  line-height: 36px;
}

/* Feature */

section.ekyc-feature {
  background: url(../../img/background/feature-bg.svg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

section.ekyc-feature ul {
  display: flex;
  gap: 12px;
  margin-top: 60px;
}

section.ekyc-feature ul li {
  border: 2px solid var(--blue);
  padding: 20px 10px 20px 10px;
  border-radius: 8px;
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

section.ekyc-feature ul li div {
  display: grid;
  grid-template-rows: 50px 210px 1fr;
  align-items: center;
  justify-content: center;
}

section.ekyc-feature h4,
section.protech-feature h4 {
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  align-self: flex-start;
}

section.ekyc-feature h5 {
  font-size: 18px;
  line-height: 24px;
}

section.ekyc-feature h5 span {
  font-weight: bold;
  color: var(--blue);
}

/* Two authentication */

section.two-authentication,
section.protech-feature {
  background: #e8f0f8;
}

section.two-authentication h3 {
  margin: 30px 0;
}

section.two-authentication .two-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

section.two-authentication .block-one {
  background: #fff;
  padding: 16px;
  border: 3px solid var(--blue);
  width: 100%;
  border-radius: 8px;
  flex-grow: 1;
  flex-basis: 0;
  min-height: 280px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.jpki {
  width: 45%;
  margin: 0 auto !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.bubble {
  position: relative;
  max-width: 250px;
  height: 120px;
  padding: 2px;
  background: #eaf2f8;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  text-align: start;
  align-items: center;
  display: flex;
  padding-left: 25px;
}

.bubble:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 20px 20px 20px 0;
  border-color: transparent #eaf2f8;
  display: block;
  width: 0;
  z-index: 1;
  left: -20px;
  top: 42px;
}

section.legal-block .block-one {
  min-height: 290px !important;
}

.mrg-space {
  margin: 50px 100px 0 100px;
}

.mrg-top {
  margin-top: 84px;
}

section.two-authentication .two-col li strong {
  margin-bottom: 10px;
  display: block;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
}

section.two-authentication ul.two-col li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 1;
}

section.two-authentication .two-col li:first-child,
section.two-authentication .two-col li:last-child {
  flex-basis: 100px;
}

section.two-authentication .two-col ul li img:not(.plus) {
  width: 135px !important;
}
.jpki img {
  width: 120px;
}

section.two-authentication .two-col ul li img.plus,
.sec-block img.plus {
  width: 40px !important;
}

section.two-authentication .two-col ul li img.plus {
  margin-top: 30px;
}

section.two-authentication .two-col ul.sec-block li img.plus {
  margin-top: 50px;
}

.sec-block img.plus {
  margin-top: 50px !important;
}

section.two-authentication h5 {
  text-align: center;
  font-weight: bold;
  line-height: 34px;
  font-size: 24px;
  margin-bottom: 30px;
}

section.two-authentication .link-btn {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

section.two-authentication .link-btn a {
  max-width: 160px;
  padding: 16px 92px 16px 31px;
  color: #fff;
  transition: 0.1s ease-in-out;
  font-size: 15px;
  font-weight: bold;
  background: #2671bc;
  border-bottom: solid 4px #2d4f7c;
  text-shadow: 0px 2px 0px #195f93;
  white-space: nowrap;
  border-radius: 12px;
  display: block;
  line-height: 25px;
}

section.two-authentication .cards-documents ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 100px;
}

section.two-authentication .cards-documents ul li {
  background: #fff;
  padding: 40px 20px 36px 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: var(--blue);
  box-shadow: 0 3px 6px rgb(0 0 0 / 5%);
  align-items: center;
  justify-content: center;
  display: flex;
}

section.two-authentication .cards-documents small {
  font-size: 18px;
  margin-top: 26px;
  display: block;
}

.no-bg {
  background: none !important;
}

h2.sub-title {
  font-size: 30px;
  line-height: 40px;
}

.bg-img {
  background: #e8f0f8 url(../../img/background/bg-background.svg) no-repeat;
  background-size: 100%;
  padding: 60px 0;
  margin-top: 60px;
  position: relative;
}

.bg-img:after {
  width: 0px;
  height: 20px;
  border-top: solid 30px rgb(255 255 255);
  border-left: solid 30px transparent;
  border-right: solid 30px transparent;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}

ul.list-items {
  display: flex;
  gap: 30px;
  margin: 30px 100px 30px 100px;
}

ul.list-items li {
  background: #fff;
  border: 1px solid #717171;
  border-radius: 8px;
  flex-grow: 1;
  flex-basis: 0;
  padding: 24px 20px 22px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
}

/* Feature List */

section.protech-feature ul.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 50px 100px 0 100px;
}

section.protech-feature ul.feature-list li {
  background: #fff;
  padding: 20px 44px 40px 44px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

section.protech-feature ul.feature-list div {
  display: grid;
  grid-template-rows: 120px 50px 1fr;
  justify-content: center;
}

section.protech-feature .graphics img {
  height: 85px;
}

section.protech-feature ul.feature-list li span {
  font-size: 18px;
  line-height: 26px;
}

/* Legal block */

/* Usage scenarios */
section.usage-scenarios ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 22px;
}

section.usage-scenarios p {
  text-align: center;
  margin: 25px 0;
}

section.usage-scenarios ul li {
  background: var(--blue);
  text-align: center;
  padding: 30px 12px 30px 12px;
  border-radius: 8px;
}

section.usage-scenarios ul li img {
  width: 120px;
}

section.usage-scenarios ul li h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 26px;
}

/* Implementation */
section.implementation {
  background: var(--blue);
}

section.implementation .business-img {
  width: 100%;
  overflow: hidden;
}

section.implementation ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

section.implementation h2 {
  margin: 30px;
  color: #fff !important;
}

section.implementation h2 span {
  color: #fff !important;
}

section.implementation h4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  line-height: 26px;
}

section.implementation h5 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 32px;
  margin: 30px 0;
}

section.implementation p {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  align-self: flex-start;
}

section.implementation ul li {
  text-align: center;
  background: #fff;
  padding: 25px 22px 22px 22px;
  border-radius: 12px;
}

section.implementation ul li .business-img img {
  transform: scale(1);
  transition: all 0.2s;
}

section.implementation ul li:hover .business-img img {
  transition: all 0.2s;
  transform: scale(1.1);
}

section.implementation ul li .logo img {
  width: 150px;
}

section.implementation .list-wrapper {
  display: grid;
  grid-template-rows: 226px 50px 80px 110px 125px 59px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

section.implementation .list-wrapper .link-btn {
  display: flex;
  justify-content: center;
  align-self: end;
}

a.link-btn {
  background: var(--blue);
  font-weight: bold;
  color: #fff;
  padding: 17px 14px 16px 14px;
  border-radius: 44px;
  font-size: 17px;
  line-height: 17px;
  max-width: 220px;
  width: 100%;
  position: relative;
  padding-right: 25px;
  border-bottom: solid 4px #2d4f7c;
  text-shadow: 0px 2px 0px #195f93;
  transition: 0.1s ease-in-out;
}

a.link-btn:hover {
  border-bottom: solid 2px #2d4f7c;
  transform: translateY(3px);
}

a.link-btn::after {
  position: absolute;
  content: "";
  background: url(../../img/vectors/icons/icon-arrow.svg) no-repeat;
  width: 24px;
  height: 20px;
  right: 25px;
  top: 55%;
  transform: translate(0, -50%);
  background-size: cover;
}

a.link-btn:hover:after {
  right: 23px;
}

.btn-block {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.btn-white {
  background: #fff;
  font-weight: bold;
  color: var(--black);
  padding: 17px 25px 16px 25px;
  border-radius: 44px;
  font-size: 17px;
  line-height: 17px;
  max-width: 300px;
  position: relative;
  padding-right: 25px;
  border-bottom: solid 4px #2d4f7c;
  display: block;
  text-align: center;
  margin: 30px 0;
  width: 100%;
  transition: 0.1s ease-in-out;
}

a.btn-white:hover {
  border-bottom: solid 4px #2d4f7c;
  transform: translateY(3px);
}

a.btn-white:hover:after {
  right: 40px;
}

a.btn-white:after {
  position: absolute;
  content: "";
  background: url(../../img/vectors/icons/icon-arrow-right-black.svg) no-repeat;
  width: 24px;
  height: 20px;
  background-size: 100%;
  right: 45px;
  transition: 0.3s ease-in-out;
}


 /* Language Selector Styles */
        .language-selector {
            position: relative;
            display: inline-block;
        }

        .language-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            color: #333;
        }

        .language-button:hover {
            background: #e9ecef;
            border-color: #adb5bd;
        }

        .language-icon {
            width: 20px;
            height: 20px;
        }

        .language-text {
            font-weight: 500;
        }

        .dropdown-arrow {
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #666;
            transition: transform 0.3s ease;
        }

        .language-button.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .language-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .language-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #333;
        }

        .language-option:first-child {
            border-radius: 6px 6px 0 0;
        }

        .language-option:last-child {
            border-radius: 0 0 6px 6px;
        }

        .language-option:hover {
            background: #f8f9fa;
        }

        .language-option.active {
            background: #e7f3ff;
            color: var(--blue);
            font-weight: 500;
        }

        .language-option-text {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .language-name {
            font-size: 0.95rem;
        }

        .language-native {
            font-size: 0.85rem;
            color: #666;
        }

        .language-option.active .language-native {
            color: var(--blue);
        }

        .checkmark {
            margin-left: auto;
            color: var(--blue);
            font-weight: bold;
        }

        /* Demo Content */
        .content {
            max-width: 800px;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .content h1 {
            margin-bottom: 1rem;
            color: #333;
        }

        .content p {
            line-height: 1.6;
            color: #666;
        }


/* Hero */

 section.company-logo .company-logo-animation{
    background: url(https://ekyc.showcase-tv.com/wp-content/uploads/2025/12/company_logo_20251204-scaled.png) repeat-x;
    background-size: auto 310px;
    height: 310px;
    }
    .main-visual{
		/*max-width: 1920px;*/
		width: 100%;
    background: linear-gradient(90deg,
    #ffffff 0%,
    #f6f9fc 40%,
    #eaf1f9 70%,
    #e3ecf6 100%);
    overflow: hidden;
    }
	  .main-visual-wrap{
		position: relative;
		max-width: 1480px;
		width: 100%;
		margin: 0 auto;
	  }
    .main-visual-row{
      display: -webkit-box;
    }
	  .main-visual-text{
		  max-width: 599px;
		  width: 100%;
	  }
    .main-visual-text h1{
      color: #000;
      font-family: "Noto Sans JP";
      font-size: 50px;
      font-style: normal;
      font-weight: 700;
      line-height: 1.2;
    }
    .main-visual-text h1 span{
      color: var(--PIC, #E4345E);
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
      font-style: normal;
      font-size: 60px;
      line-height: normal;
    }
    .main-visual-text .title-box{
      display: inline-flex;
      padding: 10px 16px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border: 2px solid #000;
      background: #FFF;
      color: #000;
      font-family: "Noto Sans JP";
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
		margin-top: clamp(12px, 2vw, 44px);
    }
    .main-visual-text .title-box span{
      color: var(--PIC, #E4345E);
      font-family: "Noto Sans JP";
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
    }
    .main-visual-text .sub-title{
      color: #000;
      font-family: "Noto Sans JP";
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
		margin-top: 6px;
    }
    .main-visual-text h2{
      color: var(--PIC, #2B7BBF);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
      font-size: 50px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-align: unset !important;
    }
    .main-visual-text h2 span{
      display: inline;
      color: var(--PICred, #E3335E);
		font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
      font-size: 50px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }
	    .main-visual-circle{
		display: flex;
		gap: 12px;
		margin-left: 56px;
		margin-top: -11px;
    }
	  .main-visual-circle .circle-outside{
      position: relative;
      width: 312px;
      height: 312px;
		  border-radius: 360px;
      background-color: rgba(38, 113, 188, 0.10);
		overflow: hidden;
    }
    .main-visual-circle .circle-inner{
      position: absolute;
      top: 50%;
		left: 50%;
transform: translate(-50%, -50%);
		width: 260px;
      height: 260px;
		border-radius: 260px;
      aspect-ratio: 259.20/259.20;
      background-color: rgba(38, 113, 188, 0.21);
    }
    .circle1{
      position: absolute;
      width: 128px;
      height: 168px;
      background-image: url("https://ekyc.showcase-tv.com/wp-content/uploads/2025/12/illust-complete.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
		bottom: 0;
		left: 50%;
  transform: translateX(-50%);
    }
    .circle2{
      position: absolute;
      width: 257px;
      height: 147px;
      background-image: url("https://ekyc.showcase-tv.com/wp-content/uploads/2025/12/illust-reading.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
		bottom: 26px;
		left: 50%;
  transform: translateX(-50%);
    }
    .circle3{
      position: absolute;
      width: 132px;
      height: 161px;
      background-image: url("https://ekyc.showcase-tv.com/wp-content/uploads/2025/12/illust-development.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
		bottom: 0;
		left: 50%;
  transform: translateX(-50%);
    }
    .main-visual-circle .circle-inner p{
      color: #FFF;
      text-align: center;
      text-shadow: 0 0 6px rgba(0, 3, 65, 0.60);
      font-family: "Noto Sans JP";
      font-size: 26px;
      font-style: normal;
      font-weight: 700;
      line-height: 30px; /* 146.154% */
		margin-top: clamp(12px, 2vw, 31px);
    }
    .main-visual-character{
      position: absolute;
      right: 145px;
      bottom: 0;
    }
    .hukidashi{
      width: 525px;
      height: 84px;
      border-radius: 56px;
      background: #FFF;
      color: #000;
      font-family: "Noto Sans JP";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 28px;
      margin-left: 0;
		  padding: 16px 38px 12px;
    }
    .hukidashi span{
      color: var(--PIC, #E4345E);
      font-family: "Noto Sans JP";
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 28px; /* 175% */
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }
     .protech-wolf{
      position: absolute;
      top: -10px;
      left: 643px;
      width: 172px;
      height: 218px;
      background-image: url("https://ekyc.showcase-tv.com/wp-content/uploads/2025/12/illust-wolf.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
	}
    .main-visual-button{
      display: flex;      
      justify-content: center;
      align-items: center;
      gap: 20px;
		margin-top: 52px;
    }
	  .main-visual-button.sp{
		  display: none;
	  }
    .main-visual-button .big-btn{
      width: 260px;
      height: 44px;
      padding: 10px;
    }
    .main-visual-button .contact_btn{
      border-radius: 100px;
      background: linear-gradient(90deg, #E63761 0%, #F07796 100%);
      box-shadow: 0 4px 0 0 #AD1C1C;
    }
    .main-visual-button .contact_btn a{
      display: flex;
      align-items: center;   /* 縦中央 */
      justify-content: center; /* 横中央（不要なら消す） */
      height: 100%;
      text-align: center;
      color: #FFF;
      text-shadow: 0 2px 0 #AD1C1C;
      font-family: "Noto Sans JP";
      font-size: 26px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }
    .main-visual-button .dl_link_btn{
      border-radius: 100px;
      background: linear-gradient(90deg, #0C72BC 0%, #65ACDF 100%);
      box-shadow: 0 4px 0 0 #2D4F7C;
    }
    .main-visual-button .dl_link_btn a{
      display: flex;
      align-items: center;   /* 縦中央 */
      justify-content: center; /* 横中央（不要なら消す） */
      height: 100%;
      text-align: center;
      color: #FFF;
      text-shadow: 0 2px 0 #2D4F7C;
      font-family: "Noto Sans JP";
      font-size: 26px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }

/* ノートPC・小型デスクトップ */
@media (max-width: 1470px) {
    .main-visual-wrap{
		max-width: 1240px;
    }
	.main-visual-circle{
		display: flex;
		flex-wrap: wrap;
    }
	  .main-visual-circle .circle-outside{
		  width: 33.333%;
	  }
	  .main-visual-circle .circle-outside:nth-child(3){
	    flex-basis: 100%;
  max-width: 33.333%;
  margin-left:16.6667%;
	  }
	  .main-visual-circle .circle-outside{
		width: calc(312px * 0.85);
		height: calc(312px * 0.85);
		border-radius: calc(360px * 0.85);
    }
    .main-visual-circle .circle-inner{
		width: calc(260px * 0.85);
      height: calc(260px * 0.85);
		border-radius: calc(260px * 0.85);
    }
    .circle1{
      width: calc(128px * 0.85);
      height: calc(168px * 0.85);
    }
    .circle2{
      width: calc(257px * 0.85);
      height: calc(147px * 0.85);
    }
    .circle3{
      width: calc(132px * 0.85);
      height: calc(161px * 0.85);
    }
    .main-visual-circle .circle-inner p{
		font-size: calc(26px * 0.85);
		line-height: calc(38px * 0.85);
    }
	  .main-visual-character{
		  display: none;
	  }
	  }

/* タブレット横 */
@media (max-width: 1024px) {
	.main-visual-wrap{
		max-width: 980px;
		margin: 0 83px 0 30px;
	}
	.main-visual-row{
    	display: block;
	}
	.main-visual-text{
		max-width: 980px;
	}
	.main-visual-circle{
		margin-left: 0;
	}
	.main-visual-circle .circle-outside:nth-child(3){
		flex-basis: auto;
		max-width: none;
		margin-left: 0;
	}
	.main-visual-button .big-btn{
		width: clamp(280px, 90vw, 960px);
		height: clamp(48px, 6vw, 64px);
		font-size: clamp(14px, 1.6vw, 18px);
		border-radius: clamp(24px, 3vw, 32px);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
	}
	.main-visual-circle,.main-visual-button .dl_link_btn{
		margin-top: clamp(12px, 4vw, 32px);
	}
	.main-visual-button.pc{
		display: none;
	}
	.main-visual-button.sp{
		display: block;
	}
	  }

/* タブレット縦 */
@media (max-width: 918px) {
	.main-visual-circle{
		margin-left: clamp(12px, 2vw, 32px);
	}
	.main-visual-circle .circle-outside{
		width: calc(312px * 0.8);
        height: calc(312px * 0.8);
        border-radius: calc(360px * 0.8);
		}
    .main-visual-circle .circle-inner{
		width: calc(260px * 0.8);
      height: calc(260px * 0.8);
		border-radius: calc(260px * 0.8);
    }
    .circle1{
      width: calc(128px * 0.8);
      height: calc(168px * 0.8);
    }
    .circle2{
      width: calc(257px * 0.8);
      height: calc(147px * 0.8);
    }
    .circle3{
      width: calc(132px * 0.8);
      height: calc(161px * 0.8);
    }
    .main-visual-circle .circle-inner p{
		font-size: calc(26px * 0.8);
		line-height: calc(38px * 0.8);
    }
	  }
	  
/* タブレット縦 */
@media (max-width: 768px) {
	.main-visual-wrap{
		margin-left: clamp(12px, 2vw, 32px);
	}
	.main-visual-circle{
		margin-left: 0;
	}
	.main-visual-circle .circle-outside {
        width: calc(312px * 0.75);
        height: calc(312px * 0.75);
        border-radius: calc(360px * 0.75);
    }
    .main-visual-circle .circle-inner{
		width: calc(260px * 0.75);
      height: calc(260px * 0.75);
		border-radius: calc(260px * 0.75);
    }
    .circle1{
      width: calc(128px * 0.75);
      height: calc(168px * 0.75);
    }
    .circle2{
      width: calc(257px * 0.75);
      height: calc(147px * 0.75);
    }
    .circle3{
      width: calc(132px * 0.75);
      height: calc(161px * 0.75);
    }
    .main-visual-circle .circle-inner p{
		font-size: calc(26px * 0.75);
		line-height: calc(38px * 0.75);
    }
	  }
	  @media (max-width: 750px) {
	.main-visual-wrap{
		max-width: 750px;
    }
	.main-visual-circle{
		display: flex;
		flex-wrap: wrap;
    }
	  .main-visual-circle .circle-outside:nth-child(3){
  margin-left:22.2%;
	  }
	  }
	  @media (max-width: 576px) {
    .main-visual-text h1,.main-visual-text h2,.main-visual-text h2 span{
      font-size: calc(50px * 0.8) !important;
    }
    .main-visual-text h1 span{
      font-size: calc(62px * 0.8) !important;
    }
    .main-visual-text .title-box,.main-visual-text .title-box span{
      font-size: calc(18px * 0.7) !important;
    }
    .main-visual-text .sub-title{
      font-size: calc(30px * 0.8) !important;
    }
	.main-visual-circle .circle-outside {
        width: calc(312px * 0.6);
        height: calc(312px * 0.6);
        border-radius: calc(360px * 0.6);
    }
    .main-visual-circle .circle-inner{
		width: calc(260px * 0.6);
      height: calc(260px * 0.6);
		border-radius: calc(260px * 0.6);
    }
    .circle1{
      width: calc(128px * 0.6);
      height: calc(168px * 0.6);
    }
    .circle2{
      width: calc(257px * 0.6);
      height: calc(147px * 0.6);
    }
    .circle3{
      width: calc(132px * 0.6);
      height: calc(161px * 0.6);
    }
    .main-visual-circle .circle-inner p{
		font-size: calc(26px * 0.6);
		line-height: calc(38px * 0.6);
    }
	  }
	  @media (max-width: 549px) {
    .main-visual-text h1{
      font-size: calc(50px * 0.56) !important;
    }
    .main-visual-text h1 span{
      font-size: calc(62px * 0.65) !important;
    }

    section.two-authentication h5 {
      line-height: 30px !important;
      font-size: 20px !important;
    }
    section.legal-block .block-one {
    min-height: auto !important;
}
	  }
@media (max-width: 399px) {
    .main-visual-text h1{
      font-size: calc(50px * 0.6) !important;
    }
    .main-visual-text h1 span{
      font-size: calc(62px * 0.6) !important;
    }
	  }

/* Main Visual */

/* Footer */
footer {
  background: #4f5669;
  padding: 20px 0 40px 0;
}

footer ul li,
footer .copyright {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}

footer .showcase-logo img {
  width: 200px;
}

footer ul {
  margin: 30px 0;
  display: flex;
  gap: 20px;
}

footer ul li a {
  color: #fff;
  position: relative;
}

footer ul li a:after {
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  right: -10px;
  height: 16px;
  top: 3px;
}

footer ul li:last-child a:after {
  border: none;
}
