
/* -----------------------------------------------

	 header

----------------------------------------------- */
header{
  padding: 20px 0;
}
header .logo{
  max-width: 250px;
}
header .pcnavwrap li{
  margin: 0 15px;
  padding-left: unset;
  text-indent: unset;
}
header .pcnavwrap li a{
  font-size: 18px;
}
header .pcnav-btn{
  background: #0054a6;
  border-radius: 30px;
  min-width: 150px;
  text-align: center;
}
header .pcnav-btn a{
  color: #fff;
  padding: 15px 20px;
  display: inline-block;
  line-height: 1;
}

@media only screen and (max-width: 1024px) {
  header .logo {
    max-width: 200px;
  }
  header .pcnavwrap li a{
    font-size: 16px;
  }
  header .pcnavwrap li {
    margin: 0 10px
  }
}
@media only screen and (max-width: 1000px) {
  header .pcnavwrap{
    display: none;
  }
}
@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 479px) {
  header .cwrap{
    padding: 0 20px;
  }
  header .logo{
    max-width: 145px;
  }
}




/* -----------------------------------------------

	 hamburger

----------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 45px;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

@media only screen and (max-width: 1000px) {
  header .hamburger{
    display: block;
  }
}


/* -----------------------------------------------

	 footer

----------------------------------------------- */
footer .inner{
  padding: 60px 0;
}
footer .logo{
  max-width: 250px;
  margin-bottom: 10px;
}
footer .nav{
  gap: 40px;
  max-width: 500px;
  line-height: 1;
}
footer .nav li{
  text-indent: 0;
  padding: 0;
}
footer .copyright{
  font-size: 16px;
  padding: 10px 0;
  background: #0054a6;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 768px) {
  footer .logo {
    max-width: 200px;
  }
  footer .nav{
    gap: 20px;
    max-width: 350px;
  }
  footer .infowrap *{
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  footer .logo {
    max-width: 150px;
  }
  footer .inner{
    flex-direction: column;
    align-items: baseline;
  }
  footer .infowrap {
    margin-bottom: 30px;
  }
  footer .nav {
    max-width: unset;
  }
  footer .nav li{
    width: 100%;
    border-bottom: solid 1px;
    padding-bottom: 5px;
  }
  footer .nav li a{
    display: block;
    padding: 10px 0;
  }
  footer .copyright p{
    font-size: 14px;
  }
}