@charset "UTF-8";




.pb20{
	padding-bottom: 20px;
}
.pb30{
	padding-bottom: 30px;
}
.pb40{
	padding-bottom: 40px;
}
.pb50{
	padding-bottom: 50px;
}

.pt20{
	padding-top: 20px;
}
.pt30{
	padding-top: 30px;
}
.pt40{
	padding-top: 40px;
}
.pt50{
	padding-top: 50px;
}

.ex_mb{
	margin-bottom: -20px!important;
}

.ex_mt{
	margin-top: -50px!important;
}
.cl_white{
	color: white!important;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 85px;
  background-color: #9b1f5b;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s;
}
header h1 {
  margin: 0;
  width: 430px;
  background-color: #9b1f5b;
  position: absolute;
  top: 0;
  left: 10px;
  text-align: left;
  padding: 3px 0 0;
}
header h1 img {
  width: auto;
	height: 85px;
}


.head_area_logo{
font-size: 15px;
    border: thin solid white;
    margin: 0px 15px;
    padding: 0px 8px;
    color: white;
    font-weight: normal;
    top: 20px;
    position: absolute;
}

/*----------------ナビ　メイン----------------*/
header nav {
  position: absolute;
  top: 30px;
  right: 3%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
header nav ul li {
  font-size: 16px;
  position: relative;
}
header nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0 20px;
}
header nav ul li a:hover {
  opacity: 1;
  color: #B3698D;
}
/*----------------トグル----------------*/
.nav-toggle {
  display: none;
}
@media screen and (max-width: 1050px) {
  header {
    height: 60px;
  }
  header h1 {
    width: 100%;
    padding: 7px 0 0;
	    left: 10px;
  text-align: left;
  }
	

header h1 img {
  width: auto;
	height: 50px;
}
	
	
.head_area_logo{
font-size: 15px;
    border: thin solid white;
    margin: 0px 15px;
    padding: 0px 8px;
    color: white;
    font-weight: normal;
    top: 10px;
    position: absolute;
}
  /*----------------ナビ　メイン----------------*/
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
  }
  header nav ul {
    display: block;
    width: auto;
    margin: 80px auto 0;
    height: 70%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
  header nav ul li a {
    font-family: hiragino-mincho-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
  }
  /*----------------トグル----------------*/
  .nav-toggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 60px;
    cursor: pointer;
    background-color: #000;
    z-index: 9999;
    overflow: hidden;
  }
  .nav-toggle span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 30px;
    background-color: #fff;
    left: 20.3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 18px;
  }
  .nav-toggle span:nth-child(2) {
    top: 28px;
  }
  .nav-toggle span:nth-child(3) {
    top: 38px;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  .open .nav-toggle span:nth-child(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 0.8s forwards;
  }
  .open .nav-toggle span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  .open nav {
    display: block;
    animation-duration: 0.6s;
    animation-name: fade-in;
  }
}



