@charset "UTF-8";
/* CSS Document */
/***********************************************
***  Header
***********************************************/
.header {
  position: relative;
  box-shadow: 2px 2px 2px #bbb;
  z-index: 30;
}
.global-navigation {
  position: relative;
}
.global-navigation:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(#d8eafc, #8f98f8);
  z-index: -1;
}
.global-navigation-sc {
  display: none;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
}
.global-navigation-lists {
  background: url("../img/common/nav/nav-bg.svg");
  background-repeat: repeat-x;
  background-size: contain;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 10px 10px;
}
.global-navigation-list {
  width: calc(50000% / 3000);
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.global-navigation-list:nth-child(2), .global-navigation-list:nth-child(3) {
  width: calc(41000% / 3000);
}
.global-navigation-list a {
  display: block;
  width: 100%;
}
.global-navigation-list img {
  width: 73%;
  padding-top: 14px;
}
.global-navigation-sc {
  background: url("../img/common/nav/nav-bg.svg"), linear-gradient(#d8eafc, #8f98f8);
  background-repeat: repeat-x;
  background-size: contain;
}
.global-navigation-sc-lists {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5px 10px 10px;
}
.global-navigation-sc-list {
  width: calc(50000% / 4000);
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.global-navigation-sc-list:nth-child(2), .global-navigation-sc-list:nth-child(3) {
  width: calc(41000% / 4000);
}
.global-navigation-sc-list img {
  width: 100%;
}
.header.fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 0;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header.fixed > .global-navigation-sc {
  display: block;
}
.header.fixed > .global-navigation {
  display: none;
}
#global-navigation-mob-btn-check {
  display: none;
}
.global-navigation-mob-unshown {
  display: none;
}
@media only screen and (max-width:1000px) {
 
}
@media only screen and (max-width: 800px) {
  .header {
    margin-top: 0;
  }
  .global-navigation-mob-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-image: url("../img/common/nav/nav_mob_btn_bg.svg");
    background-size: contain;
  }
  .global-navigation-mob-btn span, .global-navigation-mob-btn span:before, .global-navigation-mob-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  .global-navigation-mob-btn span:before {
    bottom: 8px;
  }
  .global-navigation-mob-btn span:after {
    top: 8px;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #global-navigation-mob-btn-check:checked ~ #global-navigation-mob-close {
    display: block;
    opacity: .5;
  }
  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
  }
  .global-navigation-lists {
    padding: 180px 10px 0;
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    position: relative;
  }
  .global-navigation-lists:before {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 320px;
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("../img/common/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .global-navigation-list {
    border-bottom: 1px solid #ffffff;
    margin: 10px;
    list-style: none;
    width: calc(50% - 20px);
    text-align: center;
    padding: 0 0 25px;
  }
  .global-navigation-list:nth-child(2), .global-navigation-list:nth-child(3) {
    width: calc(50% - 20px);
    padding: 0 4% 25px;
  }
  .global-navigation-list a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    position: relative;
  }
  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 80;
    background: linear-gradient(#d8eafc, #8fcff8);
    overflow-x: hidden;
    transition: all 0.5s;
  }
  .global-navigation:before {
    overflow-x: hidden;
    position: absolute;
    content: "";
    opacity: 0.03;
    width: 100%;
    height: 100%;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation {
    top: 0;
  }
}
@media only screen and (max-width: 800px) {
  .header.fixed > .global-navigation-sc {
    display: none;
  }
    .header.fixed > .global-navigation{
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .global-navigation-mob-btn {
    height: 40px;
    width: 40px;
  }
  .global-navigation-mob-btn span, .global-navigation-mob-btn span:before, .global-navigation-mob-btn span:after {
    height: 2px;
    width: 20px;
    border-radius: 1px;
  }
  .global-navigation-mob-btn span:before {
    bottom: 7px;
  }
  .global-navigation-mob-btn span:after {
    top: 7px;
  }
}

/***********************************************
***  Footer
***********************************************/
.footer {
color: #fff;
    text-align: center;
    padding: 40px;
    line-height: 1.5;
    position: relative;
    z-index: 30;
}
.footer-banner-lists {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}


.footer-banner-list img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 40px;
}
.footer-copyright{
  color: #000;
}
@media only screen and (max-width: 600px) {
  .footer-banner-lists {
    display: block;
    text-align: center;
  }
  .footer-banner-list {
    width: 70%;
    margin: 0 auto;
  }
  .footer-banner-list img {
    margin-bottom: 40px;
  }
}