*,
*:after,
*:before {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}
ul,
ol,
dl {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
    font: inherit;
}
:root {
    font-family:
        Hiragino Kaku Gothic ProN,
        Hiragino Sans,
        Meiryo,
        Meiryo,
        Helvetica Neue,
        Helvetica,
        Arial,
        sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: #0b2a3a;
    background-color: #fff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: inherit;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
input,
button,
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    background: none;
}
#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header {
    padding-bottom: 15px;
}
.top-header {
    background: url(.././images/header-bg.svg) left top no-repeat rgb(255, 255, 255);
    box-shadow: rgb(204, 0, 0) 0px 16px 0px 0px inset;
    display: flex;
}
.company-logo-wrapper {
    display: flex;
    flex-shrink: 0;
    height: 60px;
    padding: 15px 80px 0px 33px;
    position: relative;
}
.company-logo-wrapper img {
    height: 33px;
}
.header-nav-wrapper {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 16px;
}
.header-nav-wrapper > img {
    height: 10px;
}
.header-nav-list {
    column-gap: 24px;
    display: flex;
    margin-left: auto;
    padding-right: 20px;
}
.header-nav-list > li {
    color: rgb(84, 106, 117);
    font-size: 12px;
    position: relative;
}
.header-nav-list > li + li::before {
    background-color: rgb(84, 106, 117);
    content: '';
    height: 10px;
    left: -12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.header-nav-list > li > a {
    color: inherit;
}
.bottom-header {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(11, 42, 58, 0.08) 0px 8px 8px 0px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px 24px;
    position: sticky;
    top: 0px;
    z-index: 1;
}
.bottom-header > a {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    column-gap: 8px;
}
.bottom-header > a:hover {
    text-decoration: none;
}
.bottom-header > a > img {
    height: 64px;
    width: 64px;
}
.bottom-header > a > h2 {
    color: rgb(11, 42, 58);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}
.contents-wrapper {
    align-content: center;
    flex: auto;
    margin: 0 auto;
    max-width: 1040px;
    padding: 40px;
    width: 100%;
}
.coming-soon-contents {
    text-align: center;
}
.coming-soon-contents > h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 2;
    margin-top: 16px;
}
.coming-soon-contents > p {
    font-size: 14px;
    margin-top: 16px;
}
.footer {
    padding-top: 50px;
}
.top-footer {
    -webkit-box-align: center;
    align-items: center;
    display: flex;
    gap: 20px;
    padding: 0px 33px 6.5px;
}
.top-footer > img {
    height: 10px;
}
.top-footer > ul {
    display: flex;
}
.top-footer > ul > li {
    color: rgb(84, 106, 117);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.012em;
    line-height: 1.4;
}
.top-footer > ul > li + li {
    margin-left: 24px;
    position: relative;
}
.top-footer > ul > li + li::before {
    background-color: rgb(84, 106, 117);
    content: '';
    height: 10px;
    left: -12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.top-footer > p {
    display: none;
}
.bottom-footer {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(204, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    font-size: 10px;
    font-weight: 300;
    -webkit-box-pack: justify;
    justify-content: space-between;
    line-height: 1;
    letter-spacing: 0.012em;
    padding: 8px 20px 8px 33px;
}
.bottom-footer > img {
    height: 11px;
}
.bottom-footer > .sp {
    display: none;
}
.bottom-footer > p {
    transform: scale(0.9);
    transform-origin: right center;
}
@media screen and (max-width: 767px) {
    .header {
        padding-bottom: 0;
    }
    .top-header {
        background-color: rgb(204, 0, 0);
        -webkit-box-pack: center;
        justify-content: center;
        padding: 11px;
    }
    .company-logo-wrapper {
        height: auto;
        padding: 0px;
    }
    .header-nav-wrapper {
        display: none;
    }
    .company-logo-wrapper img {
        height: 30px;
    }
    .bottom-header {
        padding: 13px 16px;
    }
    .bottom-header > a > img {
        height: 40px;
        width: 40px;
    }
    .contents-wrapper {
        padding: 40px 16px 24px;
    }
    .footer {
        padding-top: 32px;
    }
    .top-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 0px;
        padding: 0px 24px 12px;
    }
    .top-footer .pc {
        display: none;
    }
    .top-footer > ul {
        flex-direction: column;
    }
    .top-footer > ul > li {
        align-items: center;
        display: flex;
        height: 25px;
    }
    .top-footer > ul > li + li {
        margin-left: 0;
        margin-top: 8px;
    }
    .top-footer > ul > li + li::before {
        content: none;
    }
    .top-footer > p {
        display: block;
        font-size: 12px;
        margin-top: 24px;
        text-align: center;
        width: 100%;
    }
    .bottom-footer {
        flex-direction: column;
        padding: 15px;
    }
    .bottom-footer > img {
        height: 22px;
    }
    .bottom-footer > .pc {
        display: none;
    }
    .bottom-footer > img.sp {
        display: inline;
        height: 22.5px;
    }
    .bottom-footer > p {
        display: none;
    }
}
