@charset "UTF-8";
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-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/*————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————

transform: translate(180px,180px) rotate(-5deg) scale(0.8);
--------------------------------------------------------
transition:all 0.3s ease;

--------------------------------------------------------
animation: fade-In 5s linear 2s infinite;

animation-name:fade-In;
animation-duration:4s;
animation-delay:0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function:ease-in-out;
animation-fill-mode:forwards;


@keyframes fade-In {
  from {background-color: red;}
  to {background-color: yellow;}
}
--------------------------------------------------------
border-radius: 25% 10%;
--------------------------------------------------------
http://cubic-bezier.com





————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*/
.header_include {
  z-index: 500;
  position: relative;
  width: 100%;
  top: 0px;
  height: 60px;
}

.header_include .nav {
  display: none;
  position: fixed;
  top: 0px;
  width: 100%;
}

.header_include .nav .nav__bg {
  z-index: 999;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.header_include .nav #nav_hamber_switch {
  display: none;
}

.header_include .nav .nav_hamber {
  z-index: 9999;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 23px;
  padding-left: 21px;
  padding-right: 21px;
  padding-bottom: 23px;
}

.header_include .nav .nav_hamber span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #d70c19;
}

.header_include .nav .nav_hamber span:not(:last-child) {
  margin-bottom: 5px;
}

.header_include .nav .nav_hamber span:nth-child(2) {
  width: 18px;
  padding-left: 1px;
  padding-right: 1px;
}

.header_include .nav #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(1) {
  -webkit-transform: translate(0px, 7px) rotate(45deg);
          transform: translate(0px, 7px) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.header_include .nav #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(2) {
  opacity: 0.0;
}

.header_include .nav #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(3) {
  -webkit-transform: translate(0px, -7px) rotate(-45deg);
          transform: translate(0px, -7px) rotate(-45deg);
}

.header_include .nav #nav_hamber_switch:checked ~ .nav__inner {
  display: block;
  top: 0px;
}

.header_include .nav #nav_hamber_switch:checked ~ .nav__inner .nav__list {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.header_include .nav .nav__logo {
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 17px;
  left: 50%;
  margin-left: -59px;
}

.header_include .nav .nav__logo .nav__logo__img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 118px;
  height: auto;
}

.header_include .nav .nav__logo .nav__logo__img-s {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
  width: 32px;
  height: auto;
}

