@font-face {
    font-family: "M+ 1c light Sub";
    src: url("../fonts/mplus-1c-light-sub.eot");
    src: url("../fonts/mplus-1c-light-sub.eot?#iefix") format("embedded-opentype"),
    url("../fonts/mplus-1c-light-sub.woff") format("woff"),
    url("../fonts/mplus-1c-light-sub.ttf") format("truetype");
}
@font-face {
    font-family: "M+ 1c regular Sub";
    src: url("../fonts/mplus-1c-regular-sub.eot");
    src: url("../fonts/mplus-1c-regular-sub.eot?#iefix") format("embedded-opentype"),
    url("../fonts/mplus-1c-regular-sub.woff") format("woff"),
    url("../fonts/mplus-1c-regular-sub.ttf") format("truetype");
}
@font-face {
    font-family: "M+ 1c medium Sub";
    src: url("../fonts/mplus-1c-medium-sub.eot");
    src: url("../fonts/mplus-1c-medium-sub.eot?#iefix") format("embedded-opentype"),
    url("../fonts/mplus-1c-medium-sub.woff") format("woff"),
    url("../fonts/mplus-1c-medium-sub.ttf") format("truetype");
}
@font-face {
    font-family: "M+ 1c bold Sub";
    src: url("../fonts/mplus-1c-medium-sub.eot");
    src: url("../fonts/mplus-1c-medium-sub.eot?#iefix") format("embedded-opentype"),
    url("../fonts/mplus-1c-medium-sub.woff") format("woff"),
    url("../fonts/mplus-1c-medium-sub.ttf") format("truetype");
}
@font-face {
    font-family: "M+ 1c heavy Sub";
    src: url("../fonts/mplus-1c-heavy-sub.eot");
    src: url("../fonts/mplus-1c-heavy-sub.eot?#iefix") format("embedded-opentype"),
    url("../fonts/mplus-1c-heavy-sub.woff") format("woff"),
    url("../fonts/mplus-1c-heavy-sub.ttf") format("truetype");
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
::selection {
    background-color: rgba(0, 0, 0, 0.3);
}
::-moz-selection {
    background-color: rgba(0, 0, 0, 0.3);
}
html {
    overflow-x: hidden;
    overflow-y: auto;
}
html, body {
    background-color: #009688;
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    margin-top: 112px;
    font-family:
        "M+ C Type-2 (basic latin) Regular",
        "M+ Type-1 (general-j) Regular",
        "M+ 1c regular Sub", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header {
    width: 100%;
    background-color: #009688;
    color: #FFF;
    position: absolute;
    top: 0;
}
header h1 {
    margin: 0;
    margin-top: 56px;
    padding: 0;
    width: 100%;
    background-color: #009688;
}
header h1 a, header h1 a:link, header h1 a:visited, header h1 a:hover, header h1 a:active {
    display: block;
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 32px;
    text-decoration: none;
    color: #FFF;
    background-color: transparent;
}
header input {
    display: none;
}
header nav {
    z-index: 2147483646;
}
header nav ul {
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
    width: 100%;
    z-index: 2147483647;
    /*display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: space-around;
    align-content: space-around;*/
}
header nav ul li {
    position: relative;
    width: 100%;
}
header nav ul li a {
    display: block;
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .375s;
}
header nav ul li ul li a {
    background-color: rgba(0, 0, 0, 0.2);
}
.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 5px;
    background-color: #FAFAFA;
}
.breadcrumb li {
    display: inline-block;
    margin-right: 0.5em;
}
.breadcrumb li:last-of-type {
    margin-right: 0;
}
.breadcrumb li::after {
    content: ">";
    display: inline;
}
.breadcrumb li:last-of-type::after {
    content: "";
    display: none;
}
.big-image {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
.big-image .title {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 60px;
    font-size: 40px;
    overflow: hidden;
    color: #FFF;
    line-height: 60px;
    background-color: rgba(0,150,136 ,0.5);
    outline: solid 2px #FAFAFA;
    cursor: default;
    transition: .375s;
}
.big-image .title span {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 1;
    text-shadow: 0 0 5px #000;
    transition: .375s;
}
.big-image .title::before {
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 20%;
    height: 100%;
    background-color: #FFF;
    transform: skewX(-45deg);
    transition: .375s;
}
.big-image .title:hover::before {
    left: 11%;
    width: 41%;
    transform: skewX(45deg);
}
.big-image .title::after {
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    width: 20%;
    height: 100%;
    background-color: #FFF;
    transform: skewX(-45deg);
    transition: .375s;
}
.big-image .title:hover::after {
    right: 11%;
    width: 41%;
    transform: skewX(45deg);
}
.big-image .title:hover {
    background: rgba(0,150,136 ,0.8);
}
.big-image .title:hover span {
    color: #009688;
    text-shadow: none;
}
article {
    background-color: #FFF;
    padding: 1em;
    color: #424242;
}
article h1, article h2, article h3, article h4, article h5, article h6 {
    margin: 0;
}
article p {
    font-size: 1rem;
    margin: 0.5em 0;
}
section {
    margin-bottom: 5px;
    padding: 0.5em;
    border: 1px solid #212121;
    border-radius: 2px;
    background-color: #F5F5F5;
}
aside {
    padding: 0.5em;
    background-color: #009688;
    border: 1px dashed #F5F5F5;
    color: #FFF;
    border-radius: 5px;
}
article::after, section::after, aside::after {
    content: "";
    display: block;
    clear: both;
}
article>h1, article>h2, article>h3, article>h4, article>h5, article>h6 {
    font-size: 2rem;
    margin-left: 10px;
    margin-bottom: 0.5em;
    padding-left: 5px;
    color: #009688;
    border-bottom: 2px dotted #009688;
    box-shadow: -10px 0 #009688;
}
section>h1, section>h2, section>h3, section>h4, section>h5, section>h6 {
    font-size: 1.5rem;
    margin-left: 5px;
    margin-bottom: 0.5em;
    padding-left: 5px;
    color: #009688;
    box-shadow: -5px 0 #009688;
}
aside>h1, aside>h2, aside>h3, aside>h4, aside>h5, aside>h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    color: #FFF;
    border-bottom: 1px solid #FAFAFA;
}
main ul {
    margin: 0;
    list-style: none;
}
main ul li {
	position: relative;
}
main ul li.new::after {
    content: "NEW";
    margin-left: 2px;
    padding: 2px;
    background: -moz-linear-gradient(top, rgba(244,67,54,0.2) 0%, rgba(244,67,54,0.2) 80%, rgba(244,67,54,0.5) 80%, rgba(244,67,54,0.5) 99%, rgba(244,67,54,0.5) 100%);
    background: -webkit-linear-gradient(top, rgba(244,67,54,0.2) 0%,rgba(244,67,54,0.2) 80%,rgba(244,67,54,0.5) 80%,rgba(244,67,54,0.5) 99%,rgba(244,67,54,0.5) 100%);
    background: linear-gradient(to bottom, rgba(244,67,54,0.2) 0%,rgba(244,67,54,0.2) 80%,rgba(244,67,54,0.5) 80%,rgba(244,67,54,0.5) 99%,rgba(244,67,54,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002196f3', endColorstr='#802196f3',GradientType=0 );
}
main ul li::before {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 6px;
	height: 6px;
	border-right: 1px solid #424242;
	border-bottom: 1px solid #424242;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
main aside ul li::before {
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
img.text-svg {
    height: 1em;
    width: auto;
    vertical-align: middle;
}
figure.img {
    margin: 0;
    margin-bottom: 5px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #212121;
    border-radius: 2px;
    background-color: #009688;
    color: #FFF;
    text-align: center;
}
figure.img img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 390px;
}
hr {
    width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
pre {
    background-color: #009688;
    color: #FFF;
    padding: 5px;
    overflow-x: auto;
    overflow-y: visible;
}
code {
    font-family:
        "M+ mn Type-1 (basic latin) Regular",
        "M+ Type-1 (general-j) Regular",
        "M+ 1c regular Sub", sans-serif;
}
samp {
    display: block;
    padding: 5px;
    font-size: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
blockquote {
    width: 100%;
    margin-left: 0;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}
blockquote::before {
    content: url(../img/quote.svg);
    display: block;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
blockquote cite {
    display: block;
    text-align: right;
}
blockquote cite::before {
    content: "引用元: ";
    display: inline;
    opacity: 0.5;
}
dl dt {
    font-size: 1.2em;
}
main a {
    text-decoration: underline;
}
main a:link {
    color: #009688;
}
main aside a:link {
    color: #FFF;
}
main a:visited {
    color: #009688;
}
main aside a:visited {
    color: #FFF;
}
main a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
main a:active {
    background-color: rgba(0, 0, 0, 0,4);
}
em {
    font-style: normal;
    font-family:
        "M+ C Type-2 (basic latin) Bold",
        "M+ Type-1 (general-j) Bold",
        "M+ 1c bold Sub", sans-serif;
}
strong {
    font-style: normal;
    text-decoration: underline;
    font-family:
        "M+ C Type-2 (basic latin) Heavy",
        "M+ Type-1 (general-j) Heavy",
        "M+ 1c heavy Sub", sans-serif;
}
small {
    font-family:
        "M+ C Type-2 (basic latin) Light",
        "M+ Type-1 (general-j) Light",
        "M+ 1c light Sub", sans-serif;
}
q {
    background-color: rgba(0, 0, 0, 0.1);
}
q::before {
    content: url(../img/quote.svg);
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
samp {
    font-size: 100%;
    font-family:
        "M+ C Type-1 (basic latin) Regular",
        "M+ Type-1 (general-j) Regular",
        "M+ 1c regular Sub", sans-serif;
}
kbd {
    font-size: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin: 2px;
    font-family:
        "M+ mn Type-1 (basic latin) Regular",
        "M+ Type-1 (general-j) Regular",
        "M+ 1c regular Sub", sans-serif;
}
kbd>kbd {
    border: 2px outset #BBB;
    border-radius: 4px;
    padding: 0 2px;
}
i {
    font-style: italic;
}
b {
    font-weight: normal;
    font-family:
        "M+ C Type-1 (basic latin) Bold",
        "M+ Type-1 (general-j) Bold",
        "M+ 1c bold Sub", sans-serif;
}
u {
    text-decoration: underline;
}
mark {
    background-color: #009688;
    color: #FFF;
}
ins {
    text-decoration: underline;
}
del {
    text-decoration: line-through;
    opacity: 0.5;
}
.table-wrap {
    max-width: 100%;
    overflow: auto;
    white-space: nowrap;
}
table {
    border-top: 1px solid #424242;
    border-left: 1px solid #424242;
    border-collapse: collapse;
}
table caption {
    font-family:
        "M+ C Type-1 (basic latin) Bold",
        "M+ Type-1 (general-j) Bold",
        "M+ 1c bold Sub", sans-serif;
}
table th, table td {
    border-right: 1px solid #424242;
    border-bottom: 1px solid #424242;
    padding: 2px;
}
table th {
    background-color: rgba(0, 0, 0, 0.1);
    font-weight: normal;
    font-family:
        "M+ C Type-1 (basic latin) Medium",
        "M+ Type-1 (general-j) Medium",
        "M+ 1c medium Sub", sans-serif;
}
table td.center {
    text-align: center;
}
table th.blue, table td.blue {
    background: -moz-linear-gradient(top, rgba(33,150,243,0) 0%, rgba(33,150,243,0) 80%, rgba(33,150,243,0.5) 80%, rgba(33,150,243,0.5) 99%, rgba(33,150,243,0.5) 100%);
    background: -webkit-linear-gradient(top, rgba(33,150,243,0) 0%,rgba(33,150,243,0) 80%,rgba(33,150,243,0.5) 80%,rgba(33,150,243,0.5) 99%,rgba(33,150,243,0.5) 100%);
    background: linear-gradient(to bottom, rgba(33,150,243,0) 0%,rgba(33,150,243,0) 80%,rgba(33,150,243,0.5) 80%,rgba(33,150,243,0.5) 99%,rgba(33,150,243,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002196f3', endColorstr='#802196f3',GradientType=0 );
}
table th.red, table td.red {
    background: -moz-linear-gradient(top, rgba(244,67,54,0) 0%, rgba(244,67,54,0) 80%, rgba(244,67,54,0.5) 80%, rgba(244,67,54,0.5) 99%, rgba(244,67,54,0.5) 100%);
    background: -webkit-linear-gradient(top, rgba(244,67,54,0) 0%,rgba(244,67,54,0) 80%,rgba(244,67,54,0.5) 80%,rgba(244,67,54,0.5) 99%,rgba(244,67,54,0.5) 100%);
    background: linear-gradient(to bottom, rgba(244,67,54,0) 0%,rgba(244,67,54,0) 80%,rgba(244,67,54,0.5) 80%,rgba(244,67,54,0.5) 99%,rgba(244,67,54,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002196f3', endColorstr='#802196f3',GradientType=0 );
}
.frame {
    position: relative;
    width: 100%;
}
.frame::before {
    content:"";
    display: block;
    padding-top: 56.25%;
}
.frame>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: space-around;
    align-content: space-around;
    border-left: 1px solid #424242;
    border-top: 1px solid #424242;
    font-size: 0;
}
.flex>div {
    box-sizing: border-box;
    border-right: 1px solid #424242;
    border-bottom: 1px solid #424242;
}
.flex>div img {
    width: 100%;
    height: auto;
}
.flex.item-1>* {
    width: 100%;
}
.flex.item-2>* {
    width: 50%;
}
.flex.item-3>* {
    width: 33.333%;
}
.flex.item-4>* {
    width: 25%;
}
.flex.item-5>* {
    width: 20%;
}
.flex.item-6>* {
    width: 16.666%;
}
#pageTopBtn {
    display: none;
    z-index: 2147483647;
}
#pageTopBtn.show {
    display: block;
    height: 56px;
    line-height: 56px;
    position: fixed;
    z-index: 9997;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding-right: 1em;
    cursor: pointer;
}
#pageTopBtn div {
    display: inline-block;
    height: 56px;
    width: 56px;
    background: url(../img/page-top-arrow.svg);
    background-size: contain;
    vertical-align: middle;
    transition: .375s;
}
#pageTopBtn.down div {
    transform: rotate(180deg);
}
.notSelect {
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
footer {
    background-color: #009688;
    color: #FFF;
    padding: 5px;
}
@media screen and (max-width: 768px) {

/*スマホ用*/
header h1 {
    text-align: center;
    vertical-align: middle;
}
#menuBtn {
    display: block;
    width: 100%;
    height: 56px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2147483647;
}
#menuBtn>label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    cursor: pointer;
}
#menuBtn>label>div {
    position: relative;
    display: inline-block;
    margin: 16px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    transition: .375s;
}
#menuOpenClose:checked+#menuBtn>label>div {
    transform: rotate(180deg);
}
#menuBtn>label>div span {
    display: block;
    width: 75%;
    height: 8.333%;
    position: absolute;
    left: 12.5%;
    background-color: #FFF;
    transition: .375s;
}
#menuBtn>label>div span:nth-of-type(1) {
    top: 25%;
}
#menuBtn>label>div span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
#menuBtn>label>div span:nth-of-type(3) {
    bottom: 25%;
}
#menuOpenClose:checked+#menuBtn>label>div span:nth-of-type(1) {
    transform: translate(9px,1.5px) rotate(45deg);
    width: 11.314px;
}
#menuOpenClose:checked+#menuBtn>label>div span:nth-of-type(3) {
    transform: translate(9px,-1.5px) rotate(-45deg);
    width: 11.314px;
}
#menuBtn>label>span {
    display: inline-block;
    height: 100%;
    margin: -48px 10px 0;
    background-color: transparent;
    font-size: 24px;
    vertical-align: middle;
    line-height: 56px;
}
#navBack {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    visibility: hidden;
    z-index: 9998;
    transition: .375s;
}
#menuOpenClose:checked~#navBack {
    background-color: rgba(0, 0, 0, 0.8);
    visibility: visible;
}
#navBack label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
nav {
    display: block;
    width: 80%;
    height: 100%;
    max-width: 300px;
    position: fixed;
    top: 0;
    left: -80%;
    padding-top: 56px;
    z-index: 9998;
    background-color: #FFF;
    color: #000;
    overflow-y: auto;
    transition: .375s
}
#menuOpenClose:checked~nav {
    left: 0;
}
header nav ul li {
    position: relative;
}
header nav ul li a {
    display: inline-block;
    color: #000;
    padding-right: 42px;
    background-color: rgba(0, 0, 0, 0.1);
}
.navArrow {
    display: inline-block;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.navArrow div {
    width: 100%;
    height: 100%;
    background: url(../img/menu-arrow-down.svg);
    background-size: contain;
    vertical-align: middle;
    transition: .25s;
}
.navArrow.open div {
    transform: rotate(180deg);
}
header nav ul li ul {
    display: none;
}
section {
    margin-left: 0;
}
/*header nav ul li a {
    border-bottom: 1px solid #009688;
}
header nav ul li:last-of-type a {
    border-bottom: 0;
}
/*header nav ul li.hasUl>a::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 5px;
    margin-right: 1em;
    width: 1em;
    height: 100%;
    border-right: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    transform: rotate(45deg);
}
header nav ul li ul li a {
    background-color: rgba(0, 0, 0, 0.2);
}*/
figure.img {
    width: 100%;
    height: 100%;
}

}
@media screen and (min-width: 769px) {

/*パソコン用*/
header h1 {
    margin-top: 56px;
}
header h1 a {
    padding-left: 1em;
}
#menuBtn {
    display: none;
}
#navBack {
    display: none;
}
header nav ul li {
    display: inline-block;
    width: 20%; /* 100÷liの数 */
    vertical-align: top;
}
header nav {
    width: 100%;
    position: fixed;
    top: 0;
    background-color: transparent;
}
header nav ul li ul {
    position: absolute;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: .375s;
}
.navArrow {
    display:none;
}
header nav ul li:hover ul {
    transform: none;
    opacity: 1;
    visibility: visible;
}
header nav ul li ul li {
    display: inline-block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
header nav ul li a {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.5);
}
header nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
header nav ul li ul li a {
    background-color: rgba(0, 0, 0, 0.6);
}
header nav ul li ul li a:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
figure.img.left {
    float: left;
    margin-right: 0.5em;
}
figure.img.right {
    float: right;
    margin-left: 0.5em;
}

}
div[align=center] {
    max-width: 100% !important;
    overflow-x: auto;
}
div[align=center] * {
    z-index: 0 !important;
}
footer ~ * {
    max-width: 100% !important;
    z-index: 0 !important;
    overflow-x: auto;
}