/* =========================
   Daiko LP - style.css
   ========================= */

/* ---- Base / Reset ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body{
  animation: loading 2s;
  margin: 0;
	font-family:  "Hiragino Sans" , "Hiragino Kaku Gothic ProN" , "Noto Sans JP" , "sans-serif" , "Noto Color Emoji SVG";
  line-height: 1.7;
  color: #111;
  background: #fff;
}

@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.lptopimage {
  position: relative;
  }

.lptopimage p {
  position: absolute;
  top: 87%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: calc(3.8rem + ((0.7vw - 0.8rem) * 4.6));
	letter-spacing: 1px;
     text-shadow:2px 2px 0 #333333, -2px -2px 0 #333333,
              -2px 2px 0 #333333, 2px -2px 0 #333333,
              0px 2px 0 #333333,  0 -2px 0 #333333,
              -2px 0 0 #333333, 2px 0 0 #333333;
  color: #ffffff;
  line-height: 1.4;
  font-weight: bold;
  width: 100%;
}

.lptopimage img {
  width: 100%;
  }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .7; }
p { margin: 0 0 12px; }

/* ---- Layout ---- */
.container{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0;
}

section{
  padding: 34px 0;
  border-top: 1px solid #f0f0f0;
}

h1 { line-height: 1.25; }
h2, h3 { line-height: 1.25; margin: 0 0 12px; }
h2 { letter-spacing: 2px ;}
h3 { font-size: 16px; margin-top: 18px; }

/* ---- Sticky Header (CTA) ---- */
header.sticky{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}

@media screen and (min-width: 769px) {
.points-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2段 */
  gap: 32px; /* 段同士の余白 */
}
}

.header-container{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
}
	
.logo {
	width: auto;
}

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #003399;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease;
  user-select: none;
  white-space: nowrap;
  padding-left: 1em;
  padding-right: 1em;
  height: 3em;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: #003399;
  color: #fff;
  border-color: #003399;
  font-size: calc(2rem + ((0.87vw - 0.7rem) * 2));
}

@media (min-width: 451px) {
.btn-primary-top{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #003399;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease;
  user-select: none;
  white-space: nowrap;
  padding-left: 1em;
  padding-right: 1em;
  height: 3em;
  background: #003399;
  color: #fff;
  border-color: #003399;
}
}

@media (max-width: 450px) {
  .btn-primary-top {
    display:none;
  }
}

/* ---- Hero ---- */
.hero{
  padding: 44px 0 24px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 75%);
}

@media screen and (min-width: 769px) {
h4{
  font-size: calc(3.2rem + ((1vw - 0.73rem) * 4));
  margin-bottom: 3px;
}
	
.sub {
	line-height: 1.5;
	text-align: center;
	padding: 30px 5px;
	letter-spacing: 1.3px; 
	list-style: none;
	font-size: calc(2rem + ((0.8vw - 0.74rem) * 2.6));
	font-weight: 600;
	color: #003399;
    }
}

@media screen and (max-width: 768px) {
h4{
  font-size: calc(3.2rem + ((1vw - 0.63rem) * 4.2));
  margin-bottom: 3px;
}
	
.sub {
	line-height: 1.4;
	text-align: center;
	padding: 3px 5px;
	margin: 40px 5px 15px 5px;
	letter-spacing: 1.3px; 
	list-style: none;
	font-size: calc(2rem + ((0.87vw - 0.7rem) * 2));
	font-weight: 600;
	color: #003399;
    }
	
  h2{
	  clear: both;
      text-align: center;
      margin: 15px auto ;
      font-size: calc(2rem + ((0.83vw - 0.6rem) * 2));
      letter-spacing: 1px;
      color: #ff6600;
      border-bottom: solid 5px #ffcc00;
      width: fit-content;
	}
	
}

/* ---- Lists ---- */
ul{ padding-left: 20px; margin: 10px 0 0; }
li{ margin: 6px 0; }

/* ---- CTA Box ---- */

