@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');

/* 全体の設定 */
html {
    font-family: serif;
    box-sizing: border-box;
}

/* bodyの設定 */
body {
    width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
    background-color: #e1e1e1;
}

header{
    width: 100%;
}

/* ヘッダーの設定 */
header img{
    width: 100%;
}

.notice{
    background-color: white;;
}
.container{
    padding: 1rem;
    background-color: #FBFBFB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.cat{
    text-align: center;
}

.itm_cat img{
    width: 85%;
    border-radius: 10px;

}

.cat{
    padding: 0.5rem 1rem;
    background-color: #f8f8f8;
    width: 90%;
    max-width: 700px;
    margin: 1rem auto;
    border-radius: 5px;
    margin-bottom: 0rem;
    padding-bottom: ;
}

.container p{
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 1px;
}

h3{
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    
}

.container img{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 1rem auto;
    display: block;
}

.container a img:hover{
    opacity: 0.8;
    transition: 0.2s;
}

.card{
    width: 90%;
    margin: 1rem auto;
    padding: 1rem;
    background-color: white;
    margin-top: 2rem; 
    border: 1px solid #AAA;
}

.card img{
    border-radius: 5px;
}

.gaiyou{
    background-color: white;
    padding: 1rem;
    width: 90%;
    max-width: 700px;
    border: 1px solid #989898;
    margin: 1rem auto;
    text-align: center;

}

.gaiyou h3{
    text-align: center;
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-top:0;
}

.notice{
    padding: 1rem;
    border: 1px solid #616060;
    width: 90%;
    max-width: 700px;
    margin: 1rem auto;
    font-size: 14px;
}

.clist{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}


.point{
    font-weight: bold;
}

.notice h4{
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
}

/* to TOP */

#page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #666;
    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: '\f106';
    font-size: 25px;
    color: white;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  