.ProductGuide{
	margin-bottom: 30px;
}
.ProductGuide__Inner{
	display: grid;
	align-items: center;
	gap: 20px;
    padding-left: 100px;
    padding-right: 100px;
}
.ProductGuide__Inner.--wide{
    grid-template-columns: 1fr 1fr 1fr;
}
.ProductGuide__Inner.--tall{
    grid-template-columns: 1fr 1fr;
}
.ProductGuide__Image.--wide{
    grid-column: 1 / 3;
}
.ProductGuide__Image.--tall{
    grid-column: 1 / 2;
}
.ProductGuide__Custom.--wide{
    grid-column: 3 / 4;
}
.ProductGuide__Custom.--tall{
    grid-column: 2 / 3;
}
.ProductGuide__ToOrder{
	display: grid;
	justify-items: center;
}
.ProductGuide__ToOrder > button{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #00997A;
	border: 2px solid currentColor;
	border-radius: 5px;
	width: 280px;
	padding: 20px;
}
.ProductGuide__ToOrder > button::before{
	content: '';
	display: block;
	background-image: url('/images/next.svg');
	width: 15px;
	height: 15px;
}
.ProductGuide__ToOrder > button:hover{
	color: #fff;
	background-color: #00997A;
}

@media screen and (max-width: 600px) {
    .ProductGuide__Inner{
        padding-left: 0px;
        padding-right: 0px;
    }
    .ProductGuide__Inner.--column{
        flex-direction: column;
    }
}

.Form{
	margin-bottom: 20px;	
}
.Form input[type=radio]{
	margin-right: 5px;
}
.Form p:has(input:checked){
	color: blue;
}

.Form__Title{
	font-size: 2.4rem;
	border-left: 5px solid currentColor;
	padding-left: 10px;
	margin-bottom: 15px;
}
.Form__SubTitle{
	font-size: 2rem;
	/* text-align: center; */
	color: #fff;
    background-color: #9d7482;;
    padding: 5px 10px;
	margin-bottom: 20px;
}
.Form__Group{
	display: grid;
	grid-template-columns: 2fr 3fr;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
/* .Form__Group:last-child{
	border-bottom-width: 0;
	padding-bottom: 0;
} */
.Form__Group > fieldset{
	display: contents;
}
.Form__Label{
	display: flex;
	gap: 10px;
	font-size: 2rem;
}
.Form__Label::after{
    content: '任意';
	font-size: 0.8em;
    color: #fff;
    padding: 2px 5px;
    border-radius: 2px;
    background-color: gray;
}
.Form__Label.--required::after{
    content: '必須';
    background-color: red;
}
.Form__Label.--confirm::after{
	content: '';
	display: none;
}
.Form__UraSelect{
	display: grid;
	grid-template-areas: 
		"tall wide01"
		"tall wide02";
	gap: 10px;
}
.Form__UraTall{
	grid-area: tall;
}
.Form__UraWide01{
	grid-area: wide01;
}
.Form__UraWide02{
	grid-area: wide02;
}

.Form__Quantity{
	display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.Form__ImageSelect{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
}
.Form__ImageSelect.--middle{
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.Form__ImageButton{
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.Form__PostCode{
	display: flex;
}

.Form__PaymentMethod{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
}

.Form__DeliveryTime{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
}

.Form__Upload{
    width: min(100%, 400px);
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #ffffd7;
    box-shadow: 0px 1px 3px #ccc;
    border-radius: 5px;
    padding: 10px;
	margin-bottom: 10px;
    font-size: 1.6rem;
}
.Form__Upload:hover{
    opacity: 0.8;
}
.Form__Upload > img{
    width: 1em;
	margin-right: 5px;
}
.Form__Upload input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.Form__Upload #preview{
    display: flex;
    align-items: center;
}

.Form__PreviewImage{
	width: min(100%, 400px);
    display: flex;
    align-items: center;
}
.Form__PreviewImage > *{
    margin-top: 5px;
    margin-bottom: 20px;
}
.Form__PreviewImage > img{
    border: 1px solid #ccc;
    width: 20%;
    min-width: 100px;
    height: 60px;
    object-fit: contain;
}
.Form__PreviewImage > p{
    margin-left: 5px;
    margin-right: 5px;
    word-break: break-all;
}
.Form__PreviewImage > button{
	font-size: 1.6rem;
    margin-left: auto;
    color: red;
    border: 1px solid currentColor;
    width: 80px;
    padding: 10px;
    white-space: nowrap;
}
.Form__PreviewImage > button:hover{
    background-color: red;
    color: white;
}

.Form__Submit{
    display: grid;
    justify-items: center;
}
.Form__Submit > button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
	background-color: #0b014a;
    border: 2px solid currentColor;
    border-radius: 10px;
    width: 280px;
    padding: 20px;
}
.Form__Submit > button::before{
    content: '';
    display: block;
    background-image: url("/images/next.svg");
    width: 15px;
    height: 15px;
}
.Form__Submit > button:hover{
    color: #fff;
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.Form__Group{
		display: block;
	}
	.Form__Label{
		padding-bottom: 10px;
	}
}



.Estimation{
    position: sticky;
    top: 0;
    /* max-width: 600px;
    margin-left: auto;
    margin-right: auto; */
    margin-bottom: 10px;
    color: black;
    container-type: inline-size;
}
.Estimation__Header{
    font-family: "maru-gothic";
    background-color: #0b014a;
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0.5em;
}
@container (min-width: 300px) and (max-width: 850px){
    .Estimation__Header{
        font-size: 3.2rem;
    }
}
.Estimation__List{
    background-color: #ffffd7;
    font-size: 1.6rem;
}
@container (min-width: 300px) and (max-width: 850px){
    .Estimation_List{
        font-size: 2.4rem;
    }
}
.Estimation__Item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0b014a;
    padding: 0.5em;
}
.Estimation__Item > dd{
    font-weight: bold;
}
.Estimation__Item:last-child{
    padding-top: 1em;
    padding-bottom: 1em;
}
.Estimation__Item:last-child > dd{
    font-size: 1.25em;
    color: red;
}
.Estimation__Caution{
    color: #d61d27;
    font-size: 1.8rem;
    font-family: "maru-gothic";
    text-align: center;
    padding: 10px;
    border: 3px solid #d61d27;
}
@container (min-width: 300px) and (max-width: 850px){
    .Estimation__Caution{
        font-size: 2.8rem;
    }
}