/* header */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-transition: all .4s;
  transition: all .4s;
}

header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 900px) {
  .logo {
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  header {
    height: 60px;
    padding-top: 14px;
  }
  .logo {
    width: 150px;
  }
}

@media screen and (max-width: 414px) {
  header {
    height: 50px;
    padding-top: 10px;
  }
  .logo {
    width: 120px;
  }
  .logo img {
    vertical-align: baseline;
  }
}

/* gNav */
.gNav {
  padding-right: 40px;
}

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

.gNav li {
  padding-left: 26px;
}

.gNav a {
  position: relative;
  padding: 2px 2px 4px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.gNav a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  background: #2e489a;
  width: 0;
  height: 2px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.gNav a:hover::before {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .gNav {
    padding-right: 0;
  }
  .gNav li {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .gNav {
    position: absolute;
    top: 0;
    right: -70%;
    width: 70%;
    height: 130vh;
    background: #2e489a;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .gNav ul {
    display: block;
    margin-top: 100px;
  }
  .gNav li {
    padding: 20px 4%;
    border-top: 1px solid #fff;
  }
  .gNav li:last-child {
    border-bottom: 1px solid #fff;
  }
  .gNav a {
    color: #fff;
    padding-top: 13px;
  }
}

@media screen and (max-width: 414px) {
  .gNav li {
    padding: 12px 4%;
  }
}

/* gNav active */
@media screen and (max-width: 768px) {
  .gNav.active {
    right: 0;
  }
}

/* header isScroll */
header.isScroll {
  padding-top: 14px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
}

header.isScroll .logo {
  width: 180px;
}

header.isScroll .gNav a {
  color: #333;
}

@media screen and (max-width: 768px) {
  header.isScroll .gNav a {
    color: #fff;
  }
  header.isScroll .logo {
    width: 150px;
  }
}

@media screen and (max-width: 414px) {
  header.isScroll {
    height: 50px;
    padding-top: 10px;
  }
  header.isScroll .logo {
    width: 110px;
  }
}

/* spMenuBtn */
.spMenuBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .spMenuBtn {
    display: block;
    width: 45px;
    height: 35px;
    padding-top: 4px;
    cursor: pointer;
  }
  .spMenuBtn div {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .spMenuBtn span {
    position: absolute;
    left: 5px;
    z-index: 999;
    display: block;
    width: 35px;
    height: 2px;
    background: #333;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .spMenuBtn span:nth-child(1) {
    top: 0;
  }
  .spMenuBtn span:nth-child(2) {
    top: 10px;
  }
  .spMenuBtn span:nth-child(3) {
    top: 20px;
  }
}

@media screen and (max-width: 414px) {
  .spMenuBtn {
    padding-top: 6px;
  }
  .spMenuBtn span {
    width: 30px;
  }
  .spMenuBtn span:nth-child(2) {
    top: 8px;
  }
  .spMenuBtn span:nth-child(3) {
    top: 16px;
  }
}

/* isScroll spMenuBtn */
@media screen and (max-width: 768px) {
  header.isScroll .spMenuBtn {
    padding-top: 4px;
  }
  header.isScroll .spMenuBtn span {
    background: #333;
  }
  header.isScroll .spMenuBtn.active span {
    background: #fff;
  }
}

@media screen and (max-width: 414px) {
  header.isScroll .spMenuBtn {
    padding-top: 6px;
  }
}

/* spMenuBtn active */
.spMenuBtn.active span {
  background: #fff;
}

.spMenuBtn.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.spMenuBtn.active span:nth-child(2) {
  opacity: 0;
}

.spMenuBtn.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* footer */
.footNav {
  padding: 18px 95px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .footNav {
    padding: 15px 4%;
  }
}

.footNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .footNav li {
    width: 32%;
  }
}

@media screen and (max-width: 414px) {
  .footNav li {
    width: 49%;
  }
}

.footNav a {
  font-size: 1.4rem;
  font-weight: 500;
}

.footLogoArea {
  padding-top: 35px;
  padding-bottom: 36px;
  background: #2e489a;
}

.footLogoArea p {
  display: inline;
  margin-left: 25px;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footLogoArea p {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}

@media screen and (max-width: 414px) {
  .footLogoArea img {
    width: 160px;
  }
}

small {
  display: block;
  width: 100%;
  padding: 11px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  background: #131313;
}

.footSub {
  border-top: 1px solid #ccc;
}

/* toTop */
.toTop {
  position: relative;
  max-width: 1276px;
  margin-left: auto;
  margin-right: auto;
}

.toTop a {
  position: absolute;
  top: -26px;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .toTop a {
    width: 60px;
  }
}

@media screen and (max-width: 414px) {
  .toTop a {
    top: -16px;
    width: 45px;
  }
}

/* btn */
.moreBtn, .moreBtnGrn {
  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;
  width: 116px;
  color: #fff;
  font-size: 1.8rem;
  background: #2e489a;
}

@media screen and (max-width: 768px) {
  .moreBtn, .moreBtnGrn {
    margin-left: auto;
    margin-right: auto;
  }
}

.moreBtn img, .moreBtnGrn img {
  margin-left: 5px;
}

.moreBtnGrn {
  background: #57dbce;
}

.opa {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.opa:hover {
  opacity: .8;
}

.breadcrumb li, .breadcrumb a {
  display: inline;
}

.breadcrumb li {
  font-size: 1.4rem;
}

@media screen and (max-width: 414px) {
  .breadcrumb li {
    font-size: 1.3rem;
  }
}

.breadcrumb li:last-child {
  vertical-align: text-bottom;
}

.breadcrumb a {
  color: #4971f2;
  font-weight: bold;
}

.breadcrumb img {
  vertical-align: baseline;
  margin-left: 8px;
  margin-right: 6px;
}

.newsArea {
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .newsArea {
    padding: 3%;
  }
}

.newsArea li, .newsArea a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: block;
}

.newsArea li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #ccc;
}

@media screen and (max-width: 768px) {
  .newsArea li {
    border-bottom: 1px solid #ccc;
  }
}

.newsArea span {
  width: 120px;
  color: #4971f2;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .newsArea span {
    width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 414px) {
  .newsArea span {
    font-size: 1.4rem;
  }
}

.newsArea p {
  width: calc(100% - 140px);
}

@media screen and (max-width: 768px) {
  .newsArea p {
    width: 100%;
    margin-top: 5px;
  }
}
