/* --------------------------
* header
-------------------------- */
#header {
  width: 100%;
  height: 72px;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #header {
    height: 40px;
  }
}
#header .headInner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  height: 72px;
  display: block;
}
@media screen and (max-width: 767px) {
  #header .headInner {
    padding: 0 0px;
  }
}
#header .headInner .logo {
  position: absolute;
  top: 24px;
  left: 70px;
  display: block;
  width: 478px;
  height: 24px;
  line-height: 0.7;
}
@media screen and (max-width: 1080px) {
  #header .headInner .logo {
    left: 25px;
  }
}
@media screen and (max-width: 767px) {
  #header .headInner .logo {
    left: 15px;
    top: 13px;
    width: 280px;
    height: 13px;
    line-height: 0.7;
  }
}
@media screen and (max-width: 374px) {
  #header .headInner .logo {
    left: 15px;
    top: 12px;
    width: 240px;
    line-height: 0.9;
  }
}
#header .headInner .logo a img {
  width: 100%;
  height: auto;
}
#header .headInner .logo a:hover {
  opacity: 0.7;
}
#header .headInner .gnav {
  position: absolute;
  top: 0px;
  right: 140px;
  width: auto;
  display: block;
  height: 72px;
  line-height: 72px;
}
#header .headInner .gnav ul {
  font-size: 0;
  display: flex;
}
#header .headInner .gnav ul li {
  font-size: 1.4rem;
  display: block;
  position: relative;
  font-weight: 700;
  cursor: pointer;
}
#header .headInner .gnav ul li::before {
  content: "";
  height: 2px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: transform 0.25s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  background-color: #000000;
  z-index: -1;
}
#header .headInner .gnav ul li ul.child {
  display: none;
  width: 165px;
  position: absolute;
  left: -36px;
  top: 72px;
  font-size: 0;
  height: 30px;
  line-height: 30px;
  padding: 0;
  transition: 0.3s ease all;
}
#header .headInner .gnav ul li ul.child.open {
  display: block;
}
#header .headInner .gnav ul li ul.child li {
  display: inline-block;
  line-height: 30px;
  width: 82px;
  height: 30px;
  padding: 0;
}
#header .headInner .gnav ul li ul.child li a {
  display: block;
  line-height: 30px;
  padding: 0;
  text-align: center;
  background-color: #FFFFFF;
}
#header .headInner .gnav ul li ul.child li a:hover {
  background-color: #000000;
  color: #FFFFFF;
}
#header .headInner .gnav ul li a, #header .headInner .gnav ul li span {
  display: block;
  padding: 0 12px;
}
#header .headInner .gnav ul li:hover a {
  color: #000000;
}
#header .headInner .gnav ul li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  #header .headInner .gnav {
    display: none;
  }
}
#header .headInner .translate {
  width: 72px;
  height: 20px;
  display: block;
  position: absolute;
  overflow: hidden;
  top: 26px;
  right: 60px;
}
@media screen and (max-width: 1100px) {
  #header .headInner .translate {
    display: none;
  }
}
#header .headInner .translate ul {
  display: block;
}
#header .headInner .translate ul li {
  width: 35px;
  height: 20px;
  line-height: 20px;
  display: block;
  float: left;
}
#header .headInner .translate ul li:first-child {
  border-right: 2px solid #000000;
}
#header .headInner .translate ul li a {
  font-size: 1.6rem;
  display: block;
  text-align: center;
}
#header .headInner .translate ul li a:hover {
  opacity: 0.5;
}

/* --------------------------
* section
-------------------------- */
.section {
  margin-bottom: 100px;
  display: block;
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 100px;
  }
}

.secTitle {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 45px;
}
.secTitle.min {
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .secTitle.min {
    font-size: 3rem;
  }
}

