@charset "UTF-8";

body {
    color: #222222;
    font-family: "Noto Sans JP", sans-serif;
}
h1, h2, h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}
h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    font-size: 24px;
    margin-bottom: 30px;
    /* color: #3F6DAC; */
}
h1 img {
    max-width: 380px;
    width: 100%;
}
h1 span {
    position: relative;
}
h1 span::before, h1 span::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #222;
    position: absolute;
}
h1 span::before{
    left: -15px;
    top: 50%;
    transform: translate(-100%, 0);
    
}
h1 span::after {
    right: -15px;
    top: 50%;
    transform: translate(100%, 0);
}
h2 {
    background-color: #3F6DAC;
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    padding: 6px;
    text-align: center;
}
h3 {
    font-size: 18px;
    margin-bottom: 8px;
    padding: 0 6%;
}
p {
    font-size: 16px;
}
a {
    color: #222;
    border-bottom: 1px solid #aaa;
}
#info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    padding: 50px 20px;
}
#info .contact {
    border: 1px solid #999;
    background-color: #fff;
    padding-bottom: 25px;
    width: 100%;
    max-width: 500px;
}
#info .contact p {
    padding: 0 6%;
    display: flex;
}
#info .contact span {
    font-weight: 500;
    display: block;
    min-width: 42px;
    color: #3F6DAC;
}
footer {
    text-align: center;
    padding: 5px 0;
    /* background-color: #3F6DAC;
    color: #fff; */
}