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

nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
nav.globalMenuSp ul {
    background: #5e5e5e;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 90%;
    border-bottom: 1px dotted #fff;
	margin:auto;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}




a {
	text-decoration: none ;
}


.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 15px;
    width: 40px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
    background: #FFFFFF;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #5e5e5e;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #5e5e5e;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}








/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@charset "UTF-8";
 
.animal {
	max-width: 1200px;
	width: 100%;
}
.animal img {
	width: 100%;
}
 
 
.pcview {
}
.spview {
	display: none;
}
 
 
@media screen and (min-width:320px) and ( max-width:768px)  {
/*320pxから1024pxまでの幅の場合に適応される */
}

@media screen and (min-width:768px) and ( max-width:1024px)  {
/* 768pxから1024pxまでの幅の場合に適応される */


.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 50px;
    top: 30px;
    width: 70px;
    height: 80px;
    cursor: pointer;
    z-index: 3;
    background: #FFFFFF;
    text-align: center;
	
}

.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 50px;
    border-bottom: solid 3px #5e5e5e;/* .navToggleに対して */
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 10px;
}


.navToggle span:nth-child(1) {top: 15px;}
.navToggle span:nth-child(2) {top: 25px;}
.navToggle span:nth-child(3) {top: 35px;}
.navToggle span:nth-child(4) {border: none;color: #5e5e5e;font-size: 16px;font-weight: bold;top: 50px;}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 30px;
    left:10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


}



@media screen and (min-width: 980px) {
/* 最大から1693pxまでの幅の場合に適応される */
.navToggle {display:none;}
.navToggle span {display:none;}
}
