@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #2B2C2E;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0000ff;
    text-decoration: underline;

}

h1 {
    font-size: 1.3rem;
    text-align: center;
}

h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
    list-style-type: none;
}

ul li::before {
    content: '\1F782';
    color: #B1B0B1;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

article {
    border: 1px solid #dcdada;
}

article section {
    border-bottom: 1px solid #dcdada;
    padding: 1rem;
}

.margin {
    margin-bottom: 1.5rem;
}

.margin2 {
    margin-bottom: 2.5rem;
}

.info {
    display: flex;
    gap: 3rem;
    padding: 2rem 1rem 1rem;
}

.info section {
    width: 50%;
}
.center {
    text-align: center;
}

.info p {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info .qr {
    display: flex;
    gap: 3rem;
}


  @keyframes slidy { 
    0% { 
        left: 0%;
    }
    47% {
        left: 0%;
    }
    50% { 
        left: -100%;
    }
    97% {
        left: -100%;
    }
    100% {
        left: -200%;
    }
  }
  
  .slider {
    overflow: hidden;
  }
  
  .slider figure {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 12s slidy infinite;
  }
  
  figure img {
    width: 33.333333333333336%;
    float: left;
  }
    
    


@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info section {
        width: 100%;
    }

    .info p {
        text-align: center;
    }
    .qr {
        justify-content: center;
    }
}

@media only screen and (max-width: 40rem) {
    .title {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

