@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++
   File: index.css
   Update: 2026-03-19
   (c)kobako design
++++++++++++++++++++++++++++++++++++++ */



/* ////////////////////////////////////////////////////////////////////////

   PC

//////////////////////////////////////////////////////////////////////// */
/* ====================================================
		Common
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
main {
  padding: 0!important;
}
#contents {
  background: #fff;
}
#contents .row {
}

/* -------------------------------
		Title
------------------------------- */
#contents h2 strong,
#contents h2 span {
  display: block;
}

/* English */
#contents h2 strong {
  color: #de3e21;
  font-size: 7rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

/* Japanese */
#contents h2 span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

/* -------------------------------
		Catch Copy
------------------------------- */
#contents .catchCopy {
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 40px;
}

/* -------------------------------
		Text
------------------------------- */
#contents .txt {
  font-size: 1.5rem;
  letter-spacing: .05em;
}


/* ====================================================
		Loading
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-visual {
  position: relative;
  display: inline-block;
}

/* -------------------------------
		Image
------------------------------- */
.loading-img {
  width: 340px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* -------------------------------
		Line
------------------------------- */
.loading-line {
  position: absolute;
  left: 8px;
  bottom: -6px;
  height: 1px;
  width: 286px;
  background: #de3e21;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.5s;
}

/* -------------------------------
		Fadeout
------------------------------- */
body.is-loaded .loading {
  animation: fadeOut 1s ease forwards;
  animation-delay: 3s;
}

/* -------------------------------
		Animation
------------------------------- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lineGrow {
  to { transform: scaleX(1); }
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}


/* ====================================================
		Main Visyal
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#mainVisual {
  height: 100vh;
  position: relative;
}
#mainVisual #movieBlock {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

/* -------------------------------
		Movie
------------------------------- */
#mainVisual #movieBlock #movie {
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


/* ====================================================
		Scroll Down
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#mainVisual .scrolldown {
  height: 120px;
  position: absolute;
  bottom: 0;
  right: 60px;
}
#mainVisual .scrolldown::before {
  content: '';
  width: 1px;
  height: 120px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

/* -------------------------------
		Text
------------------------------- */
#mainVisual .scrolldown span {
  color: #fff;
  font-size: .8rem;
  font-family: "Outfit", sans-serif;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: -20px;
}

/* -------------------------------
		Line Animation
------------------------------- */
#mainVisual .scrolldown::after {
  content: '';
  width: 1px;
  height: 60px;
  background: #fff;
  position: absolute;
  top: 0;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/* Animation */
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 60px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 120px;
		opacity: 0;
	}
}

/* Animation - SP */
@keyframes pathmovesp {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
}


/* ====================================================
		Catch Copy
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#mainVisual .catchCopy {
  max-width: 400px;
  position: absolute;
  bottom: 60px;
  left: 100px;
}


/* ====================================================
		News
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#news {
  padding: 130px 0;
}
#news .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#news .flex {
  width: 20%;
  align-content: space-between;
}

/* -------------------------------
		News List
------------------------------- */
#news #newsList {
  width: 72%;
}
#newsList li:not(:last-child) {
  border-bottom: 1px solid #dfdede;
}

/* Link */
#newsList a {
  width: calc(100% - 60px);
  padding: 20px 60px 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Arrow Button */
#newsList a::before,
#newsList a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  transition: .3s;
}
#newsList a::before {
  width: 30px;
  height: 30px;
  border: 1px solid #de3e21;
  border-radius: 20px;
  transform: translateY(-50%);
  right: 0;
}
#newsList a::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #de3e21;
  border-bottom: 1px solid #de3e21;
  right: 12px;
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Hover */
#newsList a:hover,
#newsList a:hover::before,
#newsList a:hover::after {
  opacity: 1;
}
#newsList a:hover::before {
  border: 1px solid #fdd000;
  background: #fdd000;
}
#newsList a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/* Thumbnail */
#newsList .thumbnail {
  width: 160px;
  height: 110px;
  overflow: hidden;
  transition: .3s;
}
#newsList .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
#newsList a:hover .thumbnail {
  opacity: .6;
}

/* Text */
#newsList .textBox {
  width: calc(100% - 200px);
  transition: .3s;
}

/* Date */
#newsList .textBox time {
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
  display: block;
  padding-bottom: 5px;
}

/* Title */
#newsList .textBox .title {
  font-size: 1.6rem;
}

/* -------------------------------
		Button
------------------------------- */
#contents #news .btn_arrow {
  padding-bottom: 20px;
}


