/* =========================================================
header
========================================================= */
.lp-hd {
  display: block;
  height: 55px;
  background: #084e96;
  position: relative;
}

.lp-hd .logo {
  width: 124px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .lp-hd .logo {
    width: 92px;
    height: 19px;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

.lp-hd .logo a {
  display: block;
}

.lp-hd-nav-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 55px;
  height: 55px;
  border: none;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .lp-hd-nav-btn {
    display: none;
  }
}

.lp-hd-nav-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -10px;
}

.lp-hd-nav-btn span:nth-child(1) {
  top: 18px;
}

.lp-hd-nav-btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.lp-hd-nav-btn span:nth-child(3) {
  top: 36px;
}

.lp-hd-nav {
  width: 100vw;
  height: 120vh;
  padding-top: 100px;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

@media screen and (min-width: 769px) {
  .lp-hd-nav {
    width: auto;
    height: 50px;
    padding: 0;
    background: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: auto;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 769px) {
  .lp-hd-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.lp-hd-nav-list li {
  margin: 0 auto 30px;
  text-align: center;
}

.lp-hd-nav-list li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .lp-hd-nav-list li {
    margin: 0 20px 0 0;
  }
  .lp-hd-nav-list li:last-child {
    margin-right: 0;
  }
}

.lp-hd-nav-list a {
  font-weight: bold;
  font-family: "TwCenMTBold", "Kanit", sans-serif;
  color: #084e96;
  font-size: 20px;
}

@media screen and (min-width: 769px) {
  .lp-hd-nav-list a {
    color: #fff;
    font-size: 16px;
  }
  .lp-hd-nav-list a:hover {
    opacity: .7;
    text-decoration: none;
  }
}

.lp-hd-sns {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .lp-hd-sns {
    margin: 0 0 0 30px;
  }
}

.lp-hd-sns li {
  margin: 0 20px 0 0;
}

@media screen and (min-width: 769px) {
  .lp-hd-sns li {
    margin: 0 10px 0 0;
  }
}

.lp-hd-sns li:last-child {
  margin-right: 0;
}

.lp-hd-sns a {
  display: block;
  width: 30px;
  height: 30px;
}

.lp-hd.is-navopen {
  z-index: 20;
}

.lp-hd.is-navopen .lp-hd-nav-btn span {
  width: 25.5px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.lp-hd.is-navopen .lp-hd-nav-btn span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lp-hd.is-navopen .lp-hd-nav-btn span:nth-child(2) {
  opacity: 0;
}

.lp-hd.is-navopen .lp-hd-nav-btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* =========================================================
breadcrumb
========================================================= */
.breadcrumb.promo ul {
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .breadcrumb.promo ul {
    padding: 0 40px;
  }
}

.breadcrumb.promo li {
  padding: 20px 0;
}
  
/* =========================================================
footer
========================================================= */
.lp-ft {
  padding: 30px 0;
  background: #084e96;
}

@media screen and (min-width: 769px) {
  .lp-ft {
    padding-bottom: 15px;
  }
}

.lp-ft-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lp-ft-link li {
  padding: 0 10px;
}

.lp-ft-link a {
  color: #fff;
  font-size: 11px;
}

@media screen and (min-width: 769px) {
  .lp-ft-link a {
    font-size: 13px;
  }
  .lp-ft-link a:hover {
    opacity: .7;
    text-decoration: none;
  }
}

.lp-ft .copytright {
  margin: 20px auto 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

.pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.pagetop a:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 21px;
  left: 18px;
}

/* =========================================================
layout
========================================================= */
.cmn-contents-wrapper.promo {
  min-width: 100%;
}

.lp-contents {
  margin: 30px auto 0;
}

@media screen and (min-width: 769px) {
  .lp-contents {
    margin: 60px auto 0;
  }
}

.lp-contents img {
  width: 100%;
}

.lp-contents * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cmn-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5625;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .cmn-title {
    font-size: 20px;
    line-height: 2.1;
  }
}

.cmn-text {
  font-size: 15px;
  line-height: 1.46667;
}

@media screen and (min-width: 769px) {
  .cmn-text {
    font-size: 13px;
    line-height: 2;
  }
}

