@charset 'UTF-8';

/* header
------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  transition: .5s;
  padding:0 0;
}

header:hover{
  background: #FFF;
}

.is-animation {
  background: #FFF;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

/* headerArea */

.headerArea{
  margin:0 auto;
  width:1200px;
  padding:0;
  position: relative;
}

@media only screen and  (max-width: 1280px) {
.headerArea {
  width:100%;
  box-sizing: border-box;
  padding: 0 2%;
}
}

#logo{
  width:128px;
  height:50px;
  margin:10px 0;
  display:inline-block;
  vertical-align:top;
  background-image: url(../images/common/logo01.png);
  background-image: none;
  background-size:auto 50px;
  background-repeat: no-repeat;
  transition: .1s;
}

header:hover #logo{
  background-image: url(../images/common/logo.png);
}

.is-animation #logo{
  background-image: url(../images/common/logo.png);
}

@media only screen and  (max-width: 800px) {
#logo{
  width:auto;
  height:46px;
  margin:7px 0 7px 5px;
  background-size:auto 46px;
}

header:hover #logo{
  width:auto;
  height:46px;
  margin:7px 0 7px 5px;
  background-size:auto 46px;
}

.is-animation #logo{
  width:auto;
  height:46px;
  margin:7px 0 7px 5px;
  background-size:auto 46px;
}
}

#logo a{
  width:128px;
  height:50px;
  text-decoration:none;
  display: block;
  text-indent:-9999px;
}

/*===========================================
sp_menu
===========================================*/
header .sp_menu {
  display: none;
}

@media screen and (max-width: 800px) {
header .sp_menu {
  display: none;
}

header:hover .sp_menu {
  position: fixed;
  top: 9px;
  right: 8px;
  z-index: 2000;
 display: block;
}
.is-animation .sp_menu {
  position: fixed;
  top: 9px;
  right: 8px;
  z-index: 2000;
  display: block;
}
}

header .open {
  padding: 10px 15px;
  background: #FF4D9D;
  display: inline-block;
  color: #FFF;
  border-radius: 7px;
  text-decoration: none;
  cursor: pointer;
  font-size:14px;
}

/* h_right
--------------------------------------- */
.h_right{
  width:78%;
  display:inline-block;
  padding-top:18px;
  padding-left:4%;
  vertical-align:top;
  box-sizing: border-box;
}

@media only screen and  (max-width: 1280px) {
.h_right{
  width:85%;
}
}

@media only screen and  (max-width: 800px) {
.h_right{display:none;}
}

/* main_menu
--------------------------------------- */
.main_menu{
  margin:0;
  font-size:0.7em;
  padding:5px 0;
  width:100%;
  text-align: center;
}

.main_menu li {
  display:inline-block;
  margin:0 15px;
  letter-spacing:0.05em;
  font-size:1.35em;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight:500;
  position: relative;
}

@media only screen and  (max-width: 1280px) {
.main_menu li {
  margin:0 2%;
  font-size:1.3em;
}
}

.main_menu li a{
  color:#FFF;
}

header:hover .main_menu li a{
  color: #333;
  padding:10px 0;
}

header:hover .main_menu li a:hover{
  color:#4FA2D2;
}

.is-animation .main_menu li a{
  color:#333;
}

.main_menu li a:hover{
  color:#4FA2D2;
}