@media screen and (min-width: 769px) {
.cta-box{
	text-align: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
}

.cta-box p{ margin-bottom: 10px; }

.cta-box2{
	text-align: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
}

.cta-box2 p{ margin-bottom: 10px; }
}

@media screen and (max-width: 768px) {
.cta-box{
	text-align: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
}

.cta-box p{ margin-bottom: 10px; }

.cta-box2{
	text-align: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
}

.cta-box2 p{ margin-bottom: 10px; }
}

/* ---- Chips (jump) ---- */
.jump{
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  color: #003dad;
}

.chip{
  display: inline-flex;
  align-items: center;
  margin: 15px 0;
  padding: 4px 10px;
  border: 3px solid #ddd;
  border-radius: 999px;
  background: #fafafa;
	font-weight: 500;
  font-size: calc(1.7rem + ((0.7vw - 0.6rem) * 1.8));
}

.chip:hover{ opacity:0.7; }

.jump2{
  display: flex;
  text-align: right;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: right;
}

.chip2{
	display: inline;
	margin-top: 20px;
	margin-bottom: 30px;
	background-image: url(../image/sento.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 14px;
	letter-spacing:1px;
	padding: 0px 10px 0px 20px;
}

.chip2:hover{
	opacity:0.5;
	text-decoration: underline;
}

#sento
	{
  scroll-margin-top: 150px;
}


@media screen and (max-width: 768px) {
	
.jump{
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  color: #003dad;
}

.chip{
  display: inline-flex;
  align-items: center;
  margin: 3px 0;
  padding: 5px 10px;
  border: 3px solid #ddd;
  border-radius: 999px;
  background: #fafafa;
	font-weight: 500;
  font-size: calc(1.7rem + ((0.7vw - 0.6rem) * 1.4));
}

.chip:hover{ opacity:0.7; }
}

/* ---- Grid / Form ---- */
.grid{
  display: grid;
  gap: 12px;
}
.grid3{
  display: grid;
  gap: 12px;
	padding: 20px;
}

.grid_setsumei{
	text-align: center;
	padding: 0 20px;
	font-size: calc(1.7rem + ((0.8vw - 0.8rem) * 1.5));
	font-weight: 500;
}

@media screen and (max-width: 768px){
  .h1{ 
	font-size: calc(3.5rem + ((0.77vw - 0.75rem) * 2.5)); 
	border-bottom: solid 13px #ff9900;
	clear: both;
	text-align: center;
	width: auto;
	margin: 10px 0 30px;
	letter-spacing: 1px;
	color: #003dad;
	padding: auto;
	display: inline-block;
	}
	
  h2{ 
	  clear: both;
      text-align: center;
      margin: 15px auto ;
      border-bottom: solid 7px #ffcc00;
      font-size: calc(3rem + ((0.8vw - 0.74rem) * 2.6));
      letter-spacing: 1px;
      color: #ff6600;
      width: fit-content;
	 }
	
  .grid{ grid-template-columns: 1fr 1fr; padding: 5px;}

.grid_setsumei{
	text-align: center;
	padding: 0 5px;
	font-size: calc(1.6rem + ((0.5vw - 0.6rem) * 1.5));
	font-weight: 500;
}
.grid{
  display: grid;
  gap: 12px;
}
.grid3{
  display: grid;
  gap: 12px;
	padding: 5px;
}
}


@media screen and (min-width: 769px) {
  .h1{ 
	font-size: calc(3.5rem + ((0.77vw - 0.75rem) * 2.5)); 
	border-bottom: solid 13px #ff9900;
	clear: both;
	text-align: center;
	width: auto;
	margin: 10px 0 30px;
	letter-spacing: 1px;
	color: #003dad;
	padding: auto;
	display: inline-block;
	}
	
  h2{ 
	  clear: both;
      text-align: center;
      margin: 15px auto ;
      border-bottom: solid 7px #ffcc00;
      font-size: calc(3rem + ((0.8vw - 0.74rem) * 2.6));
      letter-spacing: 1px;
      color: #ff6600;
      width: fit-content;
	 }
	
  .grid{ grid-template-columns: 1fr 1fr; padding: 20px;}


/* ---- Tags line ---- */
.tags{
	font-size: calc(1.4rem + ((0.7vw - 0.6rem) * 1.8));
  font-weight: 800;
  margin-top: 10px;
	color: #003dad;
}
.tags2{
	font-size: calc(1.4rem + ((0.7vw - 0.6rem) * 1.8));
	color: #ff6600;
  font-weight: 600;
      border-bottom: solid 5px #ffcc00;
      width: fit-content;
}
div.haikei_none2 {
	text-align: left;
	margin: 0px auto 5px auto;
	padding: 2px 30px;
	}
	
div.haikei_none2 ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
	
	
div.haikei_none2 li{
	padding: 15px 5px;
}
	
div.haikei_none2 li img{
	width: 90%;
	padding-bottom: 25px;
}

.items_midashi1{
	letter-spacing: 1px;
	font-size: calc(2rem + ((0.77vw - 0.63rem) * 2.5));
	color: #003dad;
	font-weight: bold;
	line-height: 1.5;
	}

	
p.items_honbun1{
	letter-spacing: 1px;
	margin: 0px 10px 20px 0px;
	font-size: calc(1.4rem + ((0.8vw - 0.8rem) * 1.5));
	line-height: 1.5;
	font-weight: bold;
	}
	
.small{ font-size: calc(1.4rem + ((0.7vw - 0.6rem) * 1.8)); color: #666; weight:700 ; padding:3px 20px; }
.small2{ font-size: calc(1.4rem + ((0.7vw - 0.6rem) * 1.8)); color: #666; weight:700 ; }
.erabareru{ font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8)); color: #003dad; weight:700 ;}


.hero-box{
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.hero-box-none{
    display: inline-block; 
	text-align: center;
	letter-spacing: 1px;
	color: #003399;
	font-weight: bold;
	line-height: 1.4;
    border-bottom: solid 10px #ffcc00;
	margin-bottom: 50px;
}
	
.parent {
  text-align: center;
}

div.haikei_none2-0 {
	text-align: center;
	margin: 15px 40px;
	padding: 2px 15px;
}
	
div.haikei_none2-0 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  text-align: center;
}
	
div.haikei_none2-0 li {
	background-color: #efefef;
}

p.items_icon1-1 img {	
  width: 90%;
  margin: 8px auto 0 auto;
	padding: 10px ;
}

p.items_honbun1-1{
	letter-spacing: 1px;
	padding: 0 5px 5px 5px;
	font-size: calc(1.4rem + ((0.86vw - 0.75rem) * 1.5));
	line-height: 1.5;
	font-weight: bold;
	}	
	
div.items_kyocho1 {
    display: flex;
	text-align: center;
}

div.items_kyocho1 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px auto;
	padding: 0px 8px 15px 8px;
	letter-spacing: 1px;
	font-size: calc(2rem + ((0.77vw - 0.75rem) * 2.5));
	line-height: 1.8;
	font-weight: bold;
}	
	
div.items_kyocho2{
	display: flex;
	text-align: center;
}

div.items_kyocho2 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px auto 15px auto;
	padding: 15px 45px;
	letter-spacing: 1px;
	font-size: calc(2rem + ((0.77vw - 0.75rem) * 2.5));
	font-weight: bold;
	line-height: 1.8;
	background-color: #ffff99;
}
	
div.items_kyocho3 {
	column-count: 2;
	text-align: center;
	margin: 10px;
	padding: 2px 10px;
    display: flex;
}

div.items_kyocho3 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px auto;
	padding: 0px 120px 15px 120px;
	letter-spacing: 1px;
	font-size: calc(2rem + ((0.77vw - 0.75rem) * 2.5));
	line-height: 1.4;
	font-weight: bold;
}	
}
	
