.top__btn {
  position: fixed;
  width: 60px;
  bottom: 25px;
  right: 15px;
  z-index: 998;
  cursor: pointer;
}

.rolling--style01 {
  overflow: hidden;
}

.rolling--style01 .rolling__wrap {
  height: 1em;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.rolling--style01 .rolling__wrap > p {
  line-height: 1em;
}

.rolling--style01:hover .rolling__wrap {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.img--style01 {
  display: block;
}

.img--style02 {
  display: block;
  margin: auto;
}

.dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  cursor: pointer;
}

.header {
  position: absolute;
  width: 100%;
  top: 25px;
  left: 0;
  z-index: 999;
}

.header.isFixed {
  position: fixed;
}

.header.main .header__logo {
  background-image: url(/image/common/logo01.png);
}

.header.main .nav__hbg {
  width: 30px;
  cursor: pointer;
}

.header.main .nav__hbg span {
  background: #fff;
}

.header .inner {
  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;
}

.header .header__logo {
  width: 60px;
  height: 66px;
  background-image: url(/image/common/logo02.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.header .nav__hbg {
  width: 30px;
  cursor: pointer;
}

.header .nav__hbg span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
  position: relative;
}

.header .nav__hbg span + span {
  margin-top: 8px;
}

.header .nav__hbg.active span:nth-child(1) {
  -webkit-animation: ease .3s bar1 forwards;
          animation: ease .3s bar1 forwards;
  background-color: #707070;
}

.header .nav__hbg.not-active span:nth-child(1) {
  -webkit-animation: ease .3s resetBar01 forwards;
          animation: ease .3s resetBar01 forwards;
}

.header .nav__hbg.active span:nth-child(2) {
  -webkit-animation: ease .3s bar2 forwards;
          animation: ease .3s bar2 forwards;
  background-color: #707070;
}

.header .nav__hbg.not-active span:nth-child(2) {
  -webkit-animation: ease .3s resetBar02 forwards;
          animation: ease .3s resetBar02 forwards;
}

.header__menu--wrap {
  display: none;
  opacity: 0;
  background-color: #111111;
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  overflow: hidden;
}

.header__menu--wrap .menu__wrap {
  min-height: 100vh;
  padding-top: 165px;
  padding-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.header__menu .menu__gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__menu .menu__gnb .gnb__depth1 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1em;
  margin-bottom: 32px;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  opacity: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: all ease .8s;
  transition: all ease .8s;
}

.header__menu .menu__gnb .gnb__depth1 > a p {
  font-size: 40px;
  font-weight: 800;
  color: #555555;
  line-height: 1em;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header__menu .menu__gnb .gnb__depth1 > a.active p {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  color: #fff;
}

.header__menu .menu__gnb .gnb__depth1 > a:last-child {
  margin-bottom: 0;
}

.header__menu .menu__gnb .gnb__depth1 > a.showing {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.header__menu .menu__gnb .gnb__depth2 .depth2__wrap {
  display: none;
  width: 100px;
}

.header__menu .menu__gnb .gnb__depth2 .depth2__wrap > a {
  font-size: 16px;
  font-weight: 500;
  display: block;
  line-height: 1em;
  color: #fff;
  margin-bottom: 22px;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  opacity: 0;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.header__menu .menu__gnb .gnb__depth2 .depth2__wrap > a.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.header__menu .menu__gnb .gnb__depth2 .depth2__wrap > a:last-child {
  margin-bottom: 0;
}

.menu__footer {
  border-top: 1px solid #292929;
  padding-top: 20px;
}

.menu__footer .footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu__footer .footer__sns > a {
  margin: 0 5px;
}

.menu__footer .footer__copy {
  color: #fdfdfd;
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
}

.menu__lang {
  display: none;
  position: absolute;
  top: 45px;
  right: 20%;
  z-index: 99999;
}

.menu__lang.showing{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__lang > a {
  color: #fff;
  margin-right: 10px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  position: relative;
}

.menu__lang > a:last-child {
  margin-right: 0;
}

.menu__lang > a.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 3px;
  left: 0;
}

.footer {
  background-color: #333333;
  padding: 20px 0;
}

.footer .footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .footer__sns > a {
  margin: 0 5px;
}

.footer .footer__copy {
  color: #9f9f9f;
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
  line-height: 1em;
}
