@media screen and (max-width: 768px) {
	body {
		margin: 2px;
	}
}

.theme-root {
	margin: 0;
	padding: 0;
	width: 100%;
}

.theme-root * {
	margin: 0px;
	padding: 0px;
	font-size: 14pt;
}

.header,
.main-content,
.sidebar,
.footer {
	position: relative;
}

.header {
	background-color: #f9fbfc;
	position: sticky;
	top: 0px;	
	display: flex;
	flex-direction: row;
	height: 66px;
	z-index: 100;
}

.logo {
	position: relative;
	top: 0px;
	left: 0px;
	flex-basis: 33%;
	text-align: center;
	vertical-align: middle;
	display: flex;
	flex-direction: row;
}

.logo img {
	/*width: 66px;*/
}

nav.pc-nav {
	position: relative;
	width: 100%;
	height: 100%;
}
nav.pc-nav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	height: 100%;
	vertical-align: middle;
}
nav.pc-nav ul li {
	width: 100px;
	text-align: center;
	border-right: 1px solid #eeeeee;
	height: 100%;
	display: table;
}
nav.pc-nav ul li:last-child {
	border-right: none;
}
nav.pc-nav ul li a {
	position: relative;
	text-decoration: none;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
nav.pc-nav ul li a:before, 
nav.pc-nav ul li a:after {
	position: absolute;
	bottom: 0px;
	content: "";
	width: 0px;
	padding-top: 3px;
	border-bottom: 3px solid #d23d2a;
	transition: 0.3s;
}
nav.pc-nav ul li a:before {
	left: 50%;
}
nav.pc-nav ul li a:after {
	right: 50%;
}
nav.pc-nav ul li a:hover:before, 
nav.pc-nav ul li a:hover:after {
	width: 50%;
}

.hero {
	margin-top: 1px;
	padding: 0px;
	height: calc(100vh - 66px - 10px);
	position: relative;
}
.hero .hero-slogan-title {
	position: absolute;
	display: inline-block;
	font-size: 2.5rem;
	color: #ffffff;
	top: calc(50% - 66px - 2.5rem);
	background-color: rgba(0,0,0,0.4);
	width: 100%;
	text-align: center;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.hero img {
	width: 100%;
	height: 100%;
}
.main {
	display: flex;
		padding-bottom: 2rem;
}
@media screen and (min-width: 767px) {
	.mian {

	}
}

.main-content {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.no-mobile {
		display:none;
	}
}

.main-content article.front-page {
	background-color: #ffffff;
	border-top: 1px solid #fee;
	position: relative;
}

@media screen and (min-width: 769px) {
	.main-content article.front-page {
		min-height: calc(100vh - 66px);
	}
}

.main-content article.front-page img.background-image {
	width: 100%;
	height: 100%;
}

.main-content article.front-page .article-title-middle-right {
	position: absolute;
	display: inline-block;
	font-size: 2.5rem;
	color: #333;
/*
	top: calc(60% - 66px - 2.5rem);
	right: 2.5rem;
*/
	top: calc(62% - 66px);
	right: calc(3rem);
	width: 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	text-align: right;
}
.main-content article.front-page .article-content-bottom-right {
	position: absolute;
	display: inline-block;
	color: #333;
/*
	top: calc(60% - 66px + 5rem);
	left: calc(50% + 2.5rem);
	width: calc(100vw - 50% - 2.5rem);
*/
	top: calc(70% - 66px + 5rem);
    left: calc(55%);
    width: calc(40%);
}

.main-content article.front-page .article-title-middle-left {
	position: absolute;
	display: inline-block;
	font-size: 2.5rem;
	color: #333;
	top: calc(50% - 66px - 1rem);
	left: 2.5rem;
	width: 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.main-content article.front-page .article-content-bottom-left {
	position: absolute;
	display: inline-block;
	color: #333;
	top: calc(50% - 66px + 11rem);
	left: 2.5rem;
	width: calc(100vw - 46%);
}
.main-content article.front-page .article-content-bottom-left p {
	line-height: 1.5rem;
	font-size: 1rem;
}
.main-content article.front-page .article-title-center {
	padding-top: 3.5rem;
	padding-bottom: 2rem;
	font-size: 2.5rem;
	text-align: center;
}
.main-content article.front-page .flex-container {
	display: flex;
	justify-content: space-evenly;
	/*height: calc(100vh - 66px - 6.5rem);*/
}

@media screen and (max-width: 414px) {
	.flex-container {
		display: flex;
		flex-direction: column;
	}
}

.main-content article.front-page .flex-container .item-container {
	width: 100vw;
	padding-bottom: 2rem;
	position: relative;
}

@media screen and (min-width: 415px) {
	.main-content article.front-page .flex-container .item-container {
		width: calc(33% - 18px);
		padding-bottom: 0;
	}
}

.main-content article.front-page .flex-container .item-container img {
	width: 100%;
	height: 200px;
	/*
	padding-top: 3rem;
	padding-bottom: 2rem;
   */
	padding-bottom: 1rem;
}
	
.main-content article.front-page .flex-container .item-container h3 {
	font-size: 1.5rem;
	text-align: center;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.main-content article.front-page .flex-container .item-container p {
	font-size: 1rem;
	text-align: center;
}

.main-content article.front-page .flex-container .about-table {
	border-spacing: 0;
	border-collapse: collapse;
	width: 98vw;
}
@media screen and (min-width: 415px) {
	.main-content article.front-page .flex-container .about-table {
		border-spacing: 0;
		border-collapse: collapse;
		width: 86%;
	}
}

.main-content article.front-page .flex-container .about-table th ,
.main-content article.front-page .flex-container .about-table td {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-top: 1px solid #ccc;
}

.main-content article.front-page .flex-container .about-table tr:last-child th ,
.main-content article.front-page .flex-container .about-table tr:last-child td {
	border-bottom: 1px solid #ccc;
}
.main-content article.front-page .flex-container .about-table th {
	background-color: #ededed;
	width: 30%;
}
.main-content article.front-page .flex-container .about-table td {
	width: 70%;
	padding-left: 1rem;
}
.main-content article.front-page .flex-container .about-table td ul {
	list-style: none;
}

/*
.sidebar {
	background-color: #eff;
	width: 25%;
}
*/
.footer {
	border-top: 10px solid #e5e8cc;
	width: 100%;
}

.footer .footer-content-container {
	background-color: #333;
	color: #eee;
}
.footer .footer-content-container .contact-link-container {
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	justify-content: center;
}
.footer .footer-content-container .contact-link {
	text-align: center;
    color: #eee;
    padding-top: 1rem;
    padding-bottom: 1rem;
	width: calc(100vw / 3 );
}
@media screen and (min-width: 415px) {
	.footer .footer-content-container .contact-link {
		text-align: center;
		color: #eee;
		padding-top: 1rem;
		padding-bottom: 1rem;
		width: calc(100vw / 7 );
	}
}
.footer .footer-content-container .contact-link:hover {
	background-color: #049b7e;
}

.footer .footer-content-container .attention {
	padding-left: 1rem;
	font-size: 0.8rem;
	line-height: 1rem;
}
.footer .copyright-container {
	background-color: #fff;
}
.footer .copyright-container small {
	padding-left: 1rem;
	display: inline-block;
	font-size: 12px;
}