/* ====================================================
		Business
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#business {
  position: relative;
}
#business::before,
#business::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  z-index: 0;
}
#business::before {
  width: 100%;
  height: 100%;
  background: #182a56;
  left: 0;
}
#business::after {
  width: 1300px;
  height: 900px;
  background: url("../img/index/bg_business.webp") no-repeat 0 0 / 1300px 900px;
  right: 0;
}
#business .row {
  position: relative;
  padding: 120px 4% 0;
  z-index: 1;
}

/* -------------------------------
		Title
------------------------------- */
#business .titleBlock {
  padding: 130px 0 100px;
  position: relative;
}
#business .titleBlock::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #de3e21;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
}

/* Title */
#business .titleBlock h2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 1;
}
#business .titleBlock h2 strong,
#business .titleBlock h2 span {
  color: #fff;
}

/* -------------------------------
		Catch Copy
------------------------------- */
#business .catchCopy {
  color: #fff;
}

/* -------------------------------
		Text
------------------------------- */
#business .txt {
  color: #fff;
}

/* -------------------------------
		Business Illust
------------------------------- */
#businessIllust {
  position: relative;
  margin: 90px 0 50px;
}

/* Illust */
#businessIllust .illust img {
  border-radius: 3px;
}

/* Click */
#businessIllust ul {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#businessIllust ul li {
  position: absolute;
}
#businessIllust ul li:nth-child(1) {
  top: 29%;
  left: 44%;
}
#businessIllust ul li:nth-child(2) {
  top: 74%;
  left: 9%;
}
#businessIllust ul li:nth-child(3) {
  top: 49%;
  left: 83%;
}
#businessIllust ul li:nth-child(4) {
  top: 80%;
  left: 57%;
}
#businessIllust ul li:nth-child(5) {
  top: 11%;
  left: 8%;
}
#businessIllust ul li:nth-child(6) {
  top: 44%;
  left: 26%;
}
#businessIllust ul li:nth-child(7) {
  top: 14%;
  left: 82%;
}
#businessIllust ul li:nth-child(8) {
  top: 45%;
  left: 57%;
}
#businessIllust ul li:nth-child(9) {
  top: 11%;
  left: 29%;
}
#businessIllust ul li a {
  width: 90px;
  height: 28px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  background: #182a56;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  padding-bottom: 2px;
}
#businessIllust ul li a:hover {
  background: #fdd000;
  opacity: 1;
}

/* -------------------------------
		Business List
------------------------------- */
#business ul#businessTxtList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#business ul#businessTxtList li {
  width: 32.8%;
  margin-bottom: .9%;
}
#business ul#businessTxtList li a {
  background: #fff;
  border-radius: 3px;
  display: block;
  padding: 10px 6% 8px;
  position: relative;
}

#business ul#businessTxtList li a strong,
#business ul#businessTxtList li a span {
  display: block;
}

/* Japanese */
#business ul#businessTxtList li a strong {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

/* English */
#business ul#businessTxtList li a span {
  color: #de3e21;
  font-family: "Outfit", sans-serif;
  font-size: .9rem;
}

/* Arrow */
#business ul#businessTxtList li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid #de3e21;
  border-bottom: 1px solid #de3e21;
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translate(-50%,-50%) rotate(-45deg);
  display: block;
}

/* Hover */
#business ul#businessTxtList li a:hover {
  background: #fdd000;
  opacity: 1;
}

/* -------------------------------
		Button
------------------------------- */
#business .btn_line_white {
  text-align: right;
  padding: 40px 0 50px;
}


/* ====================================================
		Sustainability
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#sustainability {
  position: relative;
}
#sustainability::after {
  content: '';
  width: 1300px;
  height: 540px;
  background: url("../img/index/img_sustainability.webp") no-repeat 0 0 / 1300px 540px;
  position: absolute;
  top: 130px;
  left: 0;
  display: block;
  z-index: 0;
}
#sustainability .row {
  border-bottom: 1px solid #262423;
  position: relative;
  padding: 230px 4% 150px;
  z-index: 1;
}
#sustainability .row .inBox {
  max-width: 730px;
  margin: 0 0 0 auto;
}

/* -------------------------------
		Title
------------------------------- */
#sustainability h2 {
  text-align: right;
  padding-bottom: 70px;
}

/* -------------------------------
		Catch Copy
------------------------------- */
@media screen and (min-width: 897px) and (max-width: 1070px) {
  #sustainability .catchCopy {
    text-align: right;
  }
}

/* -------------------------------
		Service List
------------------------------- */
#sustainability .flex {
  padding-top: 40px;
}
#sustainability .flex ul {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}
#sustainability .flex ul li {
  margin-right: 5px;
}
#sustainability .flex ul li a {
  font-size: 1.3rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
  background: #eee;
  border-radius: 3px;
  padding: 5px 15px;
  transition: .3s;
}
#sustainability .flex ul li a:hover {
  color: #fff;
  background: #262423;
  opacity: 1;
}


