@charset "UTF-8";
/*********************************
preset variables
*********************************/
:root {
    /* color preset */
    --color1: #E33C34;
    --color2: #5BB2DD;
    --color3: #91CA3D;
    --color4: #FF6700;
    --bgColor: #EFF6FC;
    --linkColor: #00429A;
    /* width preset */
    --gutter: 1.3rem;
    --gap: 3rem;
    --headerHeight: ;
    --contentWidth: 1200px;
}
/* OVERWRITE RADIX */

body {
    min-width: var(--contentWidth);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.centering {width: var(--contentWidth);max-width: var(--contentWidth)}

.btn {
    background: var(--color1);
}
a {
    color: var(--linkColor);
}
/* OVERWRITE end */
/*************************************
* START header
*************************************/
header.centering {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
h1 {
    flex-grow: 1;
    height: 50px;
    background: url(../img/theme/scienceweb_logo.png) no-repeat left center;
}
nav.centering {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #c87460;
}
nav .gnav {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-left: 1rem;
}
nav .gnav li a {
    padding: 0 0.5rem;
	color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

/*************************************
* END header START main
*************************************/
img.eyecatch {
    width: 1200px;
    margin: 0 auto;
}
article {
    padding: 4rem 0;
}
/* style for block element and else */
.block-center {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.flex-sa {
    display: flex;
    justify-content: space-around;
}
.flex-sb {
    display: flex;
    justify-content: space-between;
}
.flex-se {
    display: flex;
    justify-content: space-evenly;
}
.bg-dot {
    background: url(../img/theme/bg_dot.png) repeat;
}
.bg-color {
    background: var(--bgColor);
}
.border-tb {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}
.check-list li {
    position: relative;
    padding-left: 1.3rem;
}
.check-list li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    color: var(--color1);
    font-family: "Font awesome 5 free";
    font-weight: 700;
}
main h2 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}
main h2::after {
    content: "";
    display: block;
    width: 1em;
    height: .1em;
    margin: auto;
    background: currentColor;
}
main h3 {
    margin-bottom: 1.5rem;
    border-radius: .4rem;
    background: var(--color1);
    background: var(--useColor);
    color: #fff!important;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
main h4 {
    margin-bottom: .5rem;
    font-size: 1.3rem;
    font-weight: 700;
}
table {
    width: 100%;
}
table td {
    padding: .7rem 1rem;
    border: 1px solid #999;
}
table tr:nth-child(odd) {
    background: #F5F5F5;
}
.marker {
    display: inline-block;
    padding: .2rem 1rem;
    border-radius: .8rem;
    background: var(--useColor);
    color: #fff !important;
    font-size: .8rem;
    text-align: center;
    white-space: nowrap;
}
.color1 {
    --useColor: var(--color1);
    color: var(--color1);
}
.color2 {
    --useColor: var(--color2);
    color: var(--color2);
}
.color3 {
    --useColor: var(--color3);
    color: var(--color3);
}
.color4 {
    --useColor: var(--color4);
    color: var(--color4);
}
.QA dt {
    position: relative;
    padding: .5rem 0 .5rem 3rem;
    margin-bottom: .3rem;
    font-size: 1.2rem;
}
.QA dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: var(--color2);
    line-height: 1.7rem;
    font-size: 2rem;
    font-weight: 900;
}
.QA dd {
    position: relative;
    padding: .5rem 0 1rem 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #999;
}
.QA dd::before {
    content: "A";
    position: absolute;
    left: 3px;
    color: var(--color1);
    line-height: 1.7rem;
    font-size: 2rem;
    font-weight: 900;
}

/* style for inline element */
.color1 {
    --useColor: var(--color1);
    color: var(--color1);
}
.color2 {
    --useColor: var(--color2);
    color: var(--color2);
}
.color3 {
    --useColor: var(--color3);
    color: var(--color3);
}
.text-large {
    font-size: 1.5rem;
}
.btn:hover {
    text-decoration: none;
}
.btn.large {
    padding: .3rem 3rem;
    font-size: 1.5rem;
}

/* #home */
.em-1 {
    color: var(--color1);
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}
.em-2 {
    font-size: 1.7rem;
    font-weight: 900;
    text-align: center;
}

/*************************************
* END main START footer
*************************************/
.to-top {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color2);
    color: #fff;
    line-height: 50px;
    font-size: 40px;
    text-align: center;
    position: fixed;
    right: 50px;
    bottom: 100px;
    z-index: 999;
}
footer {
    padding: 2rem 0;
    border-top: 2px solid var(--color2);
}
.foot-list {
    position: relative;
    margin-left: 2rem;
    padding-left: 1rem;
}
.foot-list::before {
    content: "\f105";
    position: absolute;
    left: 0;
    color: #555;
    font-weight: 700;
    font-family: "Font awesome 5 Free";
}
.foot-list li:first-child {
    font-weight: 700;
    margin-bottom: .5rem;
}
.foot-list li a {
    color: inherit;
    font-size: .9rem;
}
.copyright {
    margin-top: 2rem;
    color: #999;
    font-size: .9rem;
    text-align: right;
}
.footh1 {
    width: 300px;
}



@media (min-width: 1200px)
{
    .uniq-centering {
        width: 1200px !important;
        max-width: 1200px !important;
    }
}