/*  all  */

body {
    font-family: Times New Roman, "游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #600;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #c90;
}
h2 {
    font-size: 1.2em;
    font-weight: 800;
    color: #c90;
}
h2:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/all/point.png);
    background-size: contain;
    margin-right: 5px;
    vertical-align: bottom;
}
ul {
    padding: 0;
    list-style: none;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}


/*  loader  */

#loader-bg {
   background: #c80;
   width: 100%;
   height: 100%;
   position: fixed;
   top: 0;
   left: 0;
   text-align: center;
   display: table;
   z-index: 99999999;
}
#loader-pic {
    display: table-cell;
    vertical-align: middle;
}
#loader-pic img{
    width: 50%;
    height: auto;
}
#loader-pic p{
    animation: flash 1s linear infinite;
}
@keyframes flash {
    0%,100% {
        opacity: 1;
    }
  50% {
    opacity: 0;
  }
}

@media screen and (min-width: 767px) {   
    #loader-pic img{
        width: 15%;
        height: auto;
    }
    /*あとで消したほうがいいかも*/
    #loader-bg {
        display: none;
    }  
}


/*  header  */

header {
    margin: 0;
    padding: 0;
}
 

/*  top  */

#top {
    width: 100%;
    position: relative;
}
#top h1 {
    width: 100px;
    height: 47px;
    position: fixed;
    top: 0;
    left: 30px;
    text-indent: -9999px;
    background-image: url(../img/all/titlelogo.png);
    background-size: 100%;
    z-index: 9999;
}
@media screen and (min-width: 767px) {
    #top h1 {
        width: 140px;
        height: 65px;
    }
}

/*  arrow  */
.arrow1 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow1 2s linear 0s infinite normal;
  animation: arrow1 2s linear 0s infinite normal;
}
.arrow2 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow2 2s linear 0s infinite;
  animation: arrow2 2s linear 0s infinite;
}
.arrow1 span,
.arrow2 span {
  position: relative;
  display: block;
  left: 50%;
}
.arrow1 span {
  margin-top: -10px;
}
.arrow1 span:before,
.arrow2 span:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}
@keyframes arrow1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
  80% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes arrow2 {
  0% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
  20% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }
  40% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }
  80% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
}

/*  topic  */

.topic {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding: 50px 0;
}
.topic ul {
    width: 100%;
}
.topic li {
    padding: 10px;
    border-bottom: 1px dotted #c90;
}
.topic p{
    margin-bottom: 2px;
    font-size: smaller;
}
.topic p:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/top/topica.png);
    background-size: contain;
}

.sister {
    visibility: hidden;
}

@media screen and (min-width: 767px) {
    
    .pcv {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        display: flex;
        flex-wrap: wrap;
    }
    
    .topic {
        flex-grow: 1;
        width: 50%;
    }
    .topic li{
        padding: 5px;
        font-size: 85%;
    }
    .sister {
    visibility: hidden;
}
    
    
}

/*  onlineshop  */

.onlineshop{
    margin:0 auto;
    padding-top: 100px;
    width: 70%;
    height: 260px;

}
.onlineshop p:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/top/topica.png);
    background-size: contain;
    margin-right: 3px;
}
.onlineshopin {
    text-align: center;
    margin-top: 20px;
}
.ec {
    color: #C90;
    margin-top: 20px;
    height: 60px;
    border: #C90 2px solid;
    transition: 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ec:hover {
    background-color: #300;
}


/*  contact  */

.contact {
    margin:0 auto;
    padding-top: 100px;
    width: 70%;
    height: 300px;
}
.contact p:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/top/topica.png);
    background-size: contain;
    margin-right: 3px;
}
.contactin {
    text-align: center;
    margin-top: 20px;
}
.gf {
    margin-top: 20px;
    height: 60px;
    background: #300;
    text-align: center;
    transition: 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gf:hover {
    background-color: #fff;
    color: #300;
}


/*  footer  */

footer {
    margin-top: 80px;
    padding-top: 20px;
    width: 100%;
    height: 25vh;
    text-align: center;
    font-size: small;
    border-top: 1px solid #fff;
}


/*  pagetop  */

#page-top {
    position: fixed;
    bottom: 10vh;
    right: 20px;
    font-size: 77%;
    opacity: 0.7;
}
#page-top a {
    padding-top: 5px;
    background-image: url(../img/all/retop.png);
    background-position: center center;
    color: #fff;
    width: 50px;
    height: 15px;
    padding: 18px 0;
    text-align: center;
    display: block;
    -moz-transition: -moz-transform 0.1s linear;
    -webkit-transition: -webkit-transform 0.1s linear;
    -o-transition: -o-transform 0.1s linear;
    -ms-transition: -ms-transform 0.1s linear; 
    transition: transform 0.1s linear; 
}
#page-top a:hover {
    transform: rotate(20deg);
}


/*  sister  */

#sister {
    position: fixed;
    bottom: 0;
    right: 20px;
    opacity: 0.9;
    text-indent: -9999px;
}
#sister a {
    padding-top: 5px;
    background-image: url(../img/all/sister.png);
    background-position: center center;
    color: #fff;
    width: 50px;
    height: 15px;
    padding: 18px 0;
    text-align: center;
    display: block;
    -moz-transition: -moz-transform 0.1s linear;
    -webkit-transition: -webkit-transform 0.1s linear;
    -o-transition: -o-transform 0.1s linear;
    -ms-transition: -ms-transform 0.1s linear; 
    transition: transform 0.1s linear; 
}
#sister a:hover {
    transform: rotate(20deg);
}


/*  reserve  */

.reserve {
    width: 100%;
    height: 10vh;
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #c90;
    z-index: 1;
    text-align: center;
}
.reserve a {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: #900;
    display: block;
    transition: 0.8s;
}
.reserve a:hover {
    background-color: #fff;
    color: #900;
}
.reserve span {
    margin-right: 5px;
    padding: 4px;
    background-color: #900;
    font-size: 60%;
    color: #fff;
    vertical-align: 15%;
}

@media screen and (min-width: 767px) {
    
    .reserve_pc {
        display: none;
    }
}
