/* styles.css */

/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdeff2; /* ピンク系の柔らかい色 */
    background-image: url('912142.jpg'); /* バックグラウンドに水彩風のパターン画像を使用 */
    background-size: cover;
    background-repeat: repeat; /* パターン画像の繰り返しを許可 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #6d6be7; /*ピンク色*/
}

.price {
    font-weight: bold;
    color: #673ab7; /*紫色*/
    font-size: 21px;
}

button {
    background-color: #7a72f3; /*ピンク色*/
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4c40ff; /*ピンク色の濃いめの色*/
}

.included-items {
    margin-top: 20px;
}

.item {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.item p {
    margin: 0;
}

/* ヘッダーのスタイル */
header {
    position: relative;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /*  background-image: url('header_background_image.jpg'); /* 画像のURLを指定 */*/
    background-size: cover;
    background-position: center;
    opacity: 0.9; /* 透明度を調整 */
    background-color: #1a9bcd;
}

.header-content {
    position: relative;
    z-index: 1; /* 文字を手前に表示 */
    text-align: center;
    padding: 0px 20px; /* 上下左右のパディングを追加 */
}

.header-content h1 {
    color: white; /* 文字の色を白に */
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* テキストに影を追加 */
}

footer{
    text-align: center; /* 文字をセンターに */
}

