/* 全体 */
body {
font-family: 'Arial', sans-serif;
margin-left: 15%;
margin-right:15%;
padding: 0;
background-color: #f8f8f8;
}
/* タイトル */
h1 {
font-size: 3rem;
font-weight: bold;
text-align: center;
margin-top: 30px;
}
h3 {
font-size: 1.5rem;
font-weight: bold;
margin-top: 30px;
margin-bottom: 10px;
}
/* 新着情報 */
div.info {
padding: 10px;
margin-bottom: 10px;
border: 5px double #333333;
border-radius: 10px;
}
dt {
font-weight: bold;
}
/* お店一覧 */
p {
font-size: 1.2rem;
font-weight: bold;
margin-top: 30px;
margin-bottom: 10px;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0;
padding: 0;
list-style: none;
}
.gallery li {
margin-right: 20px;
margin-bottom: 20px;
text-align: center;
}
.gallery li:last-child {
margin-right: 0;
}
.gallery li img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.gallery li p {
margin-top: 10px;
font-size: 1rem;
}
.gallery2 {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0;
padding: 0;
list-style: none;
}
.gallery2 li {
margin-right: 20px;
margin-bottom: 20px;
text-align: center;
}
.gallery2 li:last-child {
margin-right: 0;
}
.gallery2 li img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.gallery2 li p {
margin-top: 10px;
font-size: 1rem;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h3 {
font-size: 1.2rem;
}
p {
font-size: 1rem;
}
.gallery li,
.gallery2 li {
width: 100%;
margin-right: 0;
margin-bottom: 20px;
}
}
/* ギャラリーのスタイル */
.gallery {
margin-top: 20px;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.gallery li {
margin-right: 20px;
margin-left: 20px;
list-style-type: none;
}
.gallery li img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
}
.gallery li p {
margin-top: 10px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
.gallery2 {
margin-top: 20px;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.gallery2 li {
margin-right: 20px;
margin-left: 20px;
list-style-type: none;
}
.gallery2 li img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
}
.gallery2 li p {
margin-top: 10px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
/* 画像のスタイル */
.img-frame {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.img-01,
.img-02,
.img-03,
.img-04 {
margin-right: 20px;
margin-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
width: 240px;
height: 160px;
overflow: hidden;
border-radius: 10px;
}
.img-01 img,
.img-02 img,
.img-03 img,
.img-04 img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 新着情報のスタイル */
dl {
margin-top: 20px;
margin-bottom: 20px;
padding: 20px;
background-color: #f5f5f5;
border-radius: 10px;
}
dt {
font-weight: bold;
font-size: 20px;
}
dd {
font-size: 18px;
}
/* 見出しのスタイル */
h1 {
text-align: center;
font-family: 'Amatic SC', cursive;
font-size: 80px;
margin-top: 50px;
margin-bottom: 50px;
}
h2 {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
h3 {
text-align: center;
font-size: 30px;
margin-top: 20px;
margin-bottom: 20px;
}