.header_include .nav .nav__inner {
  position: absolute;
  top: -100vh;
  left: 0px;
  width: 100%;
  display: block;
  height: 100vh;
  padding-bottom: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header_include .nav .nav__inner .nav__list {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 100;
  position: relative;
  top: 0px;
  margin-top: 60px;
  background-color: #FFF;
  overflow: scroll;
  width: 100%;
  display: block;
  height: calc(100vh - 60px);
}

.header_include .nav .nav__inner .nav__list .nav__list__inner input[type="checkbox"] {
  display: none;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner input[type="checkbox"]:checked ~ .nav__list__inner__sub {
  opacity: 1;
  height: auto;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner input[type="checkbox"]:checked + .li .nav__status span {
  width: 20px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li {
  text-align: center;
  color: #000;
  width: 100%;
  display: block;
  position: relative;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
  height: 90px;
  width: 100%;
  display: block;
  text-align: center;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 {
  line-height: 26px;
  font-size: 17px;
  font-weight: 600;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 img {
  width: 116px;
  height: auto;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h2 {
  font-size: 14px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item .nav__links {
  padding-top: 0px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
  width: 100%;
  height: 90px;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #000;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links h1 {
  line-height: 26px;
  font-size: 17px;
  font-weight: 600;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links h2 {
  font-size: 14px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__line {
  margin-left: 8%;
  margin-right: 8%;
  background-color: #f0f0f0;
  width: 84%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 45px;
  right: 45px;
  width: 0px;
  height: 2px;
  background-color: #5d5d5d;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 0px;
  opacity: 1;
  position: relative;
  width: 100%;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(163, 20, 34, 0.9);
}

@-webkit-keyframes activityBtnColorAni {
  0% {
    background-color: rgba(245, 209, 211, 0);
    color: #fff;
  }
  50% {
    background-color: #f5d1d3;
    color: #a31422e6;
  }
  100% {
    background-color: rgba(245, 209, 211, 0);
    color: #fff;
  }
}

@keyframes activityBtnColorAni {
  0% {
    background-color: rgba(245, 209, 211, 0);
    color: #fff;
  }
  50% {
    background-color: #f5d1d3;
    color: #a31422e6;
  }
  100% {
    background-color: rgba(245, 209, 211, 0);
    color: #fff;
  }
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub .activityBtn {
  background-color: #f5d2d4;
  -webkit-animation-name: activityBtnColorAni;
          animation-name: activityBtnColorAni;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: #fff;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"] {
  display: none;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 35px;
  right: 45px;
  width: 0px;
  height: 2px;
  background-color: #FFF;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"]:checked ~ .nav__list__inner__3th {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  height: auto;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"]:checked ~ .li .nav__sub__status span {
  width: 20px;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li a {
  position: relative;
  display: block;
  text-decoration: none;
  width: 100%;
  line-height: 70px;
  height: 70px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__item__sub {
  display: block;
  width: 100%;
  line-height: 70px;
  height: 70px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th {
  opacity: 1;
  height: 0;
  position: relative;
  width: 100%;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #c8727a;
  overflow: hidden;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th .nav__list__inner__3th__line {
  display: none;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li a {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item {
  padding-top: 15px;
}

.header_include .nav .nav__inner .nav__list .nav__list__extra {
  display: block;
}

.header_include .nav .nav__inner .nav__list .nav__list__extra a {
  line-height: 80px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #cc2027;
  font-size: 18px;
  font-weight: 600;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header_include .nav .nav__inner .nav__list .nav__list__extra a img {
  display: inline-block;
  vertical-align: middle;
}

.header_include .nav .nav__inner .nav__search {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  position: absolute;
  top: 0px;
  text-align: center;
  padding-top: 14px;
}

.header_include .nav .nav__inner .nav__search input {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 20px;
  width: 210px;
  height: 34px;
  border-radius: 17px;
  border: solid 1px #c2c2c2;
  background-color: #f1f1f1;
  font-size: 14px;
  color: #4b4b4b;
}

.header_include .nav .nav__inner .nav__search button {
  margin-left: -43px;
  cursor: pointer;
  vertical-align: middle;
  background-color: transparent;
  border: 0px;
  outline: none;
}

.header_include .nav_sp {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 60px;
}

.header_include .nav_sp .nav__bg {
  z-index: 999;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.header_include .nav_sp #nav_hamber_switch {
  display: none;
}

.header_include .nav_sp .nav_hamber {
  z-index: 9999;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 23px;
  padding-left: 21px;
  padding-right: 21px;
  padding-bottom: 23px;
}

.header_include .nav_sp .nav_hamber span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #d70c19;
}

.header_include .nav_sp .nav_hamber span:not(:last-child) {
  margin-bottom: 5px;
}

.header_include .nav_sp .nav_hamber span:nth-child(2) {
  width: 18px;
  padding-left: 1px;
  padding-right: 1px;
}

.header_include .nav_sp #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(1) {
  -webkit-transform: translate(0px, 7px) rotate(45deg);
          transform: translate(0px, 7px) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.header_include .nav_sp #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(2) {
  opacity: 0.0;
}

.header_include .nav_sp #nav_hamber_switch:checked ~ .nav_hamber span:nth-child(3) {
  -webkit-transform: translate(0px, -7px) rotate(-45deg);
          transform: translate(0px, -7px) rotate(-45deg);
}

.header_include .nav_sp #nav_hamber_switch:checked ~ .nav__inner {
  display: block;
  top: 0px;
}

.header_include .nav_sp #nav_hamber_switch:checked ~ .nav__inner .nav__list {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.header_include .nav_sp .nav__logo {
  z-index: 1001;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
}

.header_include .nav_sp .nav__logo > a {
    display: block;
}

.header_include .nav_sp .nav__logo .nav__logo__img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.header_include .nav_sp .nav__inner {
  position: absolute;
  top: -100vh;
  left: 0px;
  width: 100%;
  display: block;
  height: 100vh;
  padding-bottom: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header_include .nav_sp .nav__inner .nav__list {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 100;
  position: relative;
  top: 0px;
  margin-top: 60px;
  background-color: #FFF;
  overflow: scroll;
  width: 100%;
  display: block;
  height: calc(100vh - 60px);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner input[type="checkbox"] {
  display: none;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner input[type="checkbox"]:checked ~ .nav__list__inner__sub {
  opacity: 1;
  height: auto;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner input[type="checkbox"]:checked + .li .nav__status span:nth-child(2) {
  -webkit-transform: translate(0px, 0px) rotate(0deg);
          transform: translate(0px, 0px) rotate(0deg);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li {
  text-align: center;
  color: #000;
  width: 100%;
  display: block;
  position: relative;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
  height: 90px;
  width: 100%;
  display: block;
  text-align: center;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 {
  line-height: 26px;
  font-size: 17px;
  font-weight: 600;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 img {
  width: 116px;
  height: auto;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h2 {
  font-size: 14px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item .nav__links {
  padding-top: 0px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
  width: 100%;
  height: 90px;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #000;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links h1 {
  line-height: 26px;
  font-size: 17px;
  font-weight: 600;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links h2 {
  font-size: 14px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__line {
  margin-left: 8%;
  margin-right: 8%;
  background-color: #f0f0f0;
  width: 84%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status {
  width: 100%;
  height: 90px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 45px;
  right: 45px;
  width: 15px;
  height: 2px;
  background-color: #5d5d5d;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status span:nth-child(2) {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 15px;
  -webkit-transform: translate(0px, 0px) rotate(90deg);
          transform: translate(0px, 0px) rotate(90deg);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 0px;
  opacity: 1;
  position: relative;
  width: 100%;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(163, 20, 34, 0.9);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"] {
  display: none;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 140px;
  left: 0px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 35px;
  right: 45px;
  width: 15px;
  height: 2px;
  background-color: #FFF;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status span:nth-child(2) {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 15x;
  -webkit-transform: translate(0px, 0px) rotate(90deg);
          transform: translate(0px, 0px) rotate(90deg);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"]:checked ~ .nav__list__inner__3th {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  height: auto;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"]:checked ~ div .nav__sub__status span:nth-child(2) {
  -webkit-transform: translate(0px, 0px) rotate(0deg);
          transform: translate(0px, 0px) rotate(0deg);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li input[type="checkbox"]:checked ~ .li .nav__sub__status span:nth-child(2) {
  -webkit-transform: translate(0px, 0px) rotate(0deg);
          transform: translate(0px, 0px) rotate(0deg);
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li a {
  display: block;
  text-decoration: none;
  width: 100%;
  line-height: 70px;
  height: 70px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__item__sub {
  display: block;
  width: 100%;
  line-height: 70px;
  height: 70px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th {
  opacity: 1;
  height: 0;
  position: relative;
  width: 100%;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #c8727a;
  overflow: hidden;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th .nav__list__inner__3th__line {
  display: none;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li a {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #FFF;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item {
  padding-top: 15px;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__extra {
  display: block;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__extra a {
  line-height: 80px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #cc2027;
  font-size: 18px;
  font-weight: 600;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header_include .nav_sp .nav__inner .nav__list .nav__list__extra a img {
  display: inline-block;
  vertical-align: middle;
}

.header_include .nav_sp .nav__search {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 60px;
  z-index: 1000;
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: center;
  padding-top: 16px;
}

.header_include .nav_sp .nav__search input {
  display: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 20px;
  width: 210px;
  height: 34px;
  border-radius: 17px;
  border: solid 1px #c2c2c2;
  background-color: #f1f1f1;
  font-size: 14px;
  color: #4b4b4b;
}

.header_include .nav_sp .nav__search button {
  margin-left: 0;
  cursor: pointer;
  vertical-align: middle;
  background-color: transparent;
  border: 0px;
  outline: none;
}

.header_include .nav_sp .lang_btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  position: relative;
}

.header_include .nav_sp .lang_btn a {
  display: block;
  padding: 5px;
  text-decoration: none;
}

.header_include .nav_sp .lang_btn a div {
  padding: 7px;
  background-color: #a6a6a6;
  color: #FFF;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 100px auto;
}

@-webkit-keyframes activityBtnMoveAni {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes activityBtnMoveAni {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

.newsIcon::before {
  content: "New!";
  position: absolute;
  top: 23px;
  left: 50%;
  margin-left: -100px;
  width: 50px;
  height: 20px;
  background-color: #fffb00;
  color: #ff0000;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-animation: activityBtnMoveAni 0.3s ease-in-out infinite alternate;
          animation: activityBtnMoveAni 0.3s ease-in-out infinite alternate;
}

@media only screen and (min-width: 360px) {
  .header_include .nav .nav__inner .nav__search input {
    width: 230px;
  }
}

@media only screen and (min-width: 1025px) {
  .header_include {
    height: 83px;
  }
  .header_include .nav {
    height: 83px;
    display: block;
  }
  .header_include .nav .nav__bg {
    height: 83px;
  }
  .header_include .nav .nav_hamber {
    display: none;
  }
  .header_include .nav .nav__logo {
    top: 50%;
    transform: translateY(-50%);
    margin-left: -500px;
    width: 150px;
  }
  .header_include .nav .nav__logo > a {
    display: block;
  }
  .header_include .nav .nav__logo .nav__logo__img {
    width: 100%;
  }
  .header_include .nav .nav__inner {
    top: 0px;
    z-index: 999;
    display: block;
    height: auto;
    padding-bottom: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header_include .nav .nav__inner .nav__list {
    z-index: 999;
    margin-top: 0px;
    background-color: unset;
    overflow: unset;
    height: auto;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner {
    width: 100%;
    position: relative;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap {
    float: left;
    width: unset;
    display: inline-block;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li {
    width: 120px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item {
    height: 83px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 img {
    width: 116px;
    height: auto;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h2 {
    font-size: 14px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links {
    height: 83px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__line {
    display: none;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status {
    display: none;
    height: 83px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub {
    overflow: visible;
    display: none;
    height: 90px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: 0px;
    width: 100%;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status {
    width: 120px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li a {
    display: inline-block;
    float: left;
    width: 120px;
    line-height: 90px;
    height: 90px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__item__sub {
    line-height: 90px;
    height: 90px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th {
    opacity: 0;
    height: 0;
    position: relative;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
    background-color: rgba(163, 20, 34, 0.9);
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th .nav__list__inner__3th__line {
    display: block;
    width: 1200px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -600px;
    height: 1px;
    background-color: #FFF;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li {
    width: 120px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li a {
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    color: #FFF;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub .nav__list__item__wrap__sub:hover .nav__list__inner__3th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 90px;
    left: 0px;
    height: 90px;
    opacity: 1;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item {
    padding-top: 15px;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item h2 {
    color: #d70c19;
    font-size: 12px;
    font-weight: 400;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:hover .nav__list__inner__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    opacity: 1;
  }
  .header_include .nav .nav__inner .nav__list .nav__list__extra {
    display: none;
  }
  .header_include .nav .nav__inner .nav__search {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    width: 290px;
    left: unset;
    right: 50%;
    margin-right: -520px;
    padding-top: 36px;
  }
  .header_include .nav .nav__inner .nav__search .lang_btn {
    display: block;
    position: absolute;
    top: 32px;
    left: 0px;
  }
  .header_include .nav .nav__inner .nav__search .lang_btn a {
    display: block;
    padding: 5px;
    text-decoration: none;
  }
  .header_include .nav .nav__inner .nav__search .lang_btn a div {
    padding: 7px;
    background-color: #a6a6a6;
    color: #FFF;
  }
  .header_include .nav .nav__inner .nav__search input[type="text"] {
    margin-left: 50px;
  }
  .header_include .nav_sp {
    display: none;
  }
  .header_include .nav_sp .nav__bg {
    height: 83px;
  }
  .header_include .nav_sp .nav_hamber {
    display: none;
  }
  .header_include .nav_sp .nav__logo {
    top: 25px;
    margin-left: -500px;
  }
  .header_include .nav_sp .nav__logo .nav__logo__img {
    width: 154px;
  }
  .header_include .nav_sp .nav__inner {
    top: 0px;
    z-index: 999;
    display: block;
    height: auto;
    padding-bottom: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header_include .nav_sp .nav__inner .nav__list {
    z-index: 999;
    margin-top: 0px;
    background-color: unset;
    overflow: unset;
    height: auto;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner {
    width: 100%;
    position: relative;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap {
    float: left;
    width: unset;
    display: inline-block;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li {
    width: 120px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item {
    height: 83px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h1 img {
    width: 116px;
    height: auto;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__list__item h2 {
    font-size: 14px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__links {
    height: 83px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__line {
    display: none;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .li .nav__status {
    display: none;
    height: 83px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub {
    overflow: visible;
    display: none;
    height: 90px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: 0px;
    width: 100%;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__sub__status {
    width: 120px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li a {
    display: inline-block;
    float: left;
    width: 120px;
    line-height: 90px;
    height: 90px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__item__sub {
    line-height: 90px;
    height: 90px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th {
    opacity: 0;
    height: 0;
    position: relative;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0);
    background-color: rgba(163, 20, 34, 0.9);
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th .nav__list__inner__3th__line {
    display: block;
    width: 1200px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -600px;
    height: 1px;
    background-color: #FFF;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li {
    width: 120px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub li .nav__list__inner__3th li a {
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    color: #FFF;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap .nav__list__inner__sub .nav__list__item__wrap__sub:hover .nav__list__inner__3th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 90px;
    left: 0px;
    height: 90px;
    opacity: 1;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item {
    padding-top: 15px;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:nth-child(3) .li .nav__list__item h2 {
    color: #d70c19;
    font-size: 12px;
    font-weight: 400;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__inner .nav__list__item__wrap:hover .nav__list__inner__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    opacity: 1;
  }
  .header_include .nav_sp .nav__inner .nav__list .nav__list__extra {
    display: none;
  }
  .header_include .nav_sp .nav__inner .nav__search {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    width: 240px;
    left: unset;
    right: 50%;
    margin-right: -520px;
    padding-top: 36px;
  }
  .newsIcon::before {
    top: 23px;
    left: -30px;
    margin: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .header_include .nav .nav__inner .nav__search {
    margin-right: -600px;
  }
}

@media only screen and (min-width: 1400px) {
  .header_include .nav .nav__logo {
    margin-left: -650px;
  }
  .header_include .nav .nav__inner .nav__search {
    margin-right: -650px;
  }
}

/*————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————

transform: translate(180px,180px) rotate(-5deg) scale(0.8);
--------------------------------------------------------
transition:all 0.3s ease;

--------------------------------------------------------
animation: fade-In 5s linear 2s infinite;

animation-name:fade-In;
animation-duration:4s;
animation-delay:0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function:ease-in-out;
animation-fill-mode:forwards;


@keyframes fade-In {
  from {background-color: red;}
  to {background-color: yellow;}
}
--------------------------------------------------------
border-radius: 25% 10%;
--------------------------------------------------------
http://cubic-bezier.com





————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*/
.footer_include {
  width: 100%;
  position: relative;
}

.footer_include .footer_inner {
  width: 100%;
  position: relative;
}

.footer_include .footer_inner .footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #e2e2e2;
  height: 120px;
  width: 100%;
}

.footer_include .footer_inner .footer__email .footer__email__inner {
  padding-top: 40px;
  height: 40px;
  margin-left: 220px;
}

.footer_include .footer_inner .footer__email .footer__email__inner lable {
  line-height: 40px;
  font-size: 24px;
  color: #000;
  font-weight: 800;
  vertical-align: middle;
  padding-right: 20px;
  padding-left: 20px;
}

.footer_include .footer_inner .footer__email .footer__email__inner input[type="email"] {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 370px;
  height: 40px;
  background-color: #FFF;
  outline: none;
  border: 0px;
  font-size: 24px;
}

.footer_include .footer_inner .footer__email .footer__email__inner button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 180px;
  height: 50px;
  border-radius: 2px;
  background-color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  color: #FFF;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 20px;
  border: 1px solid #000;
}

.footer_include .footer_inner .footer__email .footer__email__inner button .button__icon {
  display: inline-block;
  padding-right: 20px;
  vertical-align: middle;
}

.footer_include .footer_inner .footer__email .footer__email__inner button:hover {
  border: 1px solid #FFF;
}

.footer_include .footer_inner .footer__menu {
  width: 100%;
  background-color: #f1f1f1;
  padding-top: 20px;
  padding-bottom: 40px;
}

.footer_include .footer_inner .footer__menu .footer_logo {
  width: 100%;
  height: auto;
  max-width: 250px;
}

.footer_include .footer_inner .footer__menu .footer__ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li {
  display: none;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__sub__li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 28px;
  display: block;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .button a {
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 180px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 2px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.15);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-24%, #ed1c36), to(#d70c19));
  background-image: linear-gradient(to bottom, #ed1c36 -24%, #d70c19);
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 20px;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .button a .button__icon {
  padding-right: 20px;
  vertical-align: middle;
  display: inline-block;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .button a:hover {
  border: 1px solid #FFF;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__link__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #cc2027;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__link__title a {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #cc2027;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__info a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.footer_include .footer_inner .footer__menu .footer__ul .sp {
  display: inline-block;
}

.footer_include .footer_inner .footer__bottom {
  width: 100%;
  background-color: #d70c19;
}

.footer_include .footer_inner .footer__bottom .footer__links {
  width: 100%;
  padding-bottom: 15px;
  padding-top: 20px;
}

.footer_include .footer_inner .footer__bottom .footer__links ul {
  width: 100%;
  text-align: left;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li {
  line-height: 22px;
  display: inline-block;
  min-width: 100px;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  text-decoration: none;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li a:hover {
  color: #393939;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  margin: 0px;
  width: 1px;
  height: 18px;
  line-height: 18px;
  vertical-align: middle;
  background-color: #FFF;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li:nth-child(3):after {
  display: none;
}

.footer_include .footer_inner .footer__bottom .footer__links ul li:nth-child(6):after {
  display: none;
}

.footer_include .footer_inner .footer__bottom .footer__copyright {
  color: #c2c2c2;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
  padding-bottom: 8px;
  padding-top: 15px;
}

@media only screen and (min-width: 360px) {
  .footer_include .footer_inner .footer__bottom .footer__links ul li {
    min-width: 110px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li a {
    min-width: 110px;
  }
}

@media only screen and (min-width: 375px) {
  .footer_include .footer_inner .footer__bottom .footer__links ul li {
    min-width: 115px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li a {
    min-width: 115px;
  }
}

@media only screen and (min-width: 414px) {
  .footer_include .footer_inner .footer__bottom .footer__links ul li {
    min-width: 125px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li a {
    min-width: 125px;
  }
}

@media only screen and (min-width: 415px) {
  .footer_include .footer_inner .footer__bottom .footer__links ul li:nth-child(3):after {
    display: inline-block;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li:nth-child(6):after {
    display: inline-block;
  }
}

@media only screen and (min-width: 1025px) {
  .footer_include .footer_inner .footer__email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer_include .footer_inner .footer__menu {
    width: 100%;
  }
  .footer_include .footer_inner .footer__menu .footer__ul {
    width: 1020px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer_include .footer_inner .footer__menu .footer__ul .sp {
    display: inline-block;
  }
  .footer_include .footer_inner .footer__menu .footer__ul .footer__li {
    display: inline-block;
    width: 20%;
  }
  .footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__info {
    width: 240px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul {
    text-align: center;
  }
}

@media only screen and (min-width: 1100px) {
  .footer_include .footer_inner .footer__email .footer__email__inner {
    margin-left: 235px;
  }
  .footer_include .footer_inner .footer__email .footer__email__inner input[type="email"] {
    width: 430px;
  }
  .footer_include .footer_inner .footer__menu .footer__ul {
    width: 1100px;
  }
  .footer_include .footer_inner .footer__menu .footer__ul .footer__li .footer__sub__ul .footer__info {
    width: 240px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul {
    text-align: center;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li {
    min-width: 145px;
  }
  .footer_include .footer_inner .footer__bottom .footer__links ul li a {
    min-width: 145px;
  }
}

/*————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————

transform: translate(180px,180px) rotate(-5deg) scale(0.8);
--------------------------------------------------------
transition:all 0.3s ease;

--------------------------------------------------------
animation: fade-In 5s linear 2s infinite;

animation-name:fade-In;
animation-duration:4s;
animation-delay:0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function:ease-in-out;
animation-fill-mode:forwards;


@keyframes fade-In {
  from {background-color: red;}
  to {background-color: yellow;}
}
--------------------------------------------------------
border-radius: 25% 10%;
--------------------------------------------------------
http://cubic-bezier.com





————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*/
.loadingPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.loadingPage__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100vh;
  margin-left: -25%;
  background-color: #a31422;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.loadingPage__bar {
  position: relative;
  width: 6%;
  height: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.loadingPage__bar::after {
  content: " ";
  display: inline-block;
  width: 100%;
  -webkit-transform: translateX(-122%);
  transform: translateX(-122%);
  height: 2px;
  background: #fff;
  -webkit-animation: animationlineHoverforwards 1.2s cubic-bezier(0.58, 0.3, 0.005, 1) 0s infinite alternate;
  animation: animationlineHoverforwards 1.2s cubic-bezier(0.58, 0.3, 0.005, 1) 0s infinite alternate;
}

@-webkit-keyframes animationlineHoverforwards {
  0% {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(122%);
    transform: translateX(122%);
  }
  70.01% {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
  to {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
}

@keyframes animationlineHoverforwards {
  0% {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(122%);
    transform: translateX(122%);
  }
  70.01% {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
  to {
    -webkit-transform: translateX(-122%);
    transform: translateX(-122%);
  }
}

@media screen and (max-width: 1024px) {
  .loadingPage__bar {
    width: 12%;
  }
}

@media screen and (max-width: 767px) {
  .loadingPage__bar {
    width: 16%;
  }
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans TC Thin"), local("NotoSansTC-Thin"), url(/assets/fonts/-nFlOG829Oofr2wohFbTp9i9WyEKSehbzKSBjgyYqEML3A_ajbajwVJ5kTuPLNzqyAbPohbs.0.woff2) format("woff2");
}

body,
html,
select,
button,
textarea {
  font-family: 'Noto Sans TC', 'Heiti TC', STHeiti, HelveticaNeueLTPro-Hv, 微軟正黑體, 'Microsoft JhengHei', sans-serif;
}

textarea {
  width: 100%;
}

i {
  display: inline-block;
}

i img {
  width: 50px;
  height: 40px;
}

.dark {
  background-color: #000000;
}

.tab__wrapper {
  padding-top: 20px;
}

.tab__wrapper .tab__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.tab__wrapper .tab__inner .tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #000;
  width: 100%;
}

.tab__wrapper .tab__inner .tab__list li {
  max-width: 260px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 33.333333%;
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  border-bottom: 0px solid #FFF;
  cursor: pointer;
  position: relative;
}

.tab__wrapper .tab__inner .tab__list li a {
  position: relative;
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.tab__wrapper .tab__inner .tab__list li a img {
  vertical-align: middle;
}

.tab__wrapper .tab__inner .tab__list li .right-icon {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -5px;
}

.tab__wrapper .tab__inner .tab__list .active {
  background-color: #f1f1f1;
  border-bottom: 2px solid #cc2027;
}

.tab__wrapper .tab__inner .sub_tab__list {
  display: none;
  z-index: 2;
  width: 66.66666%;
  min-width: 260px;
  max-width: 66.66666%;
  height: 450px;
  overflow: auto;
  position: absolute;
  right: 0px;
  top: 62px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  background-color: #FFF;
}

.tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title {
  display: none;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.89px;
  color: #4b4b4b;
  position: relative;
  text-align: center;
}

.tab__wrapper .tab__inner .sub_tab__list ul .sub_tab__list__title .right-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
}

.tab__wrapper .tab__inner .sub_tab__list ul li {
  position: relative;
  border-bottom: 2px solid #fde980;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a {
  font-weight: 600;
  font-size: 16px;
  display: block;
  color: #000;
  text-decoration: none;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__number {
  position: absolute;
  top: 5px;
  left: 15px;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__current {
  text-align: center;
  line-height: 40px;
  height: 40px;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status {
  text-align: center;
  line-height: 40px;
  height: 40px;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.reject {
  color: #c2c2c2;
}

.tab__wrapper .tab__inner .sub_tab__list ul li a .sub_tab__list__status.progress {
  color: #e76d75;
}

.tab__wrapper .tab__inner .sub_tab__list ul .active .sub_tab__list__current {
  background-color: #fde980;
}

@media only screen and (min-width: 780px) {
  .tab__wrapper .tab__inner .sub_tab__list {
    width: 33.3333333%;
    right: 50%;
    max-width: 260px;
    margin-right: -390px;
  }
}

.breadcrumb {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  margin-left: 0px;
}

.breadcrumb .breadcrumb__wrapper {
  padding: 0px 20px;
}

.breadcrumb .breadcrumb__wrapper .breadcrumb__item {
  font-size: 12px;
  color: #4b4b4b;
  display: inline-block;
  height: 60px;
  line-height: 60px;
}

.breadcrumb .breadcrumb__wrapper .breadcrumb__item a {
  text-decoration: none;
  line-height: 60px;
  height: 60px;
  color: #4b4b4b;
  display: inline-block;
}

.breadcrumb .breadcrumb__wrapper .breadcrumb__item:not(:last-child):after {
  content: ">";
  display: inline-block;
  padding: 0px 3px;
}

@media only screen and (min-width: 768px) {
  .breadcrumb .breadcrumb__wrapper .breadcrumb__item {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .breadcrumb .breadcrumb__wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.maxContent {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
/*# sourceMappingURL=common.css.map */