/* --------------------------
* btn
-------------------------- */
.btn a {
  color: #FF3C00;
  font-weight: 700;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .btn a {
    border-bottom: 1px solid #FF3C00;
    height: 20px;
    font-size: 1.6rem;
  }
}
.btn a::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: transform 0.25s ease;
  transform-origin: left top;
  background-color: #FF3C00;
}
@media screen and (max-width: 767px) {
  .btn a::before {
    content: none;
  }
}
.btn a:hover {
  opacity: 0.7;
}
.btn a:hover::before {
  animation: linkAnime 0.5s ease forwards;
}
.btn a .fa-arrow-down {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .btn a .fa-arrow-down {
    position: absolute;
    margin-left: 0;
    right: 0px;
    bottom: 15px;
  }
}
.btn.lg {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn.lg {
    text-align: left;
  }
}
.btn.lg a {
  font-size: 2rem;
  height: 35px;
}
@media screen and (max-width: 1023px) {
  .btn.lg a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .btn.lg a {
    height: auto;
    font-size: 1.6rem;
    padding-right: 20px;
    padding-bottom: 8px;
    line-height: 1.5;
  }
}
.btn.lg.mB50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .btn.lg.mB50 {
    margin-bottom: 30px;
  }
}
.btn.std {
  width: 300px;
  height: 50px;
  margin: 0 auto 25px;
  padding: 0 !important;
  border: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #FF3C00;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn.std {
    margin-top: 30px;
  }
}
.btn.std.off {
  background-color: transparent !important;
}
.btn.std.off a {
  pointer-events: none;
  background-color: #cccccc;
  color: #FFFFFF;
  border-bottom: none;
}
.btn.std::before {
  content: "";
  height: 50px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: transform 0.25s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.btn.std a {
  display: block;
  color: #FFFFFF !important;
  height: 50px;
  line-height: 50px;
  z-index: 9999;
  position: relative;
  padding-left: 15px;
}
.btn.std a::before {
  content: none;
}
.btn.std:hover a {
  opacity: 1;
}
.btn.std:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn.box {
  height: 40px;
  margin-top: 50px;
  background-color: #FF3C00;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .btn.box {
    margin-top: 30px;
  }
}
.btn.box::before {
  content: "";
  height: 40px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: transform 0.25s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.btn.box a {
  display: block;
  color: #FFFFFF;
  text-align: center;
  height: 40px;
  line-height: 40px;
  z-index: 9999;
  position: relative;
}
.btn.box a .fa-arrow-right {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  font-size: 1.6rem;
}
.btn.box a::before {
  content: none;
}
.btn.box:hover a {
  opacity: 1;
}
.btn.box:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn.box_min {
  width: 150px;
  height: 30px;
  margin-top: 5px;
  background-color: #000000;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .btn.box_min {
    margin: 10px 0 5px;
  }
}
.btn.box_min::before {
  content: "";
  height: 30px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: transform 0.25s ease;
  transform-origin: right top;
  transform: scale(0, 1);
  background-color: #333;
  z-index: 0;
}
.btn.box_min a {
  display: block;
  color: #FFFFFF;
  text-align: center;
  height: 30px;
  line-height: 30px;
  z-index: 9999;
  position: relative;
  font-size: 1.2rem;
}
.btn.box_min a::before {
  content: none;
}
.btn.box_min:hover a {
  opacity: 1;
}
.btn.box_min:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* --------------------------
* footer
-------------------------- */
#footer {
  background-color: #000000;
  padding: 40px 0;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 25px 0;
  }
}
#footer .footNav {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #footer .footNav {
    padding: 0 20px 25px;
    width: auto;
    margin: auto;
  }
}
#footer .footNav ul {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  line-height: 25px;
  margin-bottom: 25px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  #footer .footNav ul {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #footer .footNav ul {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    float: none;
    width: 100%;
    clear: both;
    text-align: left;
  }
}
#footer .footNav ul:nth-child(2) {
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  #footer .footNav ul:nth-child(2) {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  #footer .footNav ul:nth-child(2) {
    margin-bottom: 0px;
    padding-top: 25px;
    font-size: 1rem;
    width: 100%;
  }
}
#footer .footNav ul li {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #footer .footNav ul li {
    display: block;
    margin-bottom: 0px;
    width: 50%;
    float: left;
  }
}
#footer .footNav ul li a {
  padding: 0 15px;
  color: #FFFFFF;
}
@media screen and (max-width: 1023px) {
  #footer .footNav ul li a {
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  #footer .footNav ul li a {
    padding: 0 0px;
  }
}
#footer .footNav ul li a:hover {
  opacity: 0.5;
}
#footer .logo {
  width: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    width: 100%;
    border-top: 1px solid #333333;
    margin: 0;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  #footer .logo a {
    width: 155px;
    margin: 0 auto;
    display: block;
  }
}
#footer .copyright {
  font-size: 1.2rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #footer .copyright {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
#footer .sns {
  height: 50px;
  width: 210px;
  margin: 50px auto 0px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .sns {
    height: 40px;
    width: 170px;
    margin: 35px auto 0px;
  }
}
#footer .sns ul {
  font-size: 0;
}
#footer .sns ul li {
  display: inline-block;
  font-size: 2.4rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  #footer .sns ul li {
    font-size: 2.1rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
