a:link,
a:visited {
    color: #2266AA;
}

a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

img {
    width: 100%;
}

.pc {
    display: inline;
}

.sp {
    display: none;
}

@media screen and (max-width: 600px) {
    .pc {
        display: none;
    }

    .sp {
        display: inline;
    }
}

body {
    background-color: #ffffff;
    color: #333;
    text-align: center;
    border-top: 4px solid #b00;
    padding: 20px 0 0;
}

header {
    max-width: 1040px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

@media screen and (max-width: 1000px) {
    header {
        padding: 0 10px;
    }
}

header #logo img {
    margin: 0 auto;
    width: 140px;
}

@media screen and (max-width: 1000px) {
    header #logo img {
        width: 100px;
    }
}

header .subPagelogo {
    text-align: left;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    header .subPagelogo {
        font-size: 12px;
    }
}

header .subPagelogo ul {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}

header .subPagelogo ul li {
    position: relative;
    line-height: 1.3;
}

header .subPagelogo ul li::after {
    content: ">";
    position: absolute;
    margin-left: 6px;
}

header .subPagelogo ul li:last-child:after {
    content: "";
}

header .subPagelogo ul li a {
    text-decoration: underline;
}

header .subPagelogo img {
    width: 100px;
}

header .menu {
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    header .menu {
        font-size: 10px;
        position: relative;
        text-align: center;
    }
}

header .menuSub {
    min-width: 192px;
    font-size: 12px;
    line-height: 20px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    header .menuSub {
        font-size: 10px;
    }
}

header .menuSub a {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    header .menuSub>p {
        line-height: 1.3;
    }
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 1000px) {
    .container {
        padding: 0 10px;
    }
}

h1 {
    font-size: 40px;
    line-height: 56px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: clamp(26px, 5vw, 30px);
        line-height: 40px;
    }
}

h1 span {
    display: block;
    margin-top: 4px;
    font-size: 30px;
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    h1 span {
        font-size: clamp(22px, 4.3vw, 26px);
    }
}

ul.link-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

ul.link-list li {
    margin: 8px 0;
}

footer {
    font-size: 12px;
    margin-top: 40px;
    padding: 30px 0;
    text-align: center;
    background: #F2F2F2;
}

.contact {
    font-size: 14px;
    margin-top: 30px;
}