@charset "utf-8";
/* CSS Document */
/* -----------------------------------------
 Reset
------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
/*vertical-align: baseline;*/
background: transparent;
scroll-behavior: smooth;

}
body {
line-height: 1.5;
}

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

ul {
list-style: none;
}

em {
font-style: normal;
}

a {
margin: 0;
padding: 0;
vertical-align: baseline;
color: inherit;
background: transparent;
-webkit-tap-highlight-color: rgba(0,0,0,.1);
text-decoration: none;
}

a:hover {
transition: 0.5s;
}

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

/* -----------------------------------------
 基本
------------------------------------------- */
*{
box-sizing: border-box;
}

html {
font-size: 62.5%;
font-size: calc(1em*.625);
}

body {
line-height: 1.5;
color: #000314;
font-family: 'Poppins', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif !important;
background-color: #F2F2F2;
font-weight: 400;
}

img {
vertical-align: top;
max-width: 100%;
}

p {
line-height: 1.7;
font-size: 1.8rem;
}

/* -----------------------------------------
 余白
------------------------------------------- */
.inner {
width: 110rem;
margin: auto;
padding: 5rem 1rem;
align-items: center;
}
.mt0 {
margin-top: 0 !important;
}
.mt10 {
margin-top: 1rem !important;
}
.mt15 {
margin-top: 1.5rem !important;
}
.mt20 {
margin-top: 2rem !important;
}
.mt25 {
margin-top: 2.5rem !important;
}
.mt30 {
margin-top: 3rem !important;
}
.mt40 {
margin-top: 4rem !important;
}
.mt50 {
margin-top: 5rem !important;
}
.mt60 {
margin-top: 6rem !important;
}
.mt70 {
margin-top: 7rem !important;
}
.mt80 {
margin-top: 8rem !important;
}
.mt90 {
margin-top: 9rem !important;
}
.mt110 {
margin-top: 11rem !important;
}
.mb0 {
margin-bottom: 0 !important;
}
.mb10 {
margin-bottom: 1rem !important;
}
.mb15 {
margin-bottom: 1.5rem !important;
}
.mb20 {
margin-bottom: 2rem !important;
}
.mb25 {
margin-bottom: 2.5rem !important;
}
.mb30 {
margin-bottom: 3rem !important;
}
.mb40 {
margin-bottom: 4rem !important;
}
.mb50 {
margin-bottom: 5rem !important;
}
.mb60 {
margin-bottom: 6rem !important;
}
.mb70 {
margin-bottom: 7rem !important;
}
.mb80 {
margin-bottom: 8rem !important;
}
.mb90 {
margin-bottom: 9rem !important;
}
/* -----------------------------------------
 見出し・文字装飾
------------------------------------------- */
h1 {
font-size: 8.0rem;
font-weight: bold;
line-height: 1.3;
padding: 0;
color:#ffffff;
}

h2 {
font-size: 3.2rem;
font-weight: bold;
margin-bottom: 2rem ;
padding: 0;
color:#2d0093;
}

h3 {
font-size: 2.4rem;
margin-bottom: 2rem ;
font-weight: bold;
color:#2d0093;
}

h4 {
font-size: 2.2rem;
font-weight: bold;
margin-bottom: 4rem;
}

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

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

.txt-left {
text-align: left;
}

.txt-white {
color: #ffffff;
}

.txt-gray {
color: #333;
}

.txt-red {
color: #f85853;
}

.txt-blue {
color: #4291a7;
font-weight: bold;
}

.txt-jus {
text-align: justify;
}

.txt-shadow{
text-shadow:0 0 10px rgba(0, 0, 0), 
4px 4px 18px rgba(0, 0, 0), 
8px 4px 10px rgba(0, 0, 0);
}

.fs-14{
font-size: 1.4rem;
}

.fs-24{
font-size: 2.4rem;
}

.notes {
margin: 4rem 0 3rem 0;
font-size: 1.2rem;
line-height: 1.4;
text-align: right;
font-weight: 300;
}

.notes a {
color: #ffffff;
}

.w-normal {
font-weight: normal;
}

.w-medium {
font-weight: 500;
}

