@charset "utf-8";
/* レイアウトのためのCSS */

body{
    background:#f3f3f3 url(../img/bg_body.png);
    /*background-size:48px 48px;*/
    font-family: 'Noto Serif JP', serif;
    letter-spacing:0.1em;
	color: #333;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

*{box-sizing: border-box;}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
	text-decoration: none;
    outline: none;
}

img{
    max-width: 100%;
    height: auto;
}

table{
    margin: 0 auto 2em;
    width: 100%;
}
th,td{
    border-bottom: 1px dotted #3e7582;
    background: rgba(255,255,255,0.3);
    padding: 1em;
}
th{
    text-align: left;
    white-space: nowrap;
    
}
td{
    text-align: left;
}


@media screen and (max-width: 640px) {
    table {
      width: 100%;
    }
    th,
    td {
      display: block;
      width: 100%;
      border-bottom:none;
      text-align: center;
    }
    td.LongText{
        text-align: left;
    }
    th{
        background: rgba(86,169,199,0.3);
        padding: 0.25em;
    
    }
    table tr:last-child{
      border-bottom: solid 1px #ccc;
    }
  }








.sideways {
    -webkit-text-orientation: sideways;
    text-orientation: sideways;
    font-size:1rem;
  }

/* area */

#container{
    position: relative;
    overflow-x: hidden;
}

#header{
    position:fixed;
    top:0;
    left:0;
    width:230px;
    height: 100vh;
    background:#fdfdfd;
    padding: 80px 0 0 0;
}

#content-area{
    width:100%;
    padding:0 0 0 230px;
}

@media screen and (max-width:990px) {
#header{
    position: relative;
    width:100%;
    height: auto;
    padding: 0;
}
  
#content-area{
    padding:0;
}
    
}
/* heading */
.heading-block{
    display: flex;
    justify-content: center;
}
#access h2,
#outline h2,
#location h2,
#Room h2,
#Contact h2{
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
    text-orientation: upright;
    letter-spacing:0.2em;
    font-size:2rem;
    margin:100px 0;
}

/* slider */

#slider-area{
    position: relative;
}

#slider-area .scrolldown1{
    top: inherit;
    bottom:0;
    z-index: 1;
}

/* header */

#header{
    display: flex;
    justify-content: center;
}

.header-area{
   width: 150px;
   /*  height: 230px;*/
    height: 700px;
}

#header h1{
   -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
   /* text-orientation: mixed; 英字横にする場合*/
    font-size: 1rem;
    letter-spacing: 0.5em;
    line-height: 1.3;
    color:#203c58;
    padding: 0 0 20px 0;
}

#header h1 span{
    display: block;
    margin: 10px;
    /*
    letter-spacing: 0.5em;

    font-size: 2.5rem;*/
   /* text-orientation: mixed; 英字横にする場合*/

  
    
}

#header .Logo{
 display: none;
}
#header img.Icon{
    margin:1em 0 2em;
   }



#header p{
    font-size: 1.25em;
}

#header p img{
    margin: 0 auto;
}



@media screen and (max-width:990px) {

#header{
    position:absolute;
    z-index: 2;
    background: none;
    color: #fff;
    height: 90vh;
    align-items: center;
}
    
.header-area{
    
    background: rgba(86,169,199,0.5);
    width:80%;
    padding: 20px;
    height: auto;
    text-align: center;
    border-radius: 20px 100px 20px 100px; 

}

#header h1{
    -ms-writing-mode: horizontal-tb;
     -webkit-writing-mode: horizontal-tb ;
    color: #fff;

    padding: 20px 22px 0 22px;
    width: auto;

    white-space: nowrap;
    display: none;
}

#header h1 span{
    font-size: 2rem;
    display: none;
}
    
#header img.Logo{
    display: block;
    margin: 0 auto;
}
#header img.Icon{
 display: none;
}

 #header .sns-link{
    position: absolute;
    left: 10px;
    bottom:20px;
}



#header p{
    display: none;
}

}


/* sns */

.sns-link li{
    display:inline-block;
    margin:0 10px;
}

.sns-link li img{
     width:48px;   
}

/* g-navi */

#main-nav{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

#g-nav ul{
    display: flex;
}

