@charset "utf-8";
/* CSS Document */

.overlay,
nav {
    display: none;
}

html {
	font-size:62.5%;
	height:100%;
    width:100%;
    scroll-behavior: smooth;
}

* html div#container {
	height:100%;
}
body > #container {
	height: auto;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
    position: relative;
	background-color: #f6f6f6;
}
body:before,
body:after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 662px;
    z-index: 0;
}
body:before {
    left: 0;
    right: calc(50% + 56px);
	background: radial-gradient(farthest-side ellipse at top left, #daebf4, rgba(246, 246, 246, 0));
}
body:after {
    left: calc(50% + 56px);
    right: 0;
	background: radial-gradient(farthest-side ellipse at top right, #daebf4, rgba(246, 246, 246, 0));
}
div#container {
	float: none;
	display:block;
	margin:0 auto;
	padding: 0;
	position:relative;
	min-height: 100%;
    width: 100%;
    z-index: 1;
}

.contents {
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}

body * {
    z-index: 1;
    position: relative;
}

header {
    height: 100px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-self: center;
}
header .contents {
    width: 1140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
header .contents a.portal img {
    display: block;
    width: 75%;
}
header .contents a.title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
}
header .contents ul {
    margin-left: -12px;
    overflow: hidden;
}
header .contents ul li {
    float: left;
    margin-left: 12px;
}
header .contents ul li img {
    width: 24px;
}

main .contents {
    padding-bottom: 75px;
}

main .contents ul.breadcrumb {
    font-size: 1.2rem;
    color: #afafaf;
    margin: 10px 0;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}
main .contents ul.breadcrumb li {
    float: left;
}
main .contents ul.breadcrumb li:after {
    content: "";
    width: 0.5em;
    height: 1px;
    background-color: #afafaf;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5em;
}
main .contents ul.breadcrumb li:last-child:after {
    display: none;
}

iframe {
    border: none;
    width: 100%;
    overflow: hidden;
    display: block;
    margin: 60px 0;
}

footer {
    background-color: #fff;
    padding: 40px 0 50px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
footer a.pagetop {
    position: absolute;
    right: 20px;
    bottom: calc(100% + 30px);
    display: flex;
    height: 120px;
    width: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #667fd9;
    color: #667fd9;
    border-radius: 100%;
    background-color: #fff;
}
@media screen and (min-width: 1400px) {
    footer a.pagetop {
        right: auto;
        left: calc(50% + 580px);
    }
}
footer a.pagetop:hover {
    text-decoration: none;
}
footer a.pagetop.fixed {
    position: fixed;
    bottom: 30px;
    top: auto;
}
footer a.pagetop img {
    margin-top: 10px;
}
footer .contents {
    position: relative;
}
footer ul {
    margin: 0 -20px -20px 0;
    overflow: hidden;
}
footer ul li {
    margin: 0 20px 20px 0;
    float: left;
    width: calc((100% - 60px)/ 3);
}
footer ul li:nth-child(3n + 1) {
    clear: both;
}
footer ul li a {
    display: flex;
    height: 88px;
    align-items: center;
    border-radius: 10px;
    padding: 0 30px;
    background-color: #f6f6f6;
}
footer hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #eee;
}
footer .foot {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .copy {
    position: absolute;
    bottom: calc(47px / 2);
    left: 50%;
    transform: translate(-50%, 50%);
    color: #aaa;
    font-size: 1.2rem;
}