body {
    font-family: 'Arial', sans-serif;
    /* background-image: url('/lpbase/mitumori/top-photo.jpg');  */
    /* background-image: url(/top-photo.jpg); */
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    /* margin: 0 auto; */
    padding: 0;
    height: 820px;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
	margin: 0 auto;
    /* background-image: url(/top-photo.jpg); */
    background-image: url('/lp/mitumori/top-photo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(50%); /* 明るさを調整（50%の明るさに設定） */
    z-index: -1; /* コンテンツの後ろに表示する */
}

header {
    text-align: center;
    padding: 20px 0;
}

h1 {
    /* color: white; */
    color: white;
    margin: 0;
    font-size: 40px;
    margin-top: 15px;
}

.header-p {
    color: white;
    margin: 10px 0 0;
}

.popup {
    background-color: #fff;
    width: 70%;
    max-width: 500px;
    margin: 10px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 20px;
}

.popup p{
    color: rgb(68, 68, 68);
    font-size: 18px;
}

.popup h3{
    text-align: center;
    color: rgb(68, 68, 68)
}

.with-top-border {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.form-group {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 13px;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input {
    margin-right: 10px;
}

.form-group label {
    font-size: 18px;
}

form .button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adds space between buttons */
    margin-top: 20px;
    margin-bottom: 10px;
}

label {
    color: #333;
    text-align: center;
    font-size: 20px;
    display: block;
    font-weight: bold;
}


input[type="text"], input[type="email"], textarea, select {
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 13px;
    width: calc(100% - 22px);  /* Full width minus padding and border */
    box-sizing: border-box;
    margin-left: 10px;
}

.button-container{
    margin: 0 auto;
}

button {
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: rgb(240,129,1);
    border-radius: 10px;
}

.back-button {
    background-color: rgb(153,153,153);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
}

.next-button {
    background-color: rgb(241,129,1);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    
}

.back-button:hover {
    background-color: rgb(126, 125, 125);
}

.next-button:hover {
    background-color: rgb(206, 112, 4);
}

button:hover {
    background-color: rgb(206, 112, 4);
    color: white;
}

.sp{
    display: none;
}


/* チェックボックスと同じデザインのラジオボタン */
input[type="radio"].round-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: rgb(235,235,235);
}

input[type="radio"].round-radio:checked {
    background-color: black;
    border-color: black;
}

input[type="radio"].round-radio:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}


input[type="checkbox"].round-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: rgb(235,235,235);
}

input[type="checkbox"].round-checkbox:checked {
    background-color: black;
    border-color: black;
}

input[type="checkbox"].round-checkbox:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

/* Add underline to confirmation items */
.confirm-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}



.progress {
    text-align: center;
    margin: 10px 0;
    font-size: 20px;
    color: #666;
}



@media screen and (max-width: 768px) {

    h1 {
        color: white;
        margin: 0;
        font-size: 26px;
        margin-top: 15px;
    }
    
    .sp{
        display: block;
    }

    .header-p {
        color: white;
        font-size: 14px;
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
}


body {
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    padding: 0;
    height: 750px;
    /* height: 100%; */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(50%); /* 明るさを調整（50%の明るさに設定） */
    z-index: -1; /* コンテンツの後ろに表示する */
}

    label {
        color: #333;
        text-align: center;
        font-size: 19px;
        display: block;
        font-weight: bold;
    }


}