
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ======================================== */
/* スタイル */
/* ======================================== */
@media screen and (max-width: 499px) { 
    /*　画面サイズ 499pxまで適用　*/
    #container {
        width: 100%;
    }
}

@media screen and (min-width: 500px) { 
    /*　画面サイズ 499pxまで適用　*/
    #container {
        width: 500px;    
    }
}

body {
    background-color: #080808;
}

#container {
    margin: 0 auto;
    background-color: #e9e9eb;
    box-shadow: 0 0 8px #aaaaaa;
}

header {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 44px;
    background-color: #624284;
    text-align: center;
    z-index: 100;
}

.logo-box {
    position:relative;
    width: 100%;
    height: 100%;
}
.logo-image {
    height: 28px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.left-header,
.right-header {
    position:relative;
    width: 100%;
    margin-top: 5px;
    height: 24px;
}

.right-header img,
.left-header img {
    height: 70%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.right-header img {
    right: 0;
}

.left-header img {
    left: 0;
}


footer{     
    display: block;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;

    height: 40px;
    background-color: #ffffff;
}

.footer-icon {
    height: 90%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.footer-icon-box {
    flex: 1;
    min-width: 0px;
    text-align: center;
    position:relative;
} 

#footer-container {
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
}

#content {
}

#tow-column {
    display: flex;
}

#left-column,
#right-column {
    flex: 1;
}

#left-column {
    margin-left: 20px;
    margin-right: 10px;
}

#right-column {
    margin-right: 20px;
    margin-left: 10px;
}

.card {
    padding: 5px 0px;
}

.ex-card{
    padding-top: 5px;
    padding-bottom: 0;
    margin: 0;
}

.card-image {
    width: 100%;
    display: block;
}

.ex-card-frame {
    border-radius: 10px 10px 0 0;
    border-top: #624284 solid 3px;
    border-left: #624284 solid 3px;
    border-right: #624284 solid 3px;
    background-color: white;
}

.ex-card-container {
    display: flex;
}


.ex-card-left {
    margin-left:15px;
    margin-right:5px;
    flex: 1.1;
}

.ex-card-right {
    margin-right: 15px;
    margin-left: 5px;
    flex: 1;
}

.ex-card-title {
    text-align: center;
    margin: 10% auto;
    width: 55%;
}