@media screen and (max-width: 768px) {

/* ---- Tags line ---- */
.tags{
	font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8));
  font-weight: 800;
	margin-bottom: 16px;
	color: #003dad;
}
.tags2{
	font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8));
	color: #ff6600;
  font-weight: 600;
      border-bottom: solid 5px #ffcc00;
      width: fit-content;
}

	
.small{ font-size: calc(1.4rem + ((0.5vw - 0.6rem) * 1.3)); color: #666; }
.small2{ font-size: calc(1.4rem + ((0.7vw - 0.6rem) * 1.8)); color: #666; }
.erabareru{ font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8)); color: #003dad; weight:700 ;}

div.haikei_none2 {
	text-align: left;
}
	
div.haikei_none2 ul{
  list-style: none;
	margin: 7px 5px;
	padding: 2px 5px;
}
	
div.haikei_none2 li{
	padding: 15px 5px;
}
	
div.haikei_none2 li img{
	width: 100%;
	padding-bottom: 25px;
}
	
/* スマホ版ジャンプ位置調整 */
	
#points-logistics,
#points-cleaning,
#points-construction,
#points-office,
#points-sales,
#points-engineer,
#points-programmer,
#points-ai
	{
  scroll-margin-top: 100px;
}
	
.items_midashi1{
	letter-spacing: 1px;
	font-size: calc(1.6rem + ((0.6vw - 0.22rem) * 2.5));
	color: #003dad;
	font-weight: bold;
	line-height: 1.3;
	}
	
p.items_honbun1{
	letter-spacing: 1px;
	padding-bottom: 7px;
	font-size: calc(1.8rem + ((0.7vw - 0.7rem) * 1.8));
	line-height: 1.4;
	font-weight: bold;
	}

.hero-box{
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.hero-box-none{
    display: inline-block; 
	text-align: center;
	letter-spacing: 1px;
	color: #003399;
	font-weight: bold;
	line-height: 1.4;
    border-bottom: solid 7px #ffcc00;
	margin-bottom: 50px;
}
	
.parent {
  text-align: center;
	margin: 60px 0;
}
	
div.haikei_none2-0 {
	text-align: center;
}
	
div.haikei_none2-0 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
	margin: 7px 3px;
	padding: 2px;
}
	
div.haikei_none2-0 li {
	background-color: #efefef;
}

p.items_icon1-1 img {	
  width: 100%;
  margin: 8px auto 0 auto;
	padding: 10px ;
}

p.items_honbun1-1{
	letter-spacing: 1px;
	padding: 5px;
	font-size: calc(1.6rem + ((0.86vw - 0.75rem) * 1.5));
	line-height: 1.5;
	font-weight: bold;
	}
	
div.items_kyocho1 {
    display: flex;
	text-align: center;
}

div.items_kyocho1 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px auto;
	padding: 0px 8px 20px 8px;
	letter-spacing: 1px;
	font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8));
	line-height: 1.5;
	font-weight: bold;
}
	

div.items_kyocho2{
	display: flex;
	text-align: center;
}

div.items_kyocho2 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px 10px 20px 10px;
	padding: 10px;
	letter-spacing: 1px;
	font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8));
	font-weight: bold;
	line-height: 1.8;
	background-color: #ffff99;
}	
	
div.items_kyocho3 {
    display: flex;
	text-align: center;
}

div.items_kyocho3 ul {
	text-align: left;
    align-items: center;
	list-style: none;
	margin: 0px auto;
	padding: 0px 8px 20px 8px;
	letter-spacing: 1px;
	font-size: calc(1.8rem + ((0.7vw - 0.6rem) * 1.8));
	line-height: 1.5;
	font-weight: bold;
	}
}

label{
  display: block;
  font-weight: 800;
  margin: 10px 0 6px;
	font-size: calc(1.4rem + ((0.8vw - 0.8rem) * 1.5));
}

input, select, textarea{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
}

input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17,17,17,.08);
}

textarea{ min-height: 120px; resize: vertical; }

button.btn{
  width: 100%;
  margin-top: 12px;
}

.backtop{
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: #444;
  text-decoration: underline;
}

/* ---- Anchor offset for sticky header ---- */
:target{
  scroll-margin-top: 86px;
}

/* =========================
   PC Floating CTA（右下固定）
   ========================= */
.pc-float-cta{
  display:none;
}

@media (min-width: 769px){
  .pc-float-cta{
    display:block;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
  }
  .pc-float-cta__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 14px 18px;
    border-radius: 999px;
    background:#111;
    color:#fff;
    font-weight:800;
    border:1px solid #111;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
  }
  .pc-float-cta__btn:hover{ opacity:.92; }
}

/* =========================
   Mobile Bottom CTA（TEL・LINE・FORM）
   ========================= */
.mobile-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid #eee;
  backdrop-filter: blur(6px);
}

.mobile-cta__btn{
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  border-radius: 14px;
  border: 1px solid #111;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  min-height: 48px;
  transition: transform .06s ease, opacity .2s ease;
}

.mobile-cta__btn:active{ transform: translateY(1px); }

.mobile-cta__sub{
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  opacity: .85;
}

.mobile-cta__tel{
  background: #111;
  color: #fff;
  border-color: #111;
}

.mobile-cta__line{
  background: #06C755;
  color: #fff;
  border-color: #06C755;
}

.mobile-cta__form{
  background: #003dad;
  color: #ffffff;
}


@media (max-width: 768px){
label{
  display: block;
  font-weight: 800;
  margin: 10px 0 6px;
	font-size: calc(1.4rem + ((0.5vw - 0.6rem) * 1.3));
}
}

/* PCでは非表示 */
@media (min-width: 769px){
  .mobile-cta{ display: none; }
}

/* CTA分の余白確保（下に隠れないように） */
@media (max-width: 768px){
  body{ padding-bottom: 40px; }
}

/* ロゴ部分 */
/* 769px以上の画面サイズ向けのスタイル */
@media screen and (min-width: 769px) {
.logocontents {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

.logocontents li {
  display: inline-block;
  width: 18%;
  vertical-align: middle;
}

.logocontents li img {
	width: 100%;
	max-width: 100%;
}
}


/* 768px以下の画面サイズ向けのスタイル */
@media screen and (max-width: 768px) {
.logocontents {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

.logocontents li {
  display: inline-block;
  width: 32%;
  vertical-align: middle;
}

.logocontents li img {
  width: 100%;
  height: auto;
}
}


/* フッダー部分 */
div#sento {
	position: relative;
	top: 10px;
}
	
div#sento ul.sentonimodoru{
	margin: 10px auto 30px auto;
	text-align: right;
}

div#sento ul.sentonimodoru li {
	display: inline;
	background-image: url(../image/sento.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 16px;
	letter-spacing:1px;
	padding: 0px 10px 0px 20px;
}

div#sento ul.sentonimodoru a {
	color: #555555;
	text-decoration: none;
}

div#sento ul.sentonimodoru :hover{
opacity:0.5;
text-decoration: underline;
}

div.sento2 {
	position: relative;
	top: 10px;
}
	
div.sento2 ul.sentonimodoru2{
	margin: 10px auto 30px auto;
	text-align: right;
}

div.sento2 ul.sentonimodoru2 li {
	display: inline;
	background-image: url(../image/sento.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 16px;
	letter-spacing:1px;
	padding: 0px 10px 0px 20px;
}

div.sento2 ul.sentonimodoru2 a {
	color: #555555;
	text-decoration: none;
}

div.sento2 ul.sentonimodoru2 :hover{
opacity:0.5;
text-decoration: underline;
}

div#footer {
	clear: both;
	position: relative;
	background-color: #003dad;
	color: #ffff33;
}

div#footer ul.links-x4 {
	text-align: center;
	margin: 10px auto 0px auto;
}

div#footer ul.links-x4  li {
	display: inline;
	background-image: url(../image/list_image12.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 90%;
	letter-spacing:1px;
	padding: 13px;
}

div#footer ul.links-x4 a {
	color: #ffff00;
	text-decoration: none;
}

div#footer ul.links-x4 a:hover{
	color: #ffffff;
    text-decoration: underline;
}

address {
	clear: both;
	text-align: center;
	color: #FFFFFF;
	font-style: normal;
	margin-top: 4px;
	padding: 2px 0 15px 0;
	letter-spacing: 1px;
	word-spacing: 1px;
	background: #003dad;
}