#g-nav ul li a{
    display: block;
    padding: 34px 25px;
    position: relative;
    transition:all 0.3s;
}

#g-nav ul li.current a::before,
#g-nav ul li a:hover::before{
    content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    left:50%;
    /*線の形状*/
	width: 1px;
	height: 20px;
	background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: gnavipathmove 2.4s ease-in-out infinite;
	opacity:0;
    color:#6a2e9e;
}

@media screen and (max-width:990px) {
#g-nav ul{
    display: block;
    text-align: center;
}
#g-nav ul li a{
    padding: 15px;
    color: #fff;
}
#g-nav ul li.current a::before,
#g-nav ul li a:hover::before{
    animation: none;
    left:0;
    top:48%;
    width:10px;
    height: 1px;
    background: #fff;
    opacity: 1;
}
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes gnavipathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:20px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}

#main-nav dl{
    background: #203c58;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

#main-nav dl dt{
     padding-left: 2.5em;
     font-size: 0.8rem;
     background: url(../img/ico_mail.svg) no-repeat 0 50%;
     background-size: 24px;

}

#main-nav dl a{
    color:#fff;
    font-size: 1.5vw;
}

#main-nav dl dd{
    padding-left: 2.5em;
    font-size: 0.8rem;
    background: url(../img/ico_tel.svg) no-repeat 0 2px;
    background-size: 24px;
    line-height: 1.5em;

}


@media screen and (max-width:990px) {
#main-nav dl{
    display: none;
    transition: all 0.5s;
	opacity: 0;
    padding: 10px 0;
}
    
#main-nav dl a{
   font-size: 1.2rem; 
}

 
#main-nav dl.telactive{
    display: block;
    position: fixed;
    z-index: 9999;
    bottom:30px;
    left:20%;
    width:60%;
    border: 1px solid rgba(255,255,255,0.8);
	animation: UpAnime 1s forwards;
}

}
@media screen and (max-width:1024px) {

    #main-nav dl dt{
        padding-left: 0;
        font-size: 0.8rem;
        background: none;
    
    
    }
    #main-nav dl dd{
        padding-left: 0;
        font-size: 0.8rem;
        background: none;
        line-height: 1.5em;
    
    } 
    }

@media screen and (max-width:420px) {
#main-nav dl.telactive{
    width:90%;
    left:5%;
}
#main-nav dl dt{
    padding-left: 0;
    font-size: 0.8rem;
    background: none;


}
#main-nav dl dd{
    padding-left: 2.5em;
    font-size: 0.8rem;
    background: url(../img/ico_tel.svg) no-repeat 0 2px;
    background-size: 24px;
    line-height: 1.5em;

} 
}

/* lead */

#lead{
    position: relative;
    display: flex;
    justify-content: center;
    height: 80vh;
    padding: 25vh 0 0 0;
}

#lead .lead-area{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}


#lead .svganimeblock{
    width:50%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

#lead .lead-heading{
    width:30%;
}

#lead h2{
     font-size:2rem;
    letter-spacing: 0.1em;
    line-height: 2.2;
    padding: 0 0 0 30px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
}

#lead .lead-desc{
    width:70%;
    display: flex;
    flex-direction: row-reverse;
    height: 20em;
}

#lead .lead-desc p{
    width:12em;
    letter-spacing: 0.1em;
    line-height: 3;
    margin: 0 0 0 30px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
}

#lead .btnarrow5{
   padding: 20px 15px 40px 15px; 
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
}

#lead .btnarrow5::before{
    top:90%;
    right:50%;
    width:1px;
    height: 40px;
}

#lead .btnarrow5::after{
    top: 105%;
    right:60%;
}

_:-ms-lang(x), #lead .btnarrow5::after{
    right:70%;
}


@media screen and (max-width:1020px) {
#lead h2{
    line-height: 1.8;
    padding: 0 0 50px 0;
    display: inline-block;
    text-align: left;
    font-size: 1.5rem;
    letter-spacing: 0.4em;
}
    
#lead .lead-desc p{
    line-height:2.5;
}
    
}


@media screen and (max-width:920px) {

    #lead{
    height:auto;
    padding:100px 0;
    }
    
