@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;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

main {
  height: 100%;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body {
 height: 100%;
  overflow: auto;
  position: fixed;
  -webkit-overflow-scrolling: auto;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

a:hover {
  text-decoration: none;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  overflow: hidden;
  height: 100%;
}

.wrapper {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.img {
  max-width: 100%;
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

sub {
  vertical-align: sub;
  font-size: .7em;
  bottom: 1.6px;
  left: -0.2px;
}

.color-all {
  color: #707070;
  cursor: pointer;
}
.color-all:hover {
  color: #2B468C;
}

.color-all-active {
  color: #2B468C;
}

.color-icon-sidebar {
  color: #707070;
}

.dot-style {
  list-style: disc;
  padding-left: 16px;
}

.dot-style li {
  font-size: 16px;
  line-height: 1.66667;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .sm {
    display: none !important;
  }
  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    cursor: pointer;
  }

  .flex-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: 13.33333vw;
  }

  body {
    font-size: 0.24rem;
  }

  .container {
    width: 100vw;
  }

  .wrapper {
    width: auto;
    margin: 0;
  }

  .flex-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* COMMON HEADER
 * ----------------------------------------------- */
header {
  background: #fff;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}
header .logo {
  position: fixed;
  font-weight: bold;
}
header img {
  width: 100%;
  display: block;
}
header .navigation {
  position: fixed;
  left: 0;
  z-index: 5;
  background: #fff;
}
header .list-nav > li {
  text-align: center;
  position: relative;
}
header .list-nav > li a {
  background-position: center 30%;
  background-repeat: no-repeat;
  display: block;
  color: #707070;
}
header .list-nav .number {
  font-size: 10px;
}
header .list-nav > li:hover a {
  color: #2B468C;
}
header .current .city {
  background-image: url(/img/common/icn_city_hover.png) !important;
}
header .current a {
  color: #2B468C !important;
}
.disable-mouse {
  pointer-events: none;
}
@media print, (min-width: 768px) {
  header {
    position: fixed;
    width: 72px;
    height: 100vh;
    top: 0;
  }
  header .navigation {
    top: 0;
    width: 72px;
  }
  header .logo {
    font-size: 20px;
    color: #fff;
    height: 100px;
    width: 100px;
    position: relative;
  }
  header .logo img {
    width: 76px;
    margin: 0 auto;
  }
  header .list-nav {
    margin-top: 8px;
  }
  header .list-nav > li {
    font-size: 13px;
    margin: 0;
    padding: 0;
    height: 72px;
  }
  header .list-nav > li a{
    padding: 14px 0;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  header .list-nav > li a > div {
    width: 100%;
  }
  header .list-nav .txt {
    padding: 45px 0 12px;
  }
  header .number {
    font-size: 10px;
  }
  header .list-nav > li:hover {
    background-color: #f2f2f2;
  }
  header .list-nav-bottom {
    bottom: 16px;
    position: fixed;
    width: 72px;
  }
  header .list-nav-bottom li:last-child a {
    padding: 21px 0;
  }
  header .current {
    color: #2B468C;
  }
  .item-activities {
    width: 78px;
    margin-left: -2px;
  }
  .li-nav-style {
    cursor: pointer;
    color: #707070;
  }
  .li-nav-style:hover {
    color: #2B468C;
  }
  .logo-about {
    display: none;
  }
  .hide-pc {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
  }
  header .logo {
    color: #2B468C;
    top: 6px;
    left: 6px;
    z-index: 10;
    height: 50px;
    width: 150px;
  }
  header .navigation {
    bottom: 0;
    /*height: 55px;*/
    width: 100%;
    box-shadow: 0 0 10px #979797;
    display: none;
  }
  header .current {
    color: #2B468C;
  }
  header .list-nav > li {
    font-size: 12px;
    width: 15%;
    padding: 2.5% 0px;
    margin: 0 2.5% 1.25%;
  }
  header .language-sm {
    position: absolute;
    top: 5.688888888888889vw;
    right: 4.266666666666667vw;
    z-index: 3;
    color: #000;
    cursor: pointer;
  }
  .li-nav-style {
    cursor: pointer;
    color: #707070;
  }
  .li-nav-style:hover {
    color: #2B468C;
  }
  .logo-about {
    color: #fff;
    height: 11.37777777777778vw;
    width: 38vw;
    background-image: url(../img/common/logo-about.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    top: 0;
    position: relative; 
    left: 0; 
    right: 0; 
    margin: 2.844444444444444vw auto;
    display: block;
  }
  .hide-sp {
    display: none;
  }
}

/* PAGES
 * ----------------------------------------------- */

.map-canvas {
  background: #fff;
  height: 100vh;
}

.loader, .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {            
  top: 42%;
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loadingDiv {
  position:absolute;;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:silver;
  z-index: 10000;
}

.prefecture {
  position: fixed;
  background: #fff;
}
.prefecture .prefecture-title {
  font-weight: 500;
  color: #000000;
  position: relative;
}
.prefecture .prefecture-subtitle {
  color: #000;
}
.prefecture .info {
  color: #707070;
}
.prefecture .gradient-color {
  background: #1572d6;
  background: linear-gradient(90deg, #1572d6 0%, #dfdfdf 50%, #fb4545 100%);
  height: 7px;
  border-radius: 5px;
  margin: 10px 0 35px;
  position: relative;
}
.prefecture .gradient-color .pointer {
  position: absolute;
  border: 1px solid #8EB3DC;
  border-radius: 50%;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: #8EB3DC;
  margin-top: -10px;
  margin-left: -10px;
}
.prefecture .food-info .pointer {
  border: 1px solid #E7B2B2;
  background-color: #E7B2B2;
}
.prefecture .electricity-info .pointer {
  border: 1px solid #478CD8;
  background-color: #478CD8;
}
.prefecture .gas-info .pointer {
  border: 1px solid #F75E5E;
  background-color: #F75E5E;
}
.prefecture .low,
.prefecture .average,
.prefecture .high {
  position: absolute;
  bottom: -35px;
  font-size: 13px;
  color: #707070;
}
.prefecture .low {
  left: 0;
}
.prefecture .average {
  left: 50%;
  margin-left: -25px;
}
.prefecture .high {
  right: 0;
}
.prefecture .prefecture-info {
  border-bottom: 1px solid #E6E6E6;
}
.prefecture .txt {
  color: #707070;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.carbon-setting-hide {
  display: none;
}
.prefecture-list .item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hide-content {
  display: none;
}

.wrapper img {
  width: 100%;
}

@media print, (min-width: 768px) {
  .prefecture {
    top: 0;
    left: 100px;
    width: 380px;
    min-height: 100vh;
  }
  .prefecture .prefecture-inner {
    width: 100%;
    height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .prefecture .prefecture-title {
    background: #F5F5F5;
    padding: 20px 0 20px 41px;
    font-size: 24px;
    height: auto;
  }
  .prefecture .btn-close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 32px;
    right: 35px;
    cursor: pointer;
    background: url(/img/common/btn_close.png) no-repeat center center;
    background-size: 14px 14px;
  }
  .prefecture .prefecture-subtitle {
    font-size: 16px;
    line-height: 1.56;
    margin-top: 24px;
  }
  .prefecture .info {
    font-size: 15px;
    margin-top: 16px;
  }
  .prefecture .prefecture-info {
    padding: 0 48px 19px 42px;
  }
  .prefecture .prefecture-list {
    margin-top: 25px;
  }
  .prefecture .txt {
    font-size: 15px;
    padding-left: 18px;
  }
  .btn-active-setting {
    cursor: pointer;
  }
  .prefecture-hide {
    display: none;
  }
  .footer-style {
    text-align: center;
    width: 100%;
    bottom: 5px;
    font-size: 14px;
    margin: 60px 0;
  }
  .logo {
    color: #2B468C;
    bottom: 20px;
    left: 11px;
    z-index: -1;
    height: 50px;
    width: 150px;
    position: absolute;
  }
  .section-content-map .logo {
    z-index: 10;
  }
  .logo img {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .prefecture {
    position: fixed;
    top: 63px;
    left: 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  .prefecture .prefecture-inner {
    width: 100%;
    height: calc(100vh - 63px);
    overflow-y: auto;
  }
  .prefecture .prefecture-title {
    font-size: 16px;
    padding: 26px 0 5px 19px;
  }
  .prefecture .btn-down {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 27px;
    cursor: pointer;
    background: url(/img/common/btn_down.png) no-repeat center center;
    background-size: 12px 7px;
  }
  .prefecture .prefecture-subtitle {
    font-size: 15px;
    margin-top: 18px;
  }
  .prefecture .info {
    font-size: 14px;
    margin-top: 5px;
  }
  .prefecture .gradient-color {
    margin: 10px 0 30px;
  }
  .prefecture .low,
  .prefecture .average,
  .prefecture .high {
    bottom: -30px;
    font-size: 13px;
  }
  .prefecture .prefecture-info {
    padding: 0 18px 17px 21px;
  }
  .prefecture .prefecture-list {
    margin-top: 20px;
  }
  .prefecture .txt {
    font-size: 14px;
    padding-left: 18px;
  }
  .footer-style {
    text-align: center;
    width: 100%;
    bottom: 55px;
    font-size: 14px;
    margin-bottom: 75px;
  }
}
.setting {
  position: fixed;
  box-shadow: 0 0 10px #979797;
  background: #fff;
}
.btn-close {
  cursor: pointer;
}
.setting .setting-inner {
  padding: 0 0 0 20px;
}
.setting .setting-title {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 0 15px 10px;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.setting .checkbox {
  display: block;
  padding-left: 20px;
}
.setting .checkbox input {
  display: none;
}
.setting .checkbox input:checked + span {
  background-image: url(/img/common/icn_checkbox_on.png);
}
.setting .checkbox span {
  display: inline-block;
  background: url(/img/common/icn_checkbox_off.png) no-repeat 0 center;
}
.setting .radio {
  color: #707070;
  padding-left: 15px;
}
.setting .setting-txt {
  font-size: 16px;
  color: #000;
  margin-top: 30px;
}
.setting .list {
  margin: 5px 0 0 -25px;
  padding-bottom: 20px;
}
.setting .list > li {
  font-size: 12px;
  line-height: 1.33333;
  text-align: center;
  padding: 15px 10px;
  margin: 5px;
}
.setting .list > li a {
  color: #707070;
  padding: 25px 0 0;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
}
.setting .list > li .all {
  background-image: url(/img/common/icn_all.png);
}

@media print, (min-width: 768px) {
  .setting {
    position: fixed;
    bottom: -20px;
    right: 65px;
    width: 330px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 5px 10px #979797;
    display: block!important
  }
  .setting .setting-inner {
    padding: 0 0 0 20px;
  }
  .setting .setting-title {
    font-size: 16px;
    color: #fff;
    padding: 15px 0 15px 10px;
    background: #2B468C;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
  }
  .setting .btn-active {
    position: absolute;
    top: 14px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url(/img/common/btn_active.png) no-repeat center center;
    background-size: 14px 2px;
  }
  .setting .checkbox {
    padding-left: 20px;
  }
  .setting .checkbox span {
    background-size: 20px auto;
    padding: 5px 0 5px 28px;
  }
  .setting .radio {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 15px;
  }
  .setting .setting-txt {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .setting .list {
    margin: 5px 0 0 -25px;
    padding-bottom: 20px;
    -webkit-align-items: center;
    align-items: center;
  }
  .setting .list > li {
    width: 90px;
    padding: 10px;
    margin: 0;
  }
  .setting .list > li a {
    padding: 25px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .setting {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    padding: 30px 0;
    z-index: 2;
  }
  .setting .setting-inner {
    padding: 0 0 0 20px;
  }
  .setting .setting-title {
    font-size: 16px;
    color: #000;
    padding: 0 20px;
  }
  .setting .btn-close {
    position: absolute;
    top: 14px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url(/img/common/btn_close.png) no-repeat center center;
    background-size: 14px 14px;
  }
  .setting .checkbox {
    padding-left: 20px;
  }
  .setting .checkbox span {
    background-size: 20px auto;
    padding: 5px 0 5px 28px;
  }
  .setting .radio {
    font-size: 14px;
    padding-left: 15px;
    line-height: 1.5;
  }
  .setting .setting-txt {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .setting .setting-list-outer {
    width: 100%;
    overflow-x: scroll;
  }
  .setting .list {
    margin: 0;
    padding-bottom: 0;
    width: 1000px;
    display: -webkit-flex;
    display: flex;
  }
  .setting .list > li {
    display: inline-block;
    width: 83px;
    padding: 15px 0;
    margin: 5px;
  }
  .setting .list > li a {
    padding: 25px 0 0;
  }

  .about-sm .setting-sm {
    position: absolute;
    top: 323px;
    z-index: -1;
  }
  .about-sm .about-sm {
    width: 20px;
    height: 20px;
    right: 67px;
  }
  .about-sm .setting-sm {
    width: 18px;
    height: 19px;
    right: 29px;
  }
}
.about-image {
  background: url(/img/about/img_about.jpg) no-repeat center center;
}

section {
  margin-top: 40px;
}

.sec-title {
  color: #000;
  font-weight: 600;
  margin-bottom: 18px;
}

.sec-txt {
  color: #707070;
}

.link {
  text-decoration: underline;
  list-style-type: circle;
  color: #2B468C;
}

@media print, (min-width: 768px) {
  .article-about {
    padding-left: 100px;
  }

  .about-image {
    background: url(/img/about/img_about.jpg) no-repeat center center;
    background-size: 100% auto;
    width: 100%;
    height: 165px;
  }

  section {
    margin-top: 40px;
  }

  .sec-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .sec-txt {
    font-size: 16px;
    line-height: 1.875;
  }
}
@media only screen and (max-width: 767px) {
  .article-about {
    padding-bottom: 80px;
  }
  .article-about .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-image {
    display: none;
  }

  section {
    margin-top: 32px;
  }

  .sec-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .sec-txt {
    font-size: 16px;
    line-height: 1.66667;
  }
}

@media only screen and (max-width: 767px) {
  .expand .navigation-sidebar {
    transform: translateX(0);
    z-index: 88;
  }
  .expand .overlay-menu {
    display: block;
  }
  .navigation-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 280px;
    background: #fff;
    height: 100vh;
    transition: 0.5s ease;
    padding: 54px 0 0;
    transform: translateX(-300px);
  }
  .navigation-sidebar-inner {
    padding: 0;
  }
  .navigation-sidebar-inner .menu li.disable-mouse {
    opacity: 0.6;
  }
  .navigation-sidebar-inner .menu li a {
    display: flex;
    padding: 16px;
    align-items: center;
    height: 56px;
  }
  .navigation-sidebar-inner .menu li a i {
    margin-right: 10px;
  }
  .overlay-menu {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .searchbox {
    padding-left: 16px;
  }
}

@media print, (min-width: 768px) {
  header .hamburger-btn {
    display: none !important
  }
}
@media only screen and (max-width: 767px) {
  header .hamburger-btn {
    display: block;
  }
  .expand .navigation-sidebar {
    transform: translateX(0);
    z-index: 150;
  }
  .expand .overlay-menu {
    display: block;
    z-index: 101;
  }
  .navigation-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 280px;
    background: #fff;
    height: 100vh;
    transition: 0.5s ease;
    padding: 15.28888888888888vw 0 0;
    transform: translateX(-300px);
  }
  .navigation-sidebar-inner {
    padding: 0;
  }
  .navigation-sidebar-inner .menu li.disable-mouse {
    opacity: 0.4;
  }
  .navigation-sidebar-inner .menu li a {
    display: flex;
    padding: 2.844444444444444vw 4.266666666666667vw;
    align-items: center;
    height: 9.955555555555556vw;
  }
  .navigation-sidebar-inner .menu li a i {
    margin-right: 1.777777777777778vw;
  }
  .navigation-sidebar-inner .material-icons {
    font-size: 5.688888888888889vw;
  }
  .btn-menu {
    position: absolute;
    top: 5.688888888888889vw;
    left: 4.266666666666667vw;
    width: 5.688888888888889vw;
    height: 5.688888888888889vw;
    z-index: 5;
    background: url(../img/common/btn_menu.svg) no-repeat center center;
    background-size: 100% auto;
  }
  .expand .btn-menu {
    background-image: url(../img/common/btn_close.svg);
    z-index: 155;
  }
  .overlay-menu {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
  }
}
.sec-language {
  border-top: 1px solid #E6E6E6;
  padding-top: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .searchbox {
    padding-left: 16px;
  }
  .sec-language {
    border-top: 1px solid #E6E6E6;
    padding-top: 2.844444444444444vw;
    margin-top: 2.844444444444444vw;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wrapper {
    width: 900px;
    margin-left: 72px;
  }
}

@media only screen and (min-width: 991px) and (max-width: 1100px) {
  .wrapper {
    width: 900px;
    margin-left: 72px;
  }
}