* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

a {
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #666;
}

a:hover {
  color: #9c050f;
}

html, body {
  font-weight: 400;
  margin: 0;
  scroll-behavior: smooth;
  color: #666;
}

.montserrat {
  font-family: 'Montserrat', sans-serif;
}

.mobile {
  visibility: hidden;
  height: 0;
}

.mbbr {
  display: none;
}

section {
  position: relative;
  display: block;
  min-width: 800px;
  margin: 0 auto;
  background-size: cover !important;
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrap {
  max-width: 1600px;
  margin: auto;
}

.blink {
  font-family: 'Montserrat', sans-serif;
  -webkit-animation: blink .5s ease-out alternate infinite;
          animation: blink .5s ease-out alternate infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#headerUI {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
  padding: 0 40px;
}

#headerUI .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#headerUI .wrap .logo {
  display: block;
  -ms-flex-preferred-size: 140px;
      flex-basis: 140px;
}

#headerUI .wrap .logo img {
  display: block;
}

#headerUI .wrap > nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#headerUI .mainNav .logo_mb_nav {
  display: none;
}

#headerUI .mainNav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 18px;
}

#headerUI .mainNav > ul > li {
  margin-left: 20px;
  height: 64px;
  line-height: 64px;
  position: relative;
}

#headerUI .mainNav > ul > li .btnSubmenu {
  display: none;
}

#headerUI .mainNav > ul > li::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  background: #9c050f;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#headerUI .mainNav > ul > li.active::after, #headerUI .mainNav > ul > li:hover::after {
  opacity: 1;
}

#headerUI .mainNav > ul > li .subNav {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 2;
  background: #9c050f;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 220px;
  padding: 16px;
  line-height: 40px;
}

#headerUI .mainNav > ul > li .subNav a {
  display: block;
  color: #fff;
  padding: 0 16px;
}

#headerUI .mainNav > ul > li .subNav a:hover {
  background: #86040e;
}

#headerUI .mainNav > ul > li:hover .subNav {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#headerUI .snslink a {
  display: block;
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -1000px;
  -webkit-filter: saturate(0);
          filter: saturate(0);
}

#headerUI .snslink a:hover {
  -webkit-filter: saturate(1);
          filter: saturate(1);
}

#headerUI .snslink a.sns_u {
  opacity: .6;
}

#headerUI .snslink a.sns_u:hover {
  opacity: 1;
}

#headerUI .langBtn {
  color: #adadad;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  position: relative;
}

#headerUI .langBtn .langTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  font-size: .9em;
}

#headerUI .langBtn .langTxt svg {
  margin: -2px 0 0 4px;
  fill: #adadad;
  width: 16px;
  height: 16px;
}

#headerUI .langBtn .langlist {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: absolute;
  width: 100%;
  background: #fff;
  font-size: .8em;
}

#headerUI .langBtn .langlist a {
  display: block;
  padding: 4px 10px;
  color: #adadad;
}

#headerUI .langBtn .langlist a:hover {
  color: #222222;
}

#headerUI .langBtn:hover .langlist {
  visibility: visible;
  opacity: 1;
}

#headerUI .btnNavToggle {
  display: none;
}

footer {
  background: #fff;
  -webkit-box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.1);
}

footer > .wrap {
  padding: 0 40px;
  height: 80px;
}

footer > .wrap .copyright {
  font-size: 17px;
  font-weight: 300;
  color: #adadad;
  text-align: right;
}

footer .footer_link {
  border-top: 1px #e9e9e9 solid;
}

footer .footer_link ul {
  max-width: 1600px;
  padding: 0 40px;
  margin: auto;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer_link ul li {
  margin-left: 40px;
}

footer .footer_link ul li a {
  display: block;
  font-size: .9em;
  font-weight: 300;
  padding: 14px 0;
  color: #adadad;
}

footer .footer_link ul li a:hover {
  color: #666;
}

footer .footer_langSelect {
  display: none;
}

input[type=text], input[type=password], input[type=number], input[type=email], input[type=search], input[type=file], textarea {
  display: inline-block;
  border: 2px #222222 solid;
  padding: 8px;
  font-size: 16px;
  margin-right: 2px;
  width: calc(100% - 160px);
  min-width: 400px;
  resize: none;
}

input[type=file] {
  width: auto;
}

.subpage button {
  display: inline-block;
  background: #222222;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.subpage button:hover {
  background: #9c050f;
  padding: 16px 48px;
}

.select_wrapper {
  display: inline-block;
  position: relative;
}

.select_wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 2px #222222 solid;
  padding: 10px 40px 11px 8px;
  font-size: 16px;
  margin-right: 2px;
  position: relative;
  z-index: 2;
}

