.onsenpage-header{
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid; */
    background-color: #526044;
}

.onsentop{
    display: flex;
    width: 98%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.onsentop-img img{
    width: 150px;
}
.ureshinosanpo{
    width: 60%;
    margin: 50px auto;
    gap: 30px;
    justify-content: space-around;
    align-items: center;
}
.attention{
    text-align: center;
    width: 40%;
}
.attention h2,h3{
    margin: 0;
}
/* .attention p{
    margin: 0 100px;
} */

.pickup{
    /* display: flex; */
    margin: 10px auto;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.pick{
    margin:   0 auto;
}
.pick h2{
    color: #e45c22;
    margin: 0 auto;
}
/* 点滅 */
@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* 要素にアニメーションを適用 */
.blink {
	animation: blinking 0.8s ease-in-out infinite alternate;
}

.pickupimg{
    text-align: center;
}

.onsen{
    text-align: center;
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.onsen-wrapper{
    position: relative;/*親要素にrelative*/
    width: 200px;
    /* width: calc((100% - 60px) / 3); */
    background-color: #000;
  }

  .onsen-wrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    cursor: pointer;
   transition-duration: 0.3s;
  }
  .onsen-wrapper :hover img{
    opacity: 1.0;
    transition-duration: 0.3s;
  }


.onsen-name{
    position: absolute;/*重ねたい子要素にabsolute*/
    width: 150px;
    top:50%;
    left: 50%;
   -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    transform: translate(-50%,-50%);/*センター寄せの修正*/
    color: #fff;
    font-size: 0.8rem;
    margin: 0!important;/*文字がずれている場合や*/
    padding: 0!important;/*文字が折り返される場合*/
}
.onsen ul{
    margin: 0 20px 0 20px;
    padding: 0;
    gap: 10px;
}
.onsen li{
    list-style: none;
}
.onsen img{
    width: 200px;
}

.vrt{
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	transition:all 0.3s;
}


/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:-10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

/* フッター　------------------------------------------------------------------------ */
footer{
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #000;
    height: 70px;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media(max-width:1000px){
    .ureshinosanpo{
        display: block;
        width: 80%;
    }
    .pickup{
        margin-top: 30px;
    }
    .pickupimg{
        text-align: center;
        margin: 0 auto;
        width: 50%;

    }
}
@media(min-width:601px){
    .sp{
        display: none;
    }
    .attention{
        text-align: center;
        width: 90%;
        margin: 0 auto;

    }
}
@media (max-width:600px) {
    .pc{
        display: none;
    }
    .onsen{
        width: 90%;
    }
    .onsen ul{
        margin: 0 10px 0 10px;
    }
    .onsen img{
        width: 150px;
    }
    .ureshinosanpo{
        display: block;
        gap: 30px;
    }
    .attention{
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .attention p{
        line-height: 1.5;
    }
    .pick{
        margin-top: 50px;
    }
    .onsen-wrapper{
        width: 50%;
    }
    .onsen-wrapper img{
        width: 100%;
    }
    .pickup{
        margin: 0 auto;
    }
    .pickupimg{
        margin: 0 auto;
        text-align: center;
        width: 80%;
    }

}