#lead .lead-heading{
    width:100%;
    text-align: center;
}

    
#lead .lead-desc{
    width: 100%;
    padding: 0 30px;
    display: block;
    height: auto;
}
    
#lead .lead-desc p{
    width:auto;
    margin: 0 0 30px 0;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}
 
#lead .btnarrow5{
    display: block;
    padding: 8px 30px;
    width:250px;
    margin: 0 auto;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

#lead .btnarrow5::after{
    top: 152%;
    right: 52%;
}
    
}

/* zeroene */

#zeroene{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
    margin: 0 auto 100px auto;
    padding:100px 30px;
    text-align: center;
}

#zeroene .scrolldown1{
     top:-10vh;   
}

#zeroene h2{
     font-size: 1.0rem; 
     border-bottom: 2px dotted #3e7582; 
     margin-bottom: 2em;
     padding-bottom: 2em;
}
#zeroene h2 span{
    display: block;
    font-size: 1.2rem; 
    color: #f16f58;
}
#zeroene img{
    float: left;
    width: 38%;
}
#zeroene p{
    float: right;
    width: 60%;
    text-align: left;
}
#zeroene .Zero-Text{
   text-align: center;
    font-size: 1.2rem; 
    color: #f16f58;
}
#zeroene .zeroene_point{
    font-size: 83%;
    float: none;
    width: 100%;
    text-align: center;
}
#zeroene .zeroene_point span{
    display: block;
    font-size: 100%;
}





@media screen and (max-width:990px) {
#zeroene h2{
     font-size: 1rem;
     border-bottom: 2px dotted #3e7582;    
}
#zeroene .tel{
    font-size: 1.5rem;
}
    
}

@media screen and (max-width:540px) {
    #zeroene h2{
        font-size: 0.8rem;
    }
    #zeroene img{
        float: none;
        width: 80%;
    }
    #zeroene p{
        float: none;
        width: auto;

    }
    #zeroene .Zero-Text{
       text-align: center;
        font-size: 1.0rem; 
        color: #f16f58;
    }
    
}








/* access */

#access{
    position:relative;
    margin: 0 0 100px 0;
}

#access .access-bg{
    position: relative;
    background:url(../img/bg_access.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}
@media screen and (max-width:768px) {
    #access .access-bg{
        background-attachment: inherit;
        }
    }


/* outline */
#outline{
    position:relative;
    margin: 0 0 100px 0;
}
#outline h4{
    background: rgba(86,169,199,0.3);
    padding: 2em;margin-bottom: 2em;
}
#outline .outline-bg{
    position: relative;
    background:url(../img/bg_outline.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}

#outline section{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

#outline section:nth-of-type(2n){
    flex-direction:row-reverse;
}

#outline .outline-img{
    width:40%;
    height:40vh;
}

#outline .outline-img-detail{
    height:30vh;
}

#outline .outline-box{
    animation-delay:.5s;
    background: #fff;
    padding: 0.5em;
    margin-bottom: 0.25em;
}

#outline .outline-content{
    width:30%;
    display:flex;
    justify-content:center;
    align-items:center;
   /* -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;   */ 
    text-orientation: upright;
}


#outline .outline-content h5{
    font-size:1rem;
    
}

#outline .outline-content p{
    font-size: 0.8rem;
    line-height:1.25;
    padding: 10px;
    text-align: left;
}


@media screen and (max-width:768px) {
#outline .outline-bg{
    background-attachment: inherit;
    }
}

@media screen and (max-width:680px) {
    
#outline .outline-img,
#outline .outline-content{
    width:100%;
    margin: 0 0 50px 0;
}
    
}
.RoomPhoto span{
    margin: 1em;
}

@media screen and (max-width:960px) {
    
    .RoomPhoto span{
        display: block;
        width:70%;
        margin: 1em auto;
    }
    .RoomPhoto .btnarrow5{
        width: 100%;
    }  
    }


/* location */

#location{
    position:relative;
    margin: 0 0 100px 0;
}

#location .location-bg{
    position: relative;
    background:url(../img/bg_location.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}
#location h1{
 background: rgba(86,169,199,0.3);
 padding: 1em;
 margin: 2em 0;
}
#location h6{
    background: #f16f58;
    padding: 0.25em;
    font-size:0.75rem;
    color: #fff;
}