.select_wrapper::after {
  content: '\f078';
  font-family: FontAwesome;
  position: absolute;
  display: block;
  color: #adadad;
  font-size: 12px;
  top: 12px;
  right: 14px;
  z-index: 1;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=checkbox]:checked + label, input[type=radio]:checked + label {
  color: #9c050f;
  font-weight: 700;
}

input[type=checkbox]:checked + label::after, input[type=radio]:checked + label::after {
  background: #222222;
}

.ui_checkbox, .ui_radio {
  display: inline-block;
  position: relative;
  padding: 8px 8px 8px 22px;
  margin-right: 8px;
  cursor: pointer;
}

.ui_checkbox::after, .ui_radio::after {
  position: absolute;
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  top: 11px;
  left: 0;
  border: 2px #222222 solid;
}

.ui_radio::after {
  border-radius: 10px;
}

/*screen resolutions lower than 1024px*/
@media all and (max-width: 1024px) {
  section {
    min-width: auto;
    min-height: auto;
  }
  .desk {
    visibility: hidden;
    height: 0;
  }
  .mobile {
    visibility: visible;
    height: auto;
  }
  #headerUI {
    padding: 0;
  }
  #headerUI .wrap {
    height: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #headerUI .wrap .logo {
    display: block;
    -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
    padding: 16px 0;
    margin-left: 4%;
  }
  #headerUI .wrap .logo img {
    display: block;
  }
  #headerUI .nav_right {
    width: 100%;
    padding: 0 1%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    background: #f3f3f3;
  }
  #headerUI .mainNav {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    position: absolute;
    top: 0;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
  }
  #headerUI .mainNav .logo_mb_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 24px;
  }
  #headerUI .mainNav .logo_mb_nav img {
    display: block;
    max-width: 40vw;
  }
  #headerUI .mainNav .logo_mb_nav .btnNavClose {
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
  }
  #headerUI .mainNav > ul {
    padding: 3vw;
    display: block;
    background: #9c050f;
    width: 80vw;
    height: 100vh;
    font-size: 24px;
  }
  #headerUI .mainNav > ul > li {
    width: 74vw;
    margin: 0 0 16px;
    height: auto;
    line-height: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #headerUI .mainNav > ul > li a {
    color: #fff;
  }
  #headerUI .mainNav > ul > li .btnSubmenu {
    display: block;
    position: relative;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    margin-left: 16px;
    width: 40px;
    height: 20px;
    border-radius: 20px;
  }
  #headerUI .mainNav > ul > li .btnSubmenu::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    border: 2px #fff solid;
    border-top: none;
    border-left: none;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  #headerUI .mainNav > ul > li::after {
    display: none;
  }
  #headerUI .mainNav > ul > li .subNav {
    display: none;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
    background: #b60200;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    height: auto !important;
    padding: 16px;
    line-height: 40px;
  }
  #headerUI .mainNav > ul > li .subNav li {
    display: block;
  }
  #headerUI .mainNav > ul > li .subNav a {
    font-size: 20px;
    color: #fff;
    padding: 0 16px;
  }
  #headerUI .mainNav > ul > li .subNav a:hover {
    background: #86040e;
  }
  #headerUI .mainNav > ul > li.unfold .subNav {
    display: block;
  }
  #headerUI .langBtn {
    display: none;
  }
  #headerUI .btnNavToggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 2%;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-radius: 8px;
    cursor: pointer;
  }
  #headerUI .btnNavToggle .bar {
    -webkit-transition: all .2s;
    transition: all .2s;
    display: block;
    position: absolute;
    background: #adadad;
    width: 35%;
    height: 5%;
    right: 25%;
    top: 30%;
  }
  #headerUI .btnNavToggle .bar.b2 {
    top: 40%;
    width: 50%;
  }
  #headerUI .btnNavToggle .bar.b3 {
    top: 50%;
  }
  #headerUI .btnNavToggle .bar.b4 {
    top: 60%;
    width: 50%;
  }
  #headerUI .btnNavToggle:hover {
    background: #f3f3f3;
  }
  #headerUI .btnNavToggle:hover .bar {
    background: #666;
    width: 50%;
  }
  #headerUI.unfold .btnNavToggle {
    background: #f3f3f3;
  }
  #headerUI.unfold .btnNavToggle .bar {
    background: #222222;
    width: 50%;
  }
  #headerUI.unfold .mainNav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  footer > .wrap {
    padding: 0 4%;
    height: 90px;
  }
  footer > .wrap .footer_logo {
    max-width: 20%;
  }
  footer > .wrap .copyright {
    font-size: 14px;
  }
  footer .footer_link {
    padding: 0 4%;
  }
  footer .footer_link ul li {
    margin-left: 16px;
  }
  footer .footer_link ul li a {
    font-size: .8em;
  }
  footer .footer_langSelect {
    display: block;
    background: #f3f3f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: 1px #e9e9e9 solid;
    padding: 16px;
  }
  footer .footer_langSelect a {
    display: block;
    font-size: 14px;
    border: 1px #e9e9e9 solid;
    background: #fff;
    padding: 4px 8px;
    margin: 0 2px;
    color: #adadad;
  }
}

