* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: 700; */
    font-style: normal;
}

a {
    text-decoration: none;
    color: #3888dd;
    white-space: pre-wrap;
    font-weight:550;
}

a:hover {
    color: #de8500;
}

.container {
    margin: 0 auto;
    /* 水平方向のmarginをautoに */
    width: 1020px;
}

header {
    width: 100%;
    height: 120px;
    background-color: #eefdff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-center {
    display: flex;
    justify-content: center;
    margin: 15px;
    font-size: 3.6rem;
    font-weight: 700;
}

.nav-left {
    display: flex;
    /* justify-content: center; */
    margin: 15px;
    font-size: 3.6rem;
    font-weight: 700;
}

.section-center {
    display: flex;
    justify-content: center;
}

.section-h1 {
    font-size: 2.1rem;
    font-weight: 700;
    /* margin: 15px; */
}

.section-select {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 224px;
    height: 92px;
    margin: 15px;
    font-size: 2.1rem;
    color: white;
    border-radius: 15px;
    background-color: #b3d465;
}

.section-select:hover {
    background-color: #ffce00;
    transition: 0.3s linear;
}

.map-area {
    text-align: center;
}

.list-area {
    padding-top: 30px;
}

caption {
    font-weight: bold;
    caption-side: TOP;
    /* 上 */
    text-align: left;
    /* 左 */
}

/* table */
table {
    border: 1px solid black;
    margin: auto;
    width: 90%;
    font-size: 1.5rem;
}

th,
td {
    /* border: 1px solid black; */
    border-bottom: 1px solid #000;
}

td {
    padding-left: 1rem;
}

tr {
    height: 45px;

}

tr td:nth-child(1) {
    /* tr :nth-of-type(1) { */
    /* border-left: 1px solid #000; */
    border-right: 1px solid #000;
}

tr th:nth-child(1) {
    /* tr :nth-of-type(1) { */
    /* border-left: 1px solid #000; */
    border-right: 1px solid #000;
}

.vertical-ui-li {
    flex-direction: column;
    font-size: 1.7rem;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 0.5rem;
}

.vertical-ui-li li {
    padding-bottom: 0.5rem;
}

.vertical-ui-li-h2 {
    font-size: 2.3rem;
    border-bottom-color: #b3d465;
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.agreement-fontsize {
    font-size: 2.5rem; /*文字サイズポイントを２から３へ変更*/
}

/* パンくず */
ul {
    display: flex;
    font-size: 1.5rem;
}

li {
    margin-left: 5px;
}

.list_triangle {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.list_triangle>li {
    position: relative;
    padding: 0px 0px 0px 1rem;
}

.list_triangle>li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.3em solid transparent;
    border-left: 0.4em solid #3388dd;
    content: "";
}

td p {
    line-height: 1.5rem;
    text-align: center;
}