#access section,
#location section{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}
#access section:nth-of-type(2n),
#location .Animal:nth-of-type(2n),
#location .ShopList:nth-of-type(2n),
#location .Shopping:nth-of-type(2n){
    flex-direction:row-reverse;
}

#location .location-img{
    width:40%;
    height:45vh;
    padding-top: 1.5em;
}

#location .location-img-detail{
    height:40vh;
}

#location .location-box{
 animation-delay:.5s;
width: 90%;
margin: 0 auto 2em;
}
#location .Fuchunomori-park .location-box{
   width: 100%;
   padding: 1em;
   }

#location .location-content{
    width:60%;
    display:flex;
    justify-content:center;
    align-items:center;
   /* -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;   */ 
    text-orientation: upright;
}
/* 府中の森公園 */
#location .Fuchunomori-park:nth-of-type(1) .location-img-detail{
    background:url(../img/fuchunomori.jpg) no-repeat center;
    background-size:cover;
}

/* 動物病院 */

#location .Animal:nth-of-type(1) .location-img-detail{
    background:url(../img/shop_01.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(2) .location-img-detail{
    background:url(../img/shop_02.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(3) .location-img-detail{
    background:url(../img/shop_03.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(4) .location-img-detail{
    background:url(../img/shop_04.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(5) .location-img-detail{
    background:url(../img/shop_05.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(6) .location-img-detail{
    background:url(../img/shop_06.jpg) no-repeat center;
    background-size:cover;
}

#location .Animal:nth-of-type(7) .location-img-detail{
    background:url(../img/shop_07.jpg) no-repeat center;
    background-size:cover;
}

/* ペットサロン・ショップ */

#location .ShopList:nth-of-type(1) .location-img-detail{
    background:url(../img/shop_08.jpg) no-repeat center;
    background-size:cover;
}

#location .ShopList:nth-of-type(2) .location-img-detail{
    background:url(../img/shop_09.jpg) no-repeat center;
    background-size:cover;
}

#location .ShopList:nth-of-type(3) .location-img-detail{
    background:url(../img/shop_10.jpg) no-repeat center;
    background-size:cover;
}

#location .ShopList:nth-of-type(4) .location-img-detail{
    background:url(../img/shop_11.jpg) no-repeat center;
    background-size:cover;
}

#location .ShopList:nth-of-type(5) .location-img-detail{
    background:url(../img/shop_12.jpg) no-repeat center;
    background-size:cover;
}

/* 食料品・生活用品 */

#location .Shopping:nth-of-type(1) .location-img-detail{
    background:url(../img/shop_13.jpg) no-repeat center;
    background-size:cover;
}

#location .Shopping:nth-of-type(2) .location-img-detail{
    background:url(../img/shop_14.jpg) no-repeat center;
    background-size:cover;
}

#location .Shopping:nth-of-type(3) .location-img-detail{
    background:url(../img/shop_15.jpg) no-repeat center;
    background-size:cover;
}

#location .Shopping:nth-of-type(4) .location-img-detail{
    background:url(../img/shop_16.jpg) no-repeat center;
    background-size:cover;
}

#location .location-content h3{
    font-size:1.1rem;
    margin:1em 0 0;
    width: 100%;
}
#location .Fuchunomori-park .location-content h3{
    font-size:1rem;
    margin:1em 0 0;
    width: 100%;
    text-align: left;
    border-bottom: 2px dotted #3e7582;
}
#location .location-content h5{
    font-size:0.75rem;
    background: rgba(34,34,34,0.2);
}


#location .location-content p{
    padding: 3px;
    font-size:0.75rem;

}
#location .Fuchunomori-park .location-content p{
    font-size:1rem;
    text-align: left;
}

@media screen and (max-width:768px) {
#location .location-bg{
    background-attachment: inherit;
    }
}

@media screen and (max-width:560px) {
    
#location .location-img{
    width:100%;
    margin: 0 0 0 0;

}

#location .location-content{
    width:100%;
    margin: 0 0 50px 0;
} 
}

/* Room */

#Room{
    position:relative;
}

#Room .room-bg{
    background:url(../img/bg_room.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}

