@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #221C22;
    font: 1em/1.3em 'Segoe UI', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 540px;
    margin: 1rem auto;
    border: solid 2px #4B4C4D;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.625em;
    line-height: 1.3em;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}
h2 {
    font-size: 2.2em;
    line-height: 1.3em;
    font-weight: 600;
    padding: 2rem 2rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F37021;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    font-weight: 600;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "\2012";
    float: left;
    margin: -1px 0 0 -1rem;
    color: #221C22;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 50%;
}
.ttl div {
    background-color: #F47221;
    padding: 2rem 1.25rem 0 2rem;
}
.ttl div p{
    color: #fff;
    font-size: 1.125em;
    line-height: 1.3;
}
.ttl img {
    display: block;
    margin: 0 auto;
}
.box {
    flex-direction: row-reverse;
    padding: 2rem 2rem 0;
    margin-bottom: -1rem;
}
.box div:first-of-type p {
    letter-spacing: 0.5px;
}
figcaption {
    color: #F26D21;
    font-size: 1.063em;
    line-height: 1.3em;
    text-align: center;
}
strong {
    font-weight: 600;
}
footer {
    padding: 0 2rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
}
footer p {
    padding-bottom: 0.25rem;
}
@media only screen and (max-width: 538px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    h2 {
        font-size: 1.75em;
        line-height: 1.3em;
        padding: 1rem;
    }
    .flex {
        display: block;
    }
    .flex div {
        width: auto;
    }
    .ttl div {
        padding: 1rem 1rem 0.5rem;
    }
    .box {
        padding: 1rem;
        margin: 0;
    }
    figure {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer {
        padding:0 1rem 1rem;
    }
    .hide_m{
        display: none;
    }
    h1,h1+p,h2{
        text-align: center;
    }
}
@media only screen and (max-width: 425px) {
    footer {
        flex-flow: wrap column;
        align-items: center;
    }
    footer div {
        margin-bottom: 1rem;
    }
    footer p{
        text-align: center;
    }
}