@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------------------------------------------
 リンク
--------------------------------------------------------------------------------------- */
a:link { color: #262626; } 
a:visited { color: #262626; }
a:hover { color: #009933 } 
a:active { color: #009933 } 

/* --------------------------------------------------------------------------------------
 スペース
--------------------------------------------------------------------------------------- */

.top_05rem{margin-top: 0.5rem;}
.top_1rem{margin-top: 1rem;}
.top_2rem{margin-top: 2rem;}

.left_sp10{ margin-left: 10px; }

.text_weight{font-weight: bold;}



/* --------------------------------------------------------------------------------------
 ヘッダー
--------------------------------------------------------------------------------------- */
header .h_logo{
  width: 100%;
  height:45px;
  background-color: #fff;
  border-bottom: 1px solid #BBBBBB;
  position: fixed;
  z-index : 1000;
}

header .h_logo h1{
  width: 98%;
  max-width: 1260px;
  margin: auto;
  position: relative;
}

header .h_logo h1 span.logo{
  display: block;
  width: 25%;
  max-width: 100px;
  height: 0;
  padding-top: 6.045%;
  overflow: hidden;
	line-height: 2;
  background: url("../common/logo.svg") no-repeat top left;
  background-size: 100% auto;
  
  position: absolute;
  top: 10px;
  left: 4px;
}

header .h_logo h1 span.subject{
  display: block;
  width: 55%;
  /* max-width: 240px; */
  max-width: 140px;
  height: 0;
  padding-top: 8.8%;
  overflow: hidden;
	line-height: 2;
  background: url("../common/header_txt_sp.svg") no-repeat top left;
  background-size: 100% auto;
  
  position: absolute;
  top: 6px;
  right: 4px;
}

/* header .h_logo h1 span.subject_02{
  max-width: 140px;
} */



/* PC ///////////////////////////////////////////////////// */
@media print, screen and (min-width: 1000px) {
  header .h_logo{
    height: 72px;
  }
  
  header .h_logo h1 span.logo {
    width: 25%;
    max-width: 160px;
    padding-top: 5%;
    top: 14px;
    left: 4px;
  }
  header .h_logo h1 span.subject {
    width: 40%;
    /* max-width: 480px; */
    max-width: 200px;
    padding-top: 5%;
    background: url("../common/header_txt_pc.svg") no-repeat top left;
    background-size: 100% auto;
    position: absolute;
    top: 8px;
    right: 4px;
  }
  /* header .h_logo h1 span.subject_02 {
    max-width: 200px;
  } */

}


/* --------------------------------------------------------------------------------------
 ハンバーガーメニュー
--------------------------------------------------------------------------------------- */
/* SP ///////////////////////////////////////////////////// */
@media print, screen and (max-width: 999px) {
.hamburger_box {
  background-color: #009933;
  position: fixed;
  width : 100%;
  height: 40px;
  z-index : 999;
  top: 45px;
}
 
.hamburger_box .menu_txt{
  color: #fff;
  font-size: 14px;
  position: absolute;
  top:12px;
  right: 60px;
  }
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  right : 10px;
  top   : 0px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}

  
.hamburger span {
  display : block;
  position: absolute;
  width   : 26px;
  height  : 2px ;
  right : 10px;
  background : #fff;
  -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: 18px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
  

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(10px);
  -ms-transform    : translateY(10px);
  -o-transform     : translateY(10px);
  transform        : translateY(10px);
}

.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-6px) rotate(90deg);
  -ms-transform: translateY(-6px) rotate(90deg);
  -o-transform : translateY(-6px) rotate(90deg);
  transform    : translateY(-6px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 998;
  top  : 84px;
  left : 0;
  color: #fff;
  background: #009933;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.9s;
  width: 100%;
  padding:10px 0 20px 0;
}

nav.globalMenuSp ul {
  
  margin: 0 auto;
  padding:0;
  width: 90%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 50%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  border-bottom: none;
}
nav.globalMenuSp ul li:nth-child(odd){
  border-right: 1px solid #fff;
}

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

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


}

/* PC ///////////////////////////////////////////////////// */
@media print, screen and (min-width: 1000px) {
.hamburger_box{display: none;}
	
nav.globalMenuSp {
  width: 100%;
  height: 68px;
  position: fixed;
  z-index : 998;
  top:72px;
  margin: 0;
  background: #009933;
  text-align: center;
  font-size: 12px;
	}
	
nav.globalMenuSp ul {
  width: auto;
  margin:8px auto;
  display: table;
}
	
nav.globalMenuSp ul li{
  width: auto;
  border-right: 1px solid #fff;
  height: 54px;
  display: table-cell;
  vertical-align:middle;

}
nav.globalMenuSp ul li:first-child{ border-left: 1px solid #fff; }

nav.globalMenuSp ul li a {
  display:inline-block;
  color: #fff;
  white-space: nowrap;
  padding: 0 14px;
  
  -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
nav.globalMenuSp ul li a:hover {
  color:#DEFFA7; 
} 
  
  
}


/* PC ///////////////////////////////////////////////////// */
@media print, screen and (min-width: 1260px) {
nav.globalMenuSp {
  font-size: 16px;
	}
}

/* 印刷しない ///////////////////////////////////////////////////// */
@media print { .globalMenuSp{display:none;} }

/* --------------------------------------------------------------------------------------
 フッター
--------------------------------------------------------------------------------------- */
footer .copyright{
  background: #0D50A4;
  color: #fff;
  padding: 1.4rem 0;
  text-align: center;
  font-size: 10px;
}