/* ====================================================
		Company
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#company {
  padding-bottom: 100px;
}
#company .row {
  padding-top: 140px;
}

/* -------------------------------
		Title
------------------------------- */
#company h2 {
  width: 30%;
}

/* -------------------------------
		Contents
------------------------------- */
#company .row div {
  width: 58%;
}
#company .row div ul li:not(:last-child) {
  border-bottom: 1px solid #dfdede;
}

/* Link */
#company .row div ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

/* Photo */
#company .row div ul li a .photo {
  width: 56%;
  transition: .3s;
}
#company .row div ul li a .photo img {
  border-radius: 3px;
}

/* Page Title */
#company .row div ul li a .pageName {
  width: 38%;
  padding-top: 40px;
}
#company .row div ul li a .pageName strong,
#company .row div ul li a .pageName span {
  display: block;
}

/* Japanese */
#company .row div ul li a .pageName strong {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.4;
}

/* English */
#company .row div ul li a .pageName span {
  color: #de3e21;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Button */
#company .row div ul li a::before,
#company .row div ul li a::after {
  content: '';
  position: absolute;
  display: block;
  transition: .3s;
}
#company .row div ul li a::before {
  width: 30px;
  height: 30px;
  border: 1px solid #de3e21;
  background: #de3e21;
  border-radius: 20px;
  bottom: 40px;
  right: 0;
}
#company .row div ul li a::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  bottom: 53px;
  right: 15px;
  transform: rotate(-45deg);
}

/* Hover */
#company .row div ul li a:hover {
  opacity: 1;
}
#company .row div ul li a:hover .photo {
  opacity: .6;
}
#company .row div ul li a:hover::before {
  border: 1px solid #fdd000;
  background: #fdd000;
}


/* ====================================================
		Recruit
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#recruit {
  color: #fff;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  isolation: isolate;
}
#recruit::before,
#recruit::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
}
#recruit::before {
  background: url("../img/index/ph_recruit.webp") no-repeat center center / cover;
}
#recruit::after {
  background: rgba(76, 73, 72, 0.7);
  mix-blend-mode: multiply;
}
#recruit .row {
  position: relative;
  z-index: 1;
}

/* -------------------------------
		Title
------------------------------- */
#recruit h2 {
  padding-bottom: 60px;
}
#recruit h2 strong,
#recruit h2 span {
  color: #fff;
}

/* -------------------------------
		Catch Copy
------------------------------- */
#recruit .catchCopy {
  font-size: 2.4rem;
  padding-bottom: 20px;
}

/* -------------------------------
		Text
------------------------------- */
#recruit .txt {
  padding-bottom: 40px;
}

/* -------------------------------
		Button
------------------------------- */
#recruit .btn_line_white a:hover {
  color: #262423;
}


/* ====================================================
		Other Information
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#otherInformation {
  background: #e9e9e9;
  padding: 70px 0;
}
#otherInformation .flex p {
  width: 49%;
}
#otherInformation .flex p img {
  border-radius: 3px;
  display: block;
}


/* ====================================================
		Footer
==================================================== */
#gFooter {
  padding-top: 0;
}



