@charset "UTF-8";
body{
    color: #ffffff;
}
p{
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-bottom: 0px;
}
h1{
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

body img{
    line-height: 0;
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0px;
    background-clip: padding-box;
}

ul{
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.menubar{
    display: block;
    text-align: center;
    /*margin: 5px 0px;*/
    width: 20%;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background-color: rgba(47,79,79,0.5);
    display: block;
    padding: 10px 0px;
    width: 100%;
    transition: all 1s linear 0s;
    cursor: pointer;
}

.undermenu{
    flex-direction: column;
    display: none;
    position: absolute;
    width: 20%;
    margin-top: 0.6em;
}

.undermenu a{
    display: block;
    width: 100%;
    background: rgba(47,79,79,0.5);
    color: #ffffff;
}

.undermenu a:hover{
    background: rgba(47,79,79,1);
    color: #ffffff;
}

.menubar:visited{
    color: #ffffff;
}

.menubar:hover{
    color: #cccccc;
    background: rgba(47,79,79,1);
}

footer{
    text-align: center;
}

footer a:visited{
    color: #4169e1;
}

.entry-title{
    color: #ffffff;
}
/*アコーディオン用*/
.button{
  position: relative;
}

.button:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*縦線*/
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.button:before{
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*横線に*/
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}

.button.open:before{
  transform: rotate(180deg);
}
.button.open:after{
  opacity: 0;
}
.entry-meta,.entry-footer{
    display: none;
}

/*パソコン・タブレット用のCSS*/
@media screen and (min-width:768px) {
    .mainvis{
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
    }
    .mainvis img{
        width: 100%;
    }
    .topcontents{
        width: 980px;
        margin: 10px auto 0;
        background: rgba(255,255,255,0.5);
        display: flex;
    }
    .textbox{
        width: 48%;
    }
    .bunnerbox{
        width: 48%;
    }
    .bunnerbox div{
        height: 50px;
        width: 100%;
        background: rgba(0,0,0,0.5);
        margin: 10px 0;
    }
    header h1 img{
        width: 50%;
        max-width: 328px;
    }
}
/*スマホ用CSS*/
@media screen and (max-width:767px) {
    
}