/*screen resolutions lower than 768px*/
@media all and (max-width: 768px) {
  .mbbr {
    display: block;
  }
  #headerUI .wrap .logo {
    -ms-flex-preferred-size: 25vw;
        flex-basis: 25vw;
    padding: 8px 0;
  }
  #headerUI .wrap .logo img {
    width: 100%;
  }
  #headerUI .snslink a {
    width: 24px;
    height: 24px;
    background-size: contain;
    margin: 4px;
  }
  #headerUI .mainNav .logo_mb_nav {
    margin-bottom: 16px;
  }
  #headerUI .mainNav .logo_mb_nav img {
    max-width: 24vw;
  }
  #headerUI .mainNav .logo_mb_nav .btnNavClose {
    font-size: 20px;
  }
  #headerUI .mainNav > ul {
    padding: 6vw;
    font-size: 19px;
  }
  #headerUI .mainNav > ul > li {
    width: 68vw;
    margin: 0 0 12px;
  }
  #headerUI .mainNav > ul > li .btnSubmenu::after {
    -webkit-transform: translate(-60%, -60%) rotate(45deg);
            transform: translate(-60%, -60%) rotate(45deg);
  }
  #headerUI .mainNav > ul > li .subNav {
    padding: 12px;
  }
  #headerUI .mainNav > ul > li .subNav a {
    font-size: 18px;
    padding: 0 16px;
  }
  footer > .wrap {
    display: block;
    padding: 2%;
    height: auto;
    text-align: center;
  }
  footer > .wrap .footer_logo {
    max-width: 50%;
    margin: 16px auto 12px;
  }
  footer > .wrap .copyright {
    font-size: 12px;
    text-align: center;
  }
  footer .footer_link {
    padding: 2%;
  }
  footer .footer_link ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer_link ul li {
    margin: 0 2px;
  }
  footer .footer_link ul li a {
    padding: 2px;
  }
  footer .footer_langSelect {
    display: block;
    background: #f3f3f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: 1px #e9e9e9 solid;
    padding: 16px;
  }
  footer .footer_langSelect a {
    display: block;
    font-size: 14px;
    border: 1px #e9e9e9 solid;
    background: #fff;
    padding: 4px 8px;
    margin: 0 2px;
    color: #adadad;
  }
  input[type=text], input[type=password], input[type=number], input[type=email], input[type=date], input[type=file], input[type=search], textarea {
    margin-right: 0;
    width: 100%;
    min-width: 100%;
  }
  input[type=checkbox], input[type=radio] {
    position: absolute;
    opacity: 0;
  }
  input[type=checkbox]:checked + label::after, input[type=radio]:checked + label::after {
    background: #222222;
  }
  .ui_checkbox, .ui_radio {
    padding: 8px 8px 0 22px;
  }
  .subpage button {
    display: block;
    width: 100%;
  }
}
/*# sourceMappingURL=common.css.map */