/* ////////////////////////////////////////////////////////////////////////

   TABLET

//////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  
}



/* ////////////////////////////////////////////////////////////////////////

   SMART PHONE

//////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 896px) {
  
  /* ====================================================
      Common
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  /* English */
  #contents h2 strong {
    font-size: 3rem;
  }

  /* Japanese */
  #contents h2 span {
    font-size: 1.4rem;
  }
  
  /* -------------------------------
      Catch Copy
  ------------------------------- */
  #contents .catchCopy {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #contents .txt {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  
  
  /* ====================================================
      Loading
  ==================================================== */
  /* -------------------------------
      Image
  ------------------------------- */
  .loading-img {
    width: 230px;
  }

  /* -------------------------------
      Line
  ------------------------------- */
  .loading-line {
    left: 5px;
    bottom: -4px;
    width: 195px;
  }
  
  
  /* ====================================================
      Main Visyal
  ==================================================== */
  
  
  /* ====================================================
      Scroll Down
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #mainVisual .scrolldown {
    height: 60px;
    right: 20px;
  }
  #mainVisual .scrolldown::before {
    height: 60px;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #mainVisual .scrolldown span {
    font-size: .7rem;
    right: -15px;
  }
  
  /* -------------------------------
      Line Animation
  ------------------------------- */
  #mainVisual .scrolldown::after {
    height: 30px;
    animation: pathmovesp 1.4s ease-in-out infinite;
  }
  
  
  /* ====================================================
      Catch Copy
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #mainVisual .catchCopy {
    max-width: 200px;
    bottom: 40px;
    left: 20px;
  }
  
  
  /* ====================================================
      News
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #news {
    padding: 80px 0;
  }
  #news .row {
    display: block;
  }
  #news .flex {
    width: 100%;
    display: block;
  }
  
  /* -------------------------------
      News List
  ------------------------------- */
  #news #newsList {
    width: 100%;
  }
  
  /* Link */
  #news #newsList a {
    width: calc(100% - 40px);
    padding: 15px 35px 15px 0;
  }
  
  /* Arrow Button */
  #news #newsList a::before {
    width: 20px;
    height: 20px;
  }
  #news #newsList a::after {
    width: 3px;
    height: 3px;
    right: 8px;
  }
  
  /* Thumbnail */
  #news #newsList .thumbnail {
    width: 90px;
    height: 80px;
  }
  
  /* Text */
  #news #newsList .textBox {
    width: calc(100% - 100px);
  }
  
  /* Date */
  #news #newsList .textBox time {
    font-size: 1.1rem;
    padding-bottom: 0;
  }
  
  /* Title */
  #news #newsList .textBox .title {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
  
  /* Hover */
  #news #newsList a:hover .textBox {
    color: #262423;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  #contents #news .btn_arrow {
    text-align: right;
    padding-bottom: 10px;
  }
  
  
  /* ====================================================
      Business
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #business::after {
    width: 350px;
    height: 242px;
    background-size: 350px 242px;
    right: 0;
  }
  #business .row {
    padding: 40px 4% 0;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #business .titleBlock {
    padding: 50px 0 40px;
  }
  
  /* -------------------------------
      Business Illust
  ------------------------------- */
  #businessIllust {
    margin: 40px 0 30px;
  }

  /* Click */
  #businessIllust ul {
    display: none;
  }
  
  /* -------------------------------
      Business List
  ------------------------------- */
  #business ul#businessTxtList li {
    width: 49%;
    margin-bottom: 2%;
  }
  
  /* Japanese */
  #business ul#businessTxtList li a strong {
    font-size: 1.3rem;
  }
  
  /* Arrow */
  #business ul#businessTxtList li a::before {
    width: 3px;
    height: 3px;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  #business .btn_line_white {
    padding: 20px 0 50px;
  }
  
  
  /* ====================================================
      Sustainability
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #sustainability::after {
    width: 350px;
    height: 145px;
    background-size: 350px 145px;
    top: 60px;
  }
  #sustainability .row {
    padding: 130px 4% 80px;
  }
  
  /* -------------------------------
      Title
  ------------------------------- */
  #sustainability h2 {
    padding-bottom: 50px;
  }
  
  /* -------------------------------
      Service List
  ------------------------------- */
  #sustainability .flex {
    padding-top: 20px;
    display: block;
  }
  #sustainability .flex ul {
    width: 100%;
  }
  #sustainability .flex ul li a {
    font-size: 1.1rem;
  }
  
  /* -------------------------------
      Button
  ------------------------------- */
  #sustainability .btn_normal {
    text-align: right;
    margin-top: 30px;
  }
  
  
  /* ====================================================
      Company
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #company {
    padding-bottom: 60px;
  }
  #company .row {
    padding-top: 60px;
  }
  
  /* -------------------------------
      Contents
  ------------------------------- */
  #company .row div {
    width: 100%;
    padding-top: 20px;
  }
  
  /* Link */
  #company .row div ul li a {
    padding: 20px 0;
  }
  
  /* Page Title */
  #company .row div ul li a .pageName {
    padding-top: 10px;
  }
  
  /* Japanese */
  #company .row div ul li a .pageName strong {
    font-size: 1.6rem;
  }

  /* English */
  #company .row div ul li a .pageName span {
    font-size: 1rem;
  }
  
  /* Button */
  #company .row div ul li a::before {
    width: 20px;
    height: 20px;
    bottom: 20px;
  }
  #company .row div ul li a::after {
    width: 3px;
    height: 3px;
    right: 10px;
    bottom: 29px;
  }
  
  
  /* ====================================================
      Recruit
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #recruit h2 {
    padding-bottom: 40px;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #recruit .txt {
    text-align: left;
    padding-bottom: 20px;
  }
  
  
  /* ====================================================
      Other Information
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #otherInformation {
    padding: 40px 0;
  }
  #otherInformation .flex p {
    width: 100%;
  }
  #otherInformation .flex p:not(:last-child) {
    margin-bottom: 10px;
  }
  
  
  
  /* ====================================================
      Footer
  ==================================================== */
  #gFooter {
    padding-top: 0;
  }


}