@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}
/*タイトルの装飾*/
h1{
    margin: 20px;
    padding: 10px;
    text-align: center;
    font-family:serif;
    font-size: 60px;
    border-top: solid 3px #00A4AC;
    border-bottom: solid 3px #00A4AC;
    text-shadow: 0px 1px 1px black;
}
/*予約のボタン*/
a.btn{
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    background-color: #00A4AC;
    margin: 20px;
    padding: 15px;
    border-radius: 2em;
}
a.btn:hover{
    color: #00A4AC;
    background-color: #fff;
}
/*予約ボタンの右寄せ*/
div.right{
    text-align: right;
    padding: 20px 10px 0 0;
}
/* 季節の豆 */
.event{
    padding-top: 2em;
    /* safari対応 */
    display:-webkit-box;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;  
    justify-content: space-around;
}

.eventbox{
    /* safari対応 */
    width: 80%;

    text-align: center;
    padding: 1em;
}

/*要素の配置*/
#colum ul{
    overflow: hidden;
    list-style: none;
    margin: 0 auto;
    z-index: 2;
}
#colum ul li{
    display: inline-block;
    /* padding: 10px 30px 20px 10px; */
}
/*商品ごとの装飾*/
h2{ 
    height: 45vw;
    margin: 2vw;
    padding: 30px 20px 60px 20px;
    font-family:serif;
    border-radius: 5px;
    background-color:wheat;
    border: solid 1px gray;
}
/*商品を二列で並べる*/
#colum ul{
    display: flex;
    flex-wrap: wrap;    /*複数行に折り返す*/
}
/*box全体をrelative*/
.box{
    position: relative;
}
.box a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
#colum li{
    list-style: none;
    width: calc(50% - 20px);
    padding: 0 5px 5px 5px;
}
#colum div{
    text-align: center;
}
/*画像の角を丸くする*/
#colum img{
    border-radius: 90em;
}
.beancup{
    width: 30vw;
    height: auto;
}
/*リンクの色*/
.box p{
    text-decoration: none;
    color: black;
    font-size: 30px;
}
#colum li p{
    text-align: center;
    font-size: 3vW;
}
#colum li span{
    text-align: right;
    margin: 5px;
    font-size: 20px;
}
/* トップへ戻る */
#page_top{
    z-index: 1;
    transform: scale(2,2);
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    bottom: -100px;
    left: auto;
    background: #00A4AC;
    opacity: 0.6;
    border-radius: 50%;
}
#page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}