#Room .room-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 4px 4px #ccc;
    width:90%;
    margin: 0 auto 100px auto;
}
#Room .room-area p{
 text-align: center;
 margin: 2em;
}

#Room .room-area .room-block{
    width:30%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#Room .room-area .room-box{
    width: 100%;
    margin: 0 0 0 2em;
}
#Room .room-area .room-block h3{
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    background: rgba(86,169,199,0.3);
}

#Room .room-area .room-block p{
    margin: 0 0 20px 0;
    border-bottom: 2px dotted #3e7582;
}

#Room .room-syousai{
    width:70%;
    padding: 1em;
}

#Room .iframe-wrap {
  position: relative;
  padding-bottom: 51.65%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  z-index: 2;
}

#Room .iframe-wrap iframe,
#Room .iframe-wrap object,
#Room .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1040px) {
    #Room .room-area .room-block,
    #Room .room-syousai{
        width:100%;
    }   
    #Room .room-area .room-block{
        padding:40px 20px;
    }
}


@media screen and (max-width:768px) {
#Room .room-bg{
    background-attachment: inherit;
    }
}



/* Img-Width */
#Img-Width{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
    margin: 0 auto 100px auto;
    padding:100px 30px;
    text-align: center;
}

#Img-Width .scrolldown1{
     top:-10vh;   
}



/* contact */
#contact{
    position:relative;
    margin: 0 0 100px 0;
}

#contact .contact-bg{
    position: relative;
    background:url(../img/bg_gaikan.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}
@media screen and (max-width:768px) {
    #contact .contact-bg{
        background-attachment: inherit;
        }
    }

#reserve{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
    margin: 0 auto 100px auto;
    padding:100px 30px;
    text-align: center;
}

#reserve .scrolldown1{
     top:-10vh;   
}

#reserve h2{
     font-size: 1.2rem;   
}

#reserve .tel{
    font-size: 2vw;
    margin: 0 0 20px 0;
}
#reserve .mail{
    font-size: 2vw;
    margin: 0 0 20px 0;
}


#reserve p br{
     display: none;   
}

@media screen and (max-width:990px) {
#reserve h2{
     font-size: 1rem;   
}
#reserve .tel{
    font-size: 1.5rem;
}
    
}

@media screen and (max-width:540px) {

#reserve p br{
     display:block;   
}
    
}

/* footer */

#footer{
    padding:40px;
    color: #fff;
    background:#56a9c7;
}

#footer .footer-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap:wrap;
}

#footer .footer-logo{
   /* letter-spacing: 1em;*/
    margin: 0 0 20px 0;
    text-align: center;
}

#footer .footer-logo span{
    font-size: 1.6rem;
    display: block;
}



#footer .AdvanceNet{
text-align: center;
}
#footer .AdvanceNet img{
    
    margin: 0 auto;
}

#footer .footer-link{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer .footer-link ul{
    font-size: 0.9rem;
    margin: 0 2vw 0 0;
}

#footer .footer-link ul li{
    display: inline-block;
     margin: 0 10px;   
}

#footer .footer-link a{
     color:#fff;   
}

#footer small{
     color:#ccc;  
}

#footer #page-top span{
    position: relative;
    top:-10px;

}

#footer #page-top span::before{
     content:'';
    position: absolute;
    left:50%;
    top:-3px;
    background:#6C6C6C;
    width:1px;
    height: 30px;
}

#footer #page-top span::after{
    content:'';
    position: absolute;
    left:6px;
    top:-7px;
    background:#6C6C6C;
    width:1px;
    height: 20px; 
    transform: rotate(-45deg);
}

@media screen and (min-width:769px) {
#footer #page-top a:hover span::before,
#footer #page-top a:hover span::after{
     background:#fff;   
}
}

@media screen and (max-width:768px) {
    #footer .footer-info{
        width: 100%;
        text-align: center;
    }
    #footer .footer-logo{
        margin: 0;
    }
    
    #footer .footer-link{
        width:100%;
        display: block; 
    }

    #footer .footer-link ul{
        text-align: center;
        margin: 50px 0;
        line-height: 3;
    }
    
    #footer small{
         display: block;
        text-align: center;
    }


    
}
