@charset "UTF-8";

body {
    background: #fff;
    background-image: none;
}

#info .sectionSet h2 {
    margin: 2.5rem auto 0.7rem;
}

#info .sectionSet p {
    margin: 1rem;
}

.checkList {
    margin: 1rem 1rem 2rem 3rem;
}

.checkList a:link,
.checkList a:active {
    color: #e70000;
}

.checkList a:visited {
    color: #a11111;
}

.checkList a:hover {
    color: #f87474;
}

.checkList li{
    list-style-position: outside;
    list-style-type: disc;
    padding-bottom: 0.5rem;
}

.checkList li:last-child {
    padding-bottom: 0;
}

.info-list {
    background-color: #fff3f3;
    margin: 2rem;
    padding: 0 1rem 1.2rem;
    border: 2px solid #e70000;
    border-radius: 4px;
    color: #e70000;
}

@media screen and (max-width: 768px) {
    .info-list {
        margin: 1rem 0;
    }
}

#info .sectionSet .info-list > p {
    margin: 1rem 0 1.2rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px dotted #e70000;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.info-list ul {
    margin: 0 1rem 0 1.7rem;
}

.info-list ul li {
    list-style-position: outside;
    list-style-type: disc;
    padding-bottom: 1rem;
}

.info-list ul li:last-child {
    padding-bottom: 0;
}

.info-list ul ol {
    margin: 0.5rem 0 0 1rem;
}
.info-list ul ol li {
    list-style-type: decimal;
    padding-bottom: 0.3rem;
}


/* 同意チェックボックスエリア */
.agreement-box {
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 0;
    transition: background-color 0.3s;
}
.agreement-box:hover {
    background-color: #f1f2f6;
}
.agreement-box label {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
}
.agreement-box input[type="checkbox"] {
    transform: scale(1.4);
    margin-right: 12px;
    cursor: pointer;
}

/* 開閉するフォーム一覧エリア */
#form-list-container {
    display: none;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}
#form-list-container h3 {
    margin: 0 auto 1rem ;
}
#form-list-container h3:last-of-type {
    margin-top: 2rem;
    margin-bottom: 0;
}
.form-items {
    list-style: none;
    padding-top: 1rem;
}
.form-items li {
    margin-bottom: 1rem;
    padding: 0 1rem 1rem;
    border-bottom: 1px dotted #ccc;
}

.form-items li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