#footer .sns ul li a {
  display: block;
  text-align: center;
  color: #FFFFFF;
}
#footer .sns ul li a figure {
  position: relative;
  top: -2px;
  width: 22px;
  margin: 0 auto;
}
#footer .sns ul li a:hover {
  opacity: 0.7;
}

/* --------------------------
* entry
-------------------------- */
#entryBtn {
  width: 160px;
  height: 36px;
  line-height: 36px;
  display: block;
  position: fixed;
  top: 50%;
  right: -62px;
  z-index: 9;
  transform: rotate(-90deg);
  background-color: #000000;
  margin-top: -20px;
  transition: right 0.3s ease;
}
@media screen and (max-width: 767px) {
  #entryBtn {
    transform: rotate(0);
    top: inherit;
    right: 0;
    bottom: 0;
    margin-top: 0px;
    width: 100%;
    transition: bottom 0.3s ease;
    height: 46px;
    line-height: 46px;
  }
}
#entryBtn a {
  display: block;
  color: #FFFFFF;
  background-color: #FF3C00;
  width: 160px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  #entryBtn a {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 1px;
    height: 46px;
    line-height: 46px;
  }
}
#entryBtn:hover a {
  background-color: #912200;
}

/* --------------------------
* movie
-------------------------- */
#movie {
  font-size: 2.4rem;
}
#movie a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #dddddd;
}
#movie a p {
  background-color: transparent;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #movie a p {
    font-size: 1rem;
    bottom: 10px;
    right: 10px;
  }
}
#movie a .play {
  width: 51px;
  height: 44px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
  transition: all ease 0.5s;
}
@media screen and (max-width: 767px) {
  #movie a .play {
    width: 24px;
    height: 21px;
  }
}
#movie a figure {
  transition: all ease 0.5s;
}
#movie a figure::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 0.5s;
}
#movie a:hover .play {
  opacity: 1;
}
#movie a:hover figure {
  transform: scale(1.05);
}
#movie a:hover figure::before {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  #movie {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  #movie {
    font-size: 1.4rem;
  }
}
#movie h2 {
  text-align: center;
  margin-top: 25px;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #movie h2 {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  #movie h2 {
    font-size: 1.4rem;
  }
}
#movie h2 span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #movie h2 span {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  #movie h2 span {
    font-size: 1.4rem;
  }
}
#movie h2.lg {
  text-align: left;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #movie h2.lg {
    font-size: 2.4rem;
  }
}
#movie h2.lg span {
  margin-left: 20px;
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #movie h2.lg span {
    font-size: 2.4rem;
  }
}
#movie h3 {
  text-align: left;
  margin-bottom: 15px;
  position: relative;
  top: -10px;
}

/* --------------------------
* news
-------------------------- */
#news {
  display: block;
}
@media screen and (max-width: 767px) {
  #news ul {
    padding-bottom: 5px;
  }
}
#news ul li {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #news ul li {
    margin-bottom: 35px;
  }
}
#news ul li:last-child {
  margin-bottom: 0;
}
#news ul li .newsTitle {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #news ul li .newsTitle {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
#news ul li .newsTitle .date {
  width: 120px;
  float: left;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  #news ul li .newsTitle .date {
    float: none;
    letter-spacing: 0.5px;
  }
}
#news ul li .newsTitle h2 {
  padding-left: 120px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #news ul li .newsTitle h2 {
    padding-left: 0;
  }
}
#news ul li .desc a {
  color: #FF3C00;
  padding-bottom: 0px;
  border-bottom: 1px solid #FF3C00;
}
#news ul li .desc a:hover {
  color: #FF3C00;
}

@media screen and (max-width: 767px) {
  .home #news ul {
    margin-bottom: 45px;
  }
}
.home #news .btn {
  margin-top: 50px;
}

.misc #news {
  padding-bottom: 50px;
}