/* -----------------------------------------
 utility
------------------------------------------- */
.flex {
display: flex;
}
.spOnly {
display: none;
}
.Only480 {
display: none;
}
.display__default {
display: block;
}
@media screen and (max-width: 768px) {
.responsive-inner {
padding: 0 2rem;
}}

/* -----------------------------------------
header
-----------------------------------------*/
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background-color:#2d0093;
}

.header__inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 4rem;
}

/* logo */
.header__logo img {
width: 30rem;
display: block;
}

.header__logo a:hover {
transition: 0.5s;
opacity: 0.7;
}

/* cta */
.header__ctaWrap {
display: flex;
gap: 1rem;
}

.header__btn {
height: 5rem;
padding: 0 2rem 0 1rem;
border-radius: 0.6rem;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
background: #4ebaaa;
color: #ffffff;
font-weight: 700;
font-size: 1.4rem;
transition: 0.3s;
}

.header__btn:hover {
opacity: 0.7;
}

.header__btn::before {
content: "";
width: 4rem;
height: 4rem;
background:
url("../img/icon01.png")
no-repeat center / contain;
}

/* 白ボタン */
.header__btn--white {
background: #fff;
color: #2d0093;
}

.header__btn--white::before {
background:
url("../img/icon02.png")
no-repeat center / contain;
}

/* ハンバーガー */
.hamburger {
display: none;
width: 4rem;
height: 4rem;
position: relative;
z-index: 200;
background: none;
border: none;
cursor: pointer;
}

.hamburger span {
position: absolute;
left: 50%;
width: 2.4rem;
height: 2px;
background: #fff;
transform: translateX(-50%);
transition: 0.3s;
}

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

.hamburger span:nth-child(2) {
top: 1.9rem;
}

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

/* active */
.hamburger.active span:nth-child(1) {
top: 1.9rem;
transform: translateX(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
top: 1.9rem;
transform: translateX(-50%) rotate(-45deg);
}

/* -----------------------------------------
SP
----------------------------------------- */
@media screen and (max-width: 950px) {
.header__logo img {
width: 25rem;
}
.hamburger {
display: block;
}
.header__drawer {
position: fixed;
top: 0;
right: -100%;
width: 32rem;
height: 100vh;
padding: 10rem 2rem;
background: url(../img/band.jpg) no-repeat center center / cover;
transition: 0.4s;
}
.header__drawer.active {
right: 0;
}
.header__ctaWrap {
flex-direction: column;
}
.header__btn {
width: 100%;
}
}

/* -----------------------------------------
 section fv
------------------------------------------- */
.top-message {
margin: 0 auto;
padding: 10rem 2rem 2rem;
width: 100%;
background-color: #ffffff;
}

.text {
margin: 0 auto 6rem;
padding: 2rem 2rem 1rem;
color: transparent;
font-size: 10rem;
font-weight: 900;
font-style: italic;
line-height: 1.2;
text-align: center;
background-image: url('../img/text_back.jpg');"
background-clip: text;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
-webkit-background-clip: text;
max-width: 128rem;
}

.fv {
margin: 0 auto;
padding: 2rem;
width: 100%;
background-repeat: no-repeat;
background-position: 50% 50%;
background: linear-gradient(to top, transparent 0%, transparent 0%, #000 100%), url(../img/back_a.jpg);
background-color: #000314;
background-size: cover; 
opacity: 0.9;
}

.fv-box {
padding: 4rem 2rem;
position: relative;
margin: 0 auto;
max-width: 128rem;
text-align: center;
}

.fv-box .copy {
margin: 2rem auto;
padding: 0;
color: #ffffff;
font-size: 4rem;
font-weight: 600;
line-height: 1.3;
text-align: center;
}

.fv-box .description {
margin: 5rem auto;
padding: 0;
color: #ffffff;
font-size: 2.4rem;
font-weight: 600;
line-height: 1.3;
text-align: center;
}

.stats-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
row-gap: 30px;
}

.stats-item {
flex: 0 0 calc((100% - 60px) / 3);
background-color: rgba(0, 0, 0, 0.7);
padding: 40px 20px;
border-radius: 8px;
text-align: center;
box-sizing: border-box;
}

.stats-number {
font-size: 4rem;
font-weight: bold;
line-height: 1.2;
margin-bottom: 15px;
color: #4ebaaa;
}

.stats-number span {
font-size: 2.5rem;
font-weight: normal;
margin-left: 2px;
color: #ffffff;
}

.stats-label {
font-size: 2.0rem;
line-height: 1.6;
color: #ffffff;}

@media (max-width: 768px) {
.stats-item {
flex: 0 0 100%;
}
}


/* -----------------------------------------
 section fv-anime
------------------------------------------- */
:root {
  --panel:     #0D1C30;
  --cyan:#00E5FF;
  --red: #FF2D2D;
  --gray:#8899AA;
  --gray2:     #4A5F72;
  --mono:'JetBrains Mono', monospace;
}

.demo-block {
  background: var(--panel);
  border: 1px solid rgba(0,229,255,0.15);
  padding: 24px 28px;
  max-width: 680px;
  margin-bottom: 40px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.demo-block::before {
  content: 'LIVE DEMO — 暗号化プロセスの阻止';
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  display: block;
  margin-bottom: 16px;
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.demo-bar .db-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.demo-bar .db-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray);
  width: 80px;
  flex-shrink: 0;
}
.demo-bar .db-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.demo-bar .db-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  border-radius: 2px;
}
.db-dot.red { background: var(--red); box-shadow: 0 0 6px var(--red); }
.db-dot.cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.db-dot.gray { background: var(--gray2); }
.db-fill.red { background: var(--red); }
.db-fill.cyan { background: var(--cyan); }
.db-fill.blocked {
  background: linear-gradient(90deg, var(--red) 0%, rgba(255,45,45,0.2) 100%);
}

.demo-status {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  padding: 10px 14px;
  background: rgba(0,229,255,0.06);
  border-left: 2px solid var(--cyan);
  color: var(--cyan);
}

/* -----------------------------------------
section bgcolor & follow
----------------------------------------- */
.bg-01 {
width: 100%;
background-color: transparent;
}

.bg-02 {
width: 100%;
background-color: #000000;
background: linear-gradient(to top, transparent 0%, transparent 0%, #000 100%), url(../img/back_a_2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.bg-03 {
width: 100%;
background-color: #000000;
background: linear-gradient(to top, transparent 0%, transparent 0%, #000 100%), url(../img/back_a.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.bg-04 {
width: 100%;
background-color: #000000;
background: linear-gradient(to top, transparent 0%, transparent 0%, #000 100%), url(../img/back_b.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.white {
color: #ffffff;
}

/* -----------------------------------------
inner
----------------------------------------- */
.inner {
padding: 6rem 2rem;
position: relative;
margin: 0 auto;
max-width: 128rem;
}

.h-text {
margin: 0 auto 2rem;
padding: 2rem 2rem 1rem;
color: transparent;
font-size: 6rem;
font-weight: 900;
line-height: 1.2;
text-align: center;
background-image: url('../img/text_back.jpg');"
background-clip: text;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
-webkit-background-clip: text;
max-width: 128rem;
}

.three-frame {
display: flex;
gap: 1rem;
margin-bottom: 4rem !important;
}

.three-frame > .box {
flex: 1 1 0;
min-width: 0;
}

@media (max-width: 800px) {
  .three-frame {
    flex-direction: column;
  }
}

.box {
padding: 6rem 2em;
text-align: left;
border: 1px solid #000314;
color:#ffffff;
}

.box-title {
margin-bottom:4rem;
font-size: 3rem;
font-weight: 600;
}

.box-txt {
font-size: 1.5rem;
}

.three-frame > .image01 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_c.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
}

.three-frame > .image02 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_d.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.three-frame > .image03 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_e.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%);
}

.three-frame > .image11 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_c_2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
}

.three-frame > .image12 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_d_2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

.three-frame > .image13 {
background: linear-gradient(to top, transparent 50%, transparent 50%, #000 100%), url(../img/back_e_2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%);
}

.h-text2 {
margin: 0 auto 2rem;
padding: 2rem 2rem 1rem;
color: transparent;
font-size: 6rem;
font-weight: 900;
line-height: 1.2;
text-align: center;
max-width: 128rem;
color:#ffffff;
}

.h-text2 span {
font-size: 5rem;
}

.two-frame {
display: flex;
gap: 1rem;
margin-bottom: 4rem !important;
align-items: center;
}

.two-frame > .box2 {
flex: 1 1 0;
min-width: 0;
}

@media (max-width: 800px) {
  .two-frame {
    flex-direction: column;
  }
}

.box2 {
padding: 6rem 2em;
text-align: left;
color:#ffffff;
}

.box2-title {
margin-bottom:4rem;
font-size: 3rem;
font-weight: 600;
}

.box2-txt {
font-size: 1.5rem;
}

.box2-img {
width:100%;
}

.h-text3 {
margin: 6rem auto 2rem;
padding: 2rem 2rem 1rem;
color: transparent;
font-size: 6rem;
font-weight: 900;
line-height: 1.2;
text-align: center;
max-width: 128rem;
color:#000314;
}

/* 全体のコンテナ設定 */
.comparison-container {
  display: flex;
  align-items: center; /* 左右のボックスと中央の「＋」を上下中央揃え */
  justify-content: space-between;
  width: 100%;
max-width: 128rem;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #f5f5f5; /* 背景の薄いグレー（不要なら削除） */
  padding: 2rem;
}

/* 左右の各ボックス（等幅で並べる） */
.comparison-box {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid #000314;
  background-color: #ffffff;
  box-sizing: border-box;
}

/* ヘッダー部分（EDR / KeepEye...） */
.box-header {
  padding: 1.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  border-bottom: 1px solid #000314;
  color: #1a1a1a;
}

/* リスト全体のスタイル除去 */
.box-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各行のスタイル（チェックマークとテキスト） */
.box-list li {
  padding: 2rem;
font-size: 1.5rem;
  color: #1a1a1a;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
}

/* 最後の行だけ下線を消す */
.box-list li:last-child {
  border-bottom: none;
}

/* チェックマークの擬似要素（黒い丸に白のチェック） */
.box-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #131428; /* 画像通りの濃紺・黒系 */
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0; /* 文字が長くなっても丸が潰れないように固定 */
}

/* 中央の「＋」記号のスタイル */
.plus-sign {
  font-size: 2.5rem;
  color: #666666;
  padding: 0 1.5rem;
  text-align: center;
  font-weight: 300;
}

/* --- レスポンシブ対応（スマホ画面） --- */
@media (max-width: 800px) {
  .comparison-container {
    flex-direction: column;
    align-items: stretch; /* スマホ時は横いっぱいに広げる */
    padding: 1rem;
  }
  
  .comparison-box {
    width: 100%;
  }

  /* スマホ時は「＋」の上下の余白を調整 */
  .plus-sign {
    padding: 1rem 0;
  }
}

.four-frame {
display: flex;
gap: 1rem;
margin-bottom: 4rem !important;
}

.four-frame > .box3 {
flex: 1 1 0;
min-width: 0;
}

@media (max-width: 800px) {
  .four-frame {
    flex-direction: column;
  }
}

.box3 {
padding: 6rem 2em;
text-align: left;
border: 1px solid #ffffff;
color:#ffffff;
}

.box3-img {
text-align: center;
margin-bottom: 2rem;
}

.box3-img img {
  width: 50%;
  height: auto; 
}

@media (max-width: 800px) {
  .box3 {
    padding: 4rem 15%; 
  }
  
  .box3-img img {
    width: 60%;
  }
}

.box3-title {
margin-bottom:2rem;
font-size: 2rem;
font-weight: 600;
text-align:center;
}

.box3-txt {
font-size: 1.5rem;
}

.last {
width: 100%;
background-color: #2d0094;
}

.word {
width: 100%;
max-width: 128rem;
margin: 0 auto;
color: #ffffff;
padding: 4rem ;
font-size: 3.0rem;
font-weight: bold;
line-height: 1.8;
text-align: center;
}

.h-text4 {
margin: 0 auto 2rem;
padding: 2rem 2rem 1rem;
color: transparent;
font-size: 5.4rem;
font-weight: 900;
line-height: 1.2;
text-align: center;
max-width: 128rem;
color:#ffffff;
}

















/* -----------------------------------------
 footer
------------------------------------------- */

footer{
padding: 2rem 1rem 1rem 1rem;
text-align: center;
background-color: #2d0093;
}
.ft-link{
margin-bottom: 2rem;
padding: 0;
font-size: 1.5em;
}
.ft-link li{
display: inline;
line-height: 2;
}
.ft-link li+li{
margin-left: 2em;
}
.ft-link li a{
white-space: nowrap;
color: #ffffff;
}
.ft-logo{
margin-top: 1.5rem;
margin-bottom: 10px;
}
.ft-logo a{
display: inline-block;
}
.ft-logo img{
width: 13rem;
height: auto;
}
.copyright {
margin-top: 1rem;
font-size: 1.4rem;
color: #ffffff;
}


/* -----------------------------------------
 cookie
------------------------------------------- */
.lftracking-popup {
z-index: 50;
}



@media screen and (max-width: 1099px) {
/* -----------------------------------------
 余白
------------------------------------------- */
.inner {
width: 100%;
padding: 7.5rem 2rem;
}
}


/* -----------------------------------------
 form
------------------------------------------- */
td{box-sizing: border-box;}
table.items td.label {
display: block;
float: none;
width: 100%;
height: auto;
padding: 0.7em;
border-top: 1px solid #ccc;
border-bottom: none;
}
span.required {
float: right;
}
p.required_msg {
font-size:90%;
}
table.items td.value {
display: block;
float: none;
width: 100%;
padding: 1em;
font-size: 1.2rem;
border-bottom: none;
}
table.items td.comment {
display: block;
float: none;
width: 100%;
padding: 0 1em 1em;
font-size: 1.2rem;
border-bottom: none;
}
table.items tr:first-child td {
border-top: none;
}
table.items tr:first-child td.label {
border-top: 1px solid #ccc;
}
.form_box input[type="text"]{
font-size: 16px;
width: 100% !important;
box-sizing: border-box;
}
.form_box span.label_name + input[type="text"] {
width: 35% !important;
}
.form_box textarea {
width: 100%;
height: 10rem;
box-sizing: border-box;
}
.form_box div.button_area {
width: 100%;
margin-top: 4rem;
}
.form_box div.message {
margin: 0 0 3rem;
font-size: 1.4rem;
}
.form_box input[type=button] {
min-width: 14rem;
margin: 0 .5rem;
letter-spacing: .1rem;
}
.form_box span.label_name {
padding-right: .8em;
font-size: 1.5em;
}
.form_box span.label_name {
padding-right: .5rem;
color: inherit;
font-size: 1.5rem;
font-weight:normal;
}
.form_box .privacy_policy {
margin: 1rem 0;
text-align: left;
}
.privacy-text-master{ line-height: 1.5 !important;
}
.form_box div.container {
width: auto;
border: none;
font-size: 1.5rem;
background: #ffffff;
}


.outer-faq-box {
margin: 0;
}
.outer-faq-box dl {
margin-bottom: 1rem;
}
.outer-faq-box dl dt {
  position: relative;
  padding: .9em 4rem .9em 6rem;
  border-radius: .4rem;
  background-color: #f2f2f2;
}
.outer-faq-box dl dt:before {
  content: "Q";
  position: absolute;
  top: .8em;
  left: .8em;
  width: 3rem;
  height: 3rem;
  border-radius: .4rem;
  line-height: 3rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  background-color: #0d1698;
}

.outer-faq-box dl dt.selected::after {
  top: .5rem;
  transform: rotate(225deg);
}
.outer-faq-box dl dd {
  position: relative;
  margin-bottom: 1rem;
  padding: .9em 0 .5em 6rem;
}
.outer-faq-box dl dd:before {
  content: "A";
  position: absolute;
  top: .8em;
  left: .8em;
  width: 3rem;
  height: 3rem;
  border: .1rem solid #0d1698;
  border-radius: .3rem;
  line-height: 3rem;
  color: #0d1698;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  background-color: #fff;
}