* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #3D3E3B;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper p.mb-1 {
    margin-bottom: 20px;
}

#wrapper .icon {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

#wrapper .qr {
    border-right: 7px solid #156374;
    padding-right: 30px;
    padding-top: 6px;
}

#wrapper .icon img {
    margin-right: 15px;
}

#wrapper .hide {
    display: none;
}

#wrapper .content1 {
    width: 324px;
}

#wrapper .content2 {
    width: 306px;
}

#wrapper .content3 {
    width: 265px;
}

#wrapper h3 span {
    display: block;
    color: #818587;
}

#wrapper .header {
    position: relative;
}

#wrapper .article {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}

#wrapper .footer {
    padding: 30px 50px;
    background: #A7A9AC;
}

#wrapper .footer p {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.5;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

#wrapper .center p {
    text-align: center;
}

#wrapper .content p {
    position: absolute;
    top: 7%;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    width: 402px;
    left: 5%;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 65%;
}

#wrapper h1 .block {
    display: block;
}

#wrapper .line {
    background: #1C95A9;
    background: linear-gradient(to right, #1C95A9 0, #07798B 50%, #146677 100%);
    padding: 7px;
}

#wrapper h1 .small {
    font-size: 24px;
    line-height: 1.4;
    display: block;
    font-weight: 400;
}

#wrapper .mobil {
    display: none;
}

#wrapper h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

#wrapper h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #1A6375;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    list-style: none;
}

#wrapper ul li {
    padding-left: 23px;
    position: relative;
}

#wrapper ul li:before {
    content: url(icon.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#wrapper .footer a {
    color: #fff;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    background: #156274;
    color: #fff;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

@media (max-width: 998px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper .content p {
        font-size: 1.15vw;
        width: 40%;
        top: 7%;
    }

    #wrapper h1 {
        font-size: 5.5vw;
    }

    #wrapper h2 {
        font-size: 24px;
    }

    #wrapper .footer p {
        font-size: 20px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 767px) {
    #wrapper .content {
        padding: 10px 16px;
        background: #1C95A9;
        background: linear-gradient(to right, #1C95A9 0, #07798B 50%, #146677 100%);
    }

    #wrapper .content p {
        position: static;
        text-align: left;
        margin-bottom: 10px;
        font-size: 13px;
        width: auto;
    }

    #wrapper h1 {
        transform: none;
        position: static;
        font-size: 38px;
        width: auto;
    }

    #wrapper .mobil {
        display: inline;
    }

    #wrapper .pc {
        display: none;
    }

    #wrapper .article {
        padding: 10px 16px;
    }

    #wrapper .footer {
        padding: 10px 16px;
    }

    #wrapper .flex {
        align-items: center;
    }

    #wrapper .content1,
    #wrapper .content2,
    #wrapper .content3 {
        width: auto;
        margin-bottom: 15px;
    }

    #wrapper .article {
        display: block;
    }
}

@media all and (max-width: 660px) {
    #wrapper .flex {
        display: block;
    }

    #wrapper .center {
        margin-bottom: 10px;
    }

    #wrapper .qr {
        border: none;
        padding: 0 0 10px;
        display: flex;
        justify-content: center;
    }

    #wrapper .logo {
        display: flex;
        justify-content: center;
    }
}