main picture img {
    display: block;
    width: 100%;
    height: auto;
}
img {
    vertical-align: bottom;
    border: none;
    max-width: 100%;
}

#content {
    padding-top: 100px;
}
.content h2{
    color: red;
    font-size: 40px;
    font-size: clamp(20px, 3.7vw, 44px);
    line-height: 1.6;
    letter-spacing: 0.1em;
}
.content img {
    width: 30%;
    margin: 5% auto 5% auto;
}
.content p{
    text-align: center;
}
.content_bottom {
    margin: 5%;
    text-align: center;
}

@media (max-width: 768px) {
    #content {
        padding-top: 70px;
    }
    .content img {
        width: 80%;
        margin: 5% auto 5% auto;
    }
    .content p{
        font-size: small;
    }

}

/* フォーム */

#form{
	position:relative;
	margin:0 auto;
    width: 60%;
}
table {
    border-collapse:  collapse;
}

#form td {
    border: 1px solid #e1ded6;
    background: #f3f0e8;
}
#form th {
    border: 1px solid #e1ded6;
    position: relative;
}
#form th:last-child{
    border-bottom: none;
}
#form label,#form th,#form td,#form span,#form p{
	font-weight: 400;
    padding: 10px;
    font-size: 0.9rem;
    border-right: none !important;
    border-left: none !important;
}
#ck_cell label, #sei_cell label {
    padding: 0 10px;
}

.form_list {
    border: 1px solid #f3f0e8;
	font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

#submit, #fix {
    display: block;
    width: 14em;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    background: var(--e-pink);
    padding: 10px 0px;
    text-decoration: none;
    margin: 15px 10px;
    border-radius: 6px;
    border: none;
}

#submit:hover, #fix:hover {
	opacity: 0.8;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
	width:300px;
	padding:5px;
	outline:none;
	border:1px solid #ddd;
	font-size:16px;
	margin-top:-5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#naiyou {
	height:200px;
	width:400px;
    border: 1px solid #ddd;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#form span {
	color:#fff;
    background: #00a6e8;
    border-radius: 2px;
    padding: 1px 3px 3px 2px;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

.submit p {
    text-align: center;
}

.submit div {
    display: flex;
    justify-content: center;
}

#fix {
    background-color: #999;
}

.content_last p {
    text-align: center;
}
@media (max-width: 1100px) {
    #form {
        width:80%;
    }
}
@media (max-width: 830px) {
    #form {
        padding: 0;
        width: 100%;
    }
    #form th, #form td {
        border-bottom: none;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 70%;
    }
    #naiyou {
        width: 94%;
    }
    .content_last {
        width: 90%;
        margin: auto;
    }
    #form span {
        margin-left: 20px;
        position: relative;
    }
    .submit div {
        flex-direction: column;
        align-items: center;
    }
}