@charset "UTF-8";
.page h1 {
text-align: center;
}
.sitemapWrap li a {
display: block;
margin-bottom: 15px;
}
.sitemapWrap > li > ul li {
margin-left: 20px;
}
.aboutTable table tr {
display: grid;
padding: 10px;
width: 100%;
grid-template-columns: 140px 1fr;
}
.aboutTable table tr:not(:last-child) {
border-bottom: 1px solid var(--main-color);
}
.aboutTable table tr th {
text-align: center;
font-weight: bold;
}
.aboutTable table tr td iframe {
    width: 100%;
    height: 350px;
}
.contactForm,.wpcf7-response-output {
width: 80%;
margin: auto;
}
.contactForm label > span:first-child {
padding-bottom: 8px;
display: flex;
font-weight: bold;
align-items: flex-end;
gap: 5px;
font-size: 14px;
}

.contactForm label:not(:first-child) > span:first-child {
padding: 24px 0 8px;
}
.contactForm label > span:first-child span {
color: #FF0000;
font-size: 12px;
}
.contactForm label input,.contactForm label select,form label textarea {
background: #fff;
padding: 8px 10px;
border-radius: 5px;
width: 100%;
}
.contactForm label .select {
position: relative;
}
.contactForm label .select::after {
content: '';
width: 12px;
height: 12px;
border: 0;
border-top: solid 1px #3C3C3C;
border-right: solid 1px #3C3C3C;
position: absolute;
top: 50%;
right: 1rem;
pointer-events: none;
margin-top: -10px;
transform: translateX(-50%) rotate(135deg);
}
.wpcf7 form .wpcf7-response-output {
margin: auto;
}

.agree {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 15px;
}
.agree > span:first-child {
display: flex;
justify-content: center;
}
.agree label {
display: flex;
align-items: center;
gap: 5px;
}
.agree label input {
appearance: auto;
width: 20px;
height: 20px;
padding-top: 16px;
}
.agree label > span {
width: calc(100% - 20px);
}
.agree > input {
background: var(--main-color);
color: #fff;
padding: 10px 40px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}
.privacy {
padding-top: 24px;
}
.privacyWrap {
background: #fff;
padding: 10px;
border-radius: 5px;
width: 100%;
height: 150px;
overflow-y: scroll;
font-size: 14px;
margin: 16px 0;
}
.privacyWrap .head1,.privacyWrap .head2,.privacyWrap .head3 {
font-weight: bold;
}
.privacyWrap .head1 {
margin-bottom: 8px;
font-size: 16px;
}
.privacyWrap p {
margin: 5px 0;
}
@media screen and (max-width: 768px) {
.aboutTable table tr {
grid-template-columns: 1fr;
}
.aboutTable table tr th {
text-align: left;
margin-bottom: 8px;
padding-left: 5px;
border-left: 5px solid var(--main-color);
}
.contactForm,.wpcf7-response-output {
width: 100%;
}
}