@charset "utf-8";

/* === preset === */

body {
    color: #333;
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height: 1.5rem;
}

.br-sp {
    display: none;
}

/* === header === */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 50px;
}

.logo-img {
    width: 120px;
    margin: 15px 0;
}

h1 {
    margin: 15px 0;
    font-size: 39px;
    font-family: "Shippori Mincho", serif;
}

/* === main === */

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    margin: 10px 0;
    font-size: 25px;
}

section {
    /* background-color: aquamarine; */
    width: 50%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.summary {
    text-align: center;
}

.activities-card-wrap {
    display: flex;
    justify-content: center;
    gap: 10px
}

.activities .activities-card {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 24px;
    width: calc( (100% - 10px) / 2);
}

.table-about {
    width: 100%;
    border-collapse: collapse;
    border: none;
    text-align: left;
}

table th, table td {
    font-weight: normal;
    padding: 12px 0 10px 60px ;
    border-bottom: solid 1px #eee;
    white-space: nowrap;
}

table tr:first-child{
    border-top: solid 1px #eee;
}


/* === footer === */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    color: #FFFFF0;
    background-color: #0059AA;
}


/* === sp === */

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

header {
    border-bottom: solid #eee;
    display: block
}

.logo-img {
    width: 120px;
    margin: 18px auto 0;
}

h1 {
    width: 90%;
    font-size: 26px;
    text-align: center;
    margin: 15px auto;
}

h2 {
    font-size: 26px;

}

.br-sp {
    display: block;
}

section {
    width: 90%;
    margin-bottom: 70px;
}

.activities-card-wrap {
    display: block;
}

.activities .activities-card {
    width: 100%;
    margin-bottom: 10px;
}

table th, table td {
    padding: 15px 5px ;
}

footer {
    font-size: 12px;
}

}