@charset "UTF-8";

/* ====== SHOP ====== */
/* ====== Shop Index ====== */
.shop-container {
	max-width:			1200px;
	margin:				20px auto;
	padding:			20px;
}
.products {
    display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 30%;
    margin: 20px 1.5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.product-card:hover {
    transform: scale(1.05);
}
.product-card img {
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: #333;
}
.product-info p {
    font-size: 1em;
    margin: 0 0 10px;
    color: #666;
}
.product-info .price {
    font-size: 1.2em;
    color: #e74c3c;
    margin-bottom: 10px;
}
.product-info .description {
    font-size: 0.9em;
    color: #777;
}
.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}
.buy-button:hover {
    background-color: #2980b9;
}

/* ====== Shop Order ====== */
.order-item-container {
	width:				90%;
	max-width:			600px;
	margin:				20px auto;
	padding:			20px;
}

.slider-container {
    position:			relative;
    width:				80%;
    margin:				auto;
    overflow:			hidden;
}
.slider img {
    width: 100%;
    height: 100%;
    display: none;
}
.slider img.active {
    display: block;
}
.controls {
	width:				70%;
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
}
.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: gray;
    cursor: pointer;
}
.dot.active {
    background-color: black;
}

.shop-header h3 {
    margin: 0;
    font-size: 2em;
    color: #333;
}
.order-product-images {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.order-product-images img {
    width: 100%;
    display: none;
    border-radius: 5px;
}
.order-product-images img.active {
    display: block;
}
.order-product-images .order-prev, .order-product-images .order-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.order-product-images .order-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.order-product-images .order-prev:hover, .order-product-images .order-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.order-product-info {
    padding: 20px;
}
.order-product-info h2 {
    font-size: 2em;
    margin: 0 0 10px;
    color: #333;
}
.order-product-info .order-price {
    font-size: 1.5em;
    color: #e74c3c;
    margin-bottom: 10px;
}
.order-product-info .order-description {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.order-header {
    text-align: center;
    margin-bottom: 20px;
}
.order-header h1 {
    margin: 0;
    font-size: 2em;
    color: #333;
}
.order-form-group {
    margin-bottom: 15px;
}
.order-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.order-form-group input, .order-form-group select, .order-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.order-form-group textarea {
    resize: vertical;
}
.order-submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.order-submit-button:hover {
    background-color: #2980b9;
}
.order-hidden {
    display: none;
}

.order-total-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.order-total-table th, .order-total-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}
.order-total-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}


/* ====== Shop Confirm ====== */
.confirmation-form-group {
    margin-bottom: 15px;
}
.confirmation-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.confirmation-form-group p {
    margin: 0;
    padding: 8px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.confirmation-submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.confirmation-submit-button:hover {
    background-color: #2980b9;
}
.confirmation-back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #95a5a6;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.confirmation-back-button:hover {
    background-color: #7f8c8d;
}

.shop-thanks-message {
	font-size:			20px;
	margin:				20px auto;
	text-align:			center;
	width:				fit-content;
}

/* =============================================
メディアクエリ
============================================= */

/* 大デバイス（デスクトップ, 1200px 未満）
==============================================*/
@media screen and (max-width: 1199.98px) {
}

/* END */
/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
}

/* END */
/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media screen and (max-width: 767.98px) {
	.product-card {
	    width: 47%;
	}
}

/* END */
/* 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
	.shop-thanks-message {
		font-size:			16px;
	}
}

/* END */