/* --------------------------
 * hamburger
-------------------------- */
#hamburger {
  display: none;
}
@media screen and (max-width: 1100px) {
  #hamburger {
    display: block;
    position: fixed;
    top: 0px;
    right: 20px;
    width: 50px;
    height: 72px;
    cursor: pointer;
    z-index: 999999;
    transition: 0.3s ease all;
  }
}
@media screen and (max-width: 767px) {
  #hamburger {
    right: 20px;
    width: 35px;
    height: 40px;
  }
}
@media screen and (max-width: 374px) {
  #hamburger {
    right: 15px;
  }
}
#hamburger .inner {
  width: 50px;
  height: 30px;
  position: absolute;
  overflow: hidden;
  top: 22px;
  left: 0px;
  margin: auto;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  #hamburger .inner {
    width: 35px;
    height: 14px;
    top: 13px;
  }
}
#hamburger .inner span {
  display: block;
  box-sizing: border-box;
  width: 50px;
  height: 2px;
  left: 0px;
  background-color: #000000;
  position: absolute;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  #hamburger .inner span {
    width: 35px;
  }
}
#hamburger .inner span:nth-of-type(1) {
  z-index: 1;
  top: 5px;
}
@media screen and (max-width: 767px) {
  #hamburger .inner span:nth-of-type(1) {
    top: 0px;
  }
}
#hamburger .inner span:nth-of-type(2) {
  z-index: 1;
  bottom: calc(50% - 1px);
}
#hamburger .inner span:nth-of-type(3) {
  z-index: 1;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  #hamburger .inner span:nth-of-type(3) {
    bottom: 0px;
  }
}
#hamburger.active {
  overflow: hidden;
}
#hamburger.active .inner {
  width: 40px;
  left: 5px;
}
@media screen and (max-width: 767px) {
  #hamburger.active .inner {
    width: 35px;
    height: 16px;
    top: 12px;
  }
}
#hamburger.active .inner span {
  width: 40px;
}
@media screen and (max-width: 767px) {
  #hamburger.active .inner span {
    width: 35px;
    left: 5px;
  }
}
#hamburger.active .inner span:nth-of-type(1) {
  top: 10px;
  transform: translateY(4px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #hamburger.active .inner span:nth-of-type(1) {
    top: 3px;
    width: 20px;
  }
}
#hamburger.active .inner span:nth-of-type(2) {
  left: -50px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  #hamburger.active .inner span:nth-of-type(2) {
    width: 35px;
  }
}
#hamburger.active .inner span:nth-of-type(3) {
  bottom: 10px;
  transform: translateY(-4px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  #hamburger.active .inner span:nth-of-type(3) {
    bottom: 3px;
    width: 20px;
  }
}
#hamburger:hover {
  opacity: 0.7;
}

/* --------------------------
 * spNav
-------------------------- */
body.scroll-prevent {
  overflow: hidden;
}

#spNavWrap {
  display: none;
  z-index: 999;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#spNav {
  display: none;
  background-color: #FFFFFF;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#spNav .inner {
  width: 300px;
  height: 370px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 374px) {
  #spNav .inner {
    height: 315px;
  }
}
#spNav .inner .gnav {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #spNav .inner .gnav {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 374px) {
  #spNav .inner .gnav {
    padding-bottom: 25px;
  }
}
#spNav .inner .gnav ul > li {
  font-size: 2.8rem;
  line-height: 40px;
  margin-bottom: 30px;
  display: block;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 374px) {
  #spNav .inner .gnav ul > li {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
#spNav .inner .gnav ul > li > a {
  display: block;
}
#spNav .inner .gnav ul > li > a:hover {
  opacity: 0.7;
}
#spNav .inner .gnav ul > li.child img {
  width: 15px;
  margin-left: 20px;
  transform: rotate(-90deg);
}
#spNav .inner .gnav ul > li.child > ul {
  display: none;
  width: 240px;
  margin: 0 auto;
  height: 40px;
  margin-top: 10px;
}
#spNav .inner .gnav ul > li.child > ul > li {
  display: block;
  float: left;
  width: 120px;
  line-height: 40px;
}
#spNav .inner .gnav ul > li.child > ul > li > a {
  display: block;
  font-size: 2.1rem;
}
#spNav .inner .gnav ul > li.child.open img {
  transform: rotate(0deg);
}
#spNav .inner .translate {
  width: 162px;
  height: 30px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 374px) {
  #spNav .inner .translate {
    width: 122px;
  }
}
#spNav .inner .translate ul {
  display: block;
}
#spNav .inner .translate ul li {
  width: 80px;
  height: 30px;
  line-height: 30px;
  display: block;
  float: left;
}
@media screen and (max-width: 767px) {
  #spNav .inner .translate ul li {
    height: 30px;
    line-height: 30px;
    width: 80px;
  }
}
@media screen and (max-width: 374px) {
  #spNav .inner .translate ul li {
    width: 60px;
  }
}
#spNav .inner .translate ul li:first-child {
  border-right: 2px solid #000000;
}
#spNav .inner .translate ul li a {
  font-size: 2.8rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 374px) {
  #spNav .inner .translate ul li a {
    font-size: 2.4rem;
  }
}
#spNav .inner .translate ul li a:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */