@charset "utf-8";



/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
article, aside, footer, header, iframe, img, main, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	letter-spacing: 0.05em;
	color: #4d4d4d;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #ac4e7a;
}
a.opacity {
	transition: 0.25s opacity ease;
}
a.opacity:hover {
	opacity: 0.625;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 0.9375rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #0a61a2;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=button],
input[type=submit],
button,
textarea,
select {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	font-family: "Noto Sans JP", "Yu Gothic", YuGothic, sans-serif;
	font-size: 1rem;
	outline: none;
	border: none;
	margin: 0px;
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
textarea,
select {
	color: #4d4d4d;
	border: 1px solid #d9d9d9;
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
select {
	height: 40px;
	line-height: calc(40px - 2px);
}
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel] {
	padding: 0px 10px;
}
input[type=button],
input[type=submit],
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 60px;
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	border: 1px solid #4d4d4d;
	background-color: #4d4d4d;
	transition: 0.25s color ease, 0.25s background-color ease;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover {
	color: #4d4d4d;
	background-color: transparent;
}
input[type=radio],
input[type=checkbox] {
	position: relative;
	vertical-align: middle;
	width: 20px;
	margin-right: 5px;
	transform: translate(-9999px, -4px);
}
input[type=radio]::before,
input[type=checkbox]::before,
input[type=radio]::after,
input[type=checkbox]::after {
	position: absolute;
	left: 9999px;
	top: 0px;
	cursor: pointer;
	content: "";
}
input[type=radio]::before,
input[type=checkbox]::before,
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	width: 20px;
	height: 20px;
	border: 1px solid #d9d9d9;
	background-color: #ffffff;
}
input[type=radio]::after,
input[type=checkbox]::after,
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after,
label.alternate input[type=radio]:checked + span::before,
label.alternate input[type=checkbox]:checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 10px;
	height: 10px;
	background-color: #4d4d4d;
}
input[type=radio]::after {
	transform: translate(5px, 5px);
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 8px;
	height: 13px;
	border-right: 3px solid #4d4d4d;
	border-bottom: 3px solid #4d4d4d;
}
input[type=checkbox]::after {
	transform: translate(6px, 1px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@supports (-ms-ime-align:auto) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
@media all and (-ms-high-contrast:none) {
	input[type=radio],
	input[type=checkbox] {
		margin-right: 0px;
		transform: translate(0px, 0px);
	}
}
label {
	vertical-align: middle;
}
label.alternate {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
label.alternate input[type=radio],
label.alternate input[type=checkbox] {
	display: none;
}
label.alternate input[type=radio] + span,
label.alternate input[type=checkbox] + span {
	display: block;
	position: relative;
	cursor: pointer;
	transform: translate(0px, -1px);
}
label.alternate input[type=radio] + span::before,
label.alternate input[type=checkbox] + span::before {
	display: block;
	position: absolute;
	content: "";
}
label.alternate input[type=radio] + span::before {
	transform: translate(4px, 4px);
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(5px, 0px) rotate(45deg);
}
textarea {
	line-height: 1.5rem;
	padding: 10px;
}
select {
	padding: 0px 40px 0px 10px;
	background: transparent url(../images/arrow-select.svg) no-repeat right 10px center;
	background-size: auto 10px;
}
select::-ms-expand {
	display: none;
}
::-webkit-input-placeholder {
	color: #d9d9d9;
}
:-ms-input-placeholder {
	color: #d9d9d9;
}
::placeholder {
	color: #d9d9d9;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #d9d9d9;
	margin: 20px 0px;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
div.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
}
div.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
iframe.wp-embedded-content {
	display: block;
	width: 100%;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
div#page div#trigger {
	position: absolute;
	height: 100%;
	left: 0px;
	top: 75vh;
	pointer-events: none;
}
div#page p.image img {
	width: 100%;
	height: auto;
}
div#page p.button-default {
	font-weight: 500;
}
div#page p.button-default a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 40px;
	border: 1px solid #4d4d4d;
	border-radius: 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
div#page p.button-default a:hover {
	color: #ffffff;
	background-color: #4d4d4d;
}
div#page p.button-default a::before {
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	right: 15px;
	top: calc(50% - 4px);
	border-right: 1px solid #4d4d4d;
	border-top: 1px solid #4d4d4d;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(45deg);
}
div#page p.button-default a:hover::before {
	border-color: #ffffff;
}
div#page p.button-alternate {
	font-size: 1.0625rem;
}
div#page p.button-alternate a {
	height: 60px;
	color: #ffffff;
	border-color: #ac4e7a;
	background-color: #ac4e7a;
}
div#page p.button-alternate a:hover {
	color: #ac4e7a;
	background-color: #ffffff;
}
div#page p.button-alternate a::before {
	border-color: #ffffff;
}
div#page p.button-alternate a:hover::before {
	border-color: #ac4e7a;
}
div#page div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
div#page div.button-wrapper-center {
	justify-content: center;
}
div#page div.button-wrapper p.button-default {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
div#page div.background-symbol {
	position: absolute;
	width: 556px;
	height: 535px;
	pointer-events: none;
	background: url(../images/background-symbol.svg) no-repeat center;
	background-size: auto 100%;
	opacity: 0.375;
}
div#page *.scroll.fade {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div#page *.scroll.fade.active {
	opacity: 1;
}

/* home
-------------------------------------------------------------------------------- */

body.home div#page {
	padding-top: 0px;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: fixed;
	width: 100%;
	height: 80px;
	left: 0px;
	top: 0px;
	z-index: 100;
	background-color: #ffffff;
}
body.admin-bar header#header {
	top: 32px;
}
header#header::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #d9d9d9;
	content: "";
}
header#header *#logo,
header#header nav#navi,
header#header p.button-contact {
	position: absolute;
}
header#header *#logo {
	left: 40px;
	top: 15px;
}
header#header *#logo a {
	display: block;
	width: 263px;
	height: 50px;
	background: url(../images/logo-white.svg) no-repeat center;
	background-size: auto 100%;
	transform: translateY(-2.5px);
}
header#header nav#navi,
header#header p.button-contact {
	top: 20px;
}
header#header nav#navi {
	right: 220px;
}
header#header nav#navi ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi ul li {
	font-weight: 500;
}
header#header nav#navi ul li:not(:last-child) {
	margin-right: 40px;
}
header#header nav#navi ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 40px;
}
header#header nav#navi ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 0px;
	border-bottom: 1px solid #4d4d4d;
	content: "";
	transition: 0.25s color ease, 0.25s transform ease;
	transform: scaleX(0);
}
header#header nav#navi ul li a:hover::before,
body.home header#header nav#navi > ul > li.home > a::before,
body.news header#header nav#navi > ul > li.news > a::before,
body.company header#header nav#navi > ul > li.company > a::before,
body.service header#header nav#navi > ul > li.service > a::before,
body.product header#header nav#navi > ul > li.product > a::before,
body.recruit header#header nav#navi > ul > li.recruit > a::before,
body.contact header#header nav#navi > ul > li.contact > a::before {
	transform: scaleX(1);
}
header#header p.button-contact {
	right: 40px;
}
header#header p.button-contact a {
	width: 140px;
}
header#header p.button-contact a::before {
	display: none;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header {
	background-color: transparent;
	transition: 0.25s background-color ease;
}
body.home div.scroll header#header {
	background-color: #ffffff;
}
body.home header#header::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.home div.scroll header#header::before {
	opacity: 1;
}
body.home header#header *#logo img {
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.home div.scroll header#header *#logo img {
	opacity: 1;
}
body.home header#header nav#navi ul li a,
body.home header#header p.button-contact a {
	color: #ffffff;
}
body.home div.scroll header#header nav#navi ul li a,
body.home div.scroll header#header p.button-contact a {
	color: #4d4d4d;
}
body.home header#header nav#navi ul li a::before {
	border-color: #ffffff;
}
body.home div.scroll header#header nav#navi ul li a::before {
	border-color: #4d4d4d;
}
body.home header#header p.button-contact a {
	border-color: #ffffff;
}
body.home header#header p.button-contact a:hover {
	color: #4d4d4d;
	background-color: #ffffff;
}
body.home div.scroll header#header p.button-contact a {
	color: #4d4d4d;
	border-color: #4d4d4d;
}
body.home div.scroll header#header p.button-contact a:hover {
	color: #ffffff;
	background-color: #4d4d4d;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	color: #ffffff;
	z-index: 1;
	background-color: #000000;
}
body.admin-bar div#cover {
	top: 32px;
}
div#cover p.image,
div#cover h1,
div#cover p.button-scroll {
	position: absolute;
}
div#cover p.image {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: url(../images/cover-image.jpg) no-repeat center;
	background-size: cover;
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
div#cover.active p.image {
	opacity: 1;
}
div#cover h1,
div#cover p.button-scroll {
	z-index: 10;
}
div#cover h1 {
	left: calc(50% - 500px);
	top: calc(50% - 80px);
	font-size: 4rem;
	font-weight: 500;
	line-height: 5rem;
	letter-spacing: 0.1em;
}
div#cover h1 span {
	opacity: 0;
	transition: 1.5s opacity ease-in;
}
div#cover.active h1 span {
	opacity: 1;
}
div#cover p.button-scroll {
	width: 20px;
	height: 40px;
	left: calc(50% - 10px);
	bottom: 20px;
}
div#cover p.button-scroll a {
	display: block;
	box-sizing: border-box;
	position: relative;
	height: 100%;
}
div#cover p.button-scroll a::before {
	position: absolute;
	width: 0px;
	height: 40px;
	left: 10px;
	top: 0px;
	border-right: 1px solid #ffffff;
	content: "";
}
div#cover p.button-scroll a::after {
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	left: calc(50% - 3px);
	top: 0px;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	animation: button-scroll 3.25s ease-out infinite;
}
@keyframes button-scroll {
	0% { transform: translateY(0px); }
	49.99% { transform: translateY(33px); }
	50.01% { transform: translateY(33px); }
	100% { transform: translateY(0px); }
}
div#space-cover {
	height: 100vh;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
}
main section {
	position: relative;
	overflow: hidden;
}
main section header {
	position: relative;
	text-align: center;
}
main section header.title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 260px;
}
main section header.title p.image,
main section header.title div.text {
	opacity: 0;
	transition: 1s opacity ease-in-out;
}
main section header.title.active p.image,
main section header.title.active div.text {
	opacity: 1;
}
main section header.title p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
main section#business-01 header.title p.image {
	background-image: url(../images/title-image-business-01.jpg);
}
main section#business-02 header.title p.image {
	background-image: url(../images/title-image-business-02.jpg);
}
main section#business-03 header.title p.image {
	background-image: url(../images/title-image-business-03.jpg);
}
main section#company header.title p.image {
	background-image: url(../images/title-image-company.jpg);
}
main section#news header.title p.image {
	background-image: url(../images/title-image-news.jpg);
}
main section#recruit header.title p.image {
	background-image: url(../images/title-image-recruit.jpg);
}
main section#contact header.title p.image {
	background-image: url(../images/title-image-contact.jpg);
}
main section#privacy-policy header.title p.image {
	background-image: url(../images/title-image-privacy-policy.jpg);
}
main section header.title div.text {
	position: relative;
	z-index: 1;
	color: #ffffff;
	transition-delay: 0.375s;
}
main section header.title div.text p.icon {
	margin-bottom: 20px;
}
main section header.title div.text p.icon img {
	width: auto;
	height: 100px;
	margin: auto;
}
main section header.title div.text h2 {
	text-indent: 0.1em;
	font-size: 1.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
main section div.content {
	position: relative;
	width: 1000px;
	margin: auto;
	padding: 100px 0px;
}
main h3.headline {
	font-size: 1.25rem;
	font-weight: 500;
	color: #0a61a2;
	letter-spacing: 0.1em;
	border-bottom: 2px solid #0a61a2;
	margin-bottom: 60px;
	padding-bottom: 5px;
}
main h3.headline span {
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
}
main h3.headline-alternate {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-indent: 0.1em;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 60px;
}
main h3.headline-alternate span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 40px;
	color: #ffffff;
	padding: 0px 30px;
	background-color: #0a61a2;
	border-radius: 20px;
}
main ul.emphasis li,
main ul.number li {
	position: relative;
	font-weight: 500;
	padding-left: 30px;
}
main ul.emphasis li:not(:last-child),
main ul.number li:not(:last-child) {
	margin-bottom: 10px;
}
main ul.emphasis li {
	font-size: 1.0625rem;
	color: #0a61a2;
}
main ul.emphasis li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 8px;
	top: 0.8rem;
	background-color: #0a61a2;
	content: "";
	border-radius: 50%;
}
main ul.number li span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0px;
	top: 6px;
	font-size: 0.8125rem;
	line-height: 1rem;
	color: #ffffff;
	background-color: #0a61a2;
	border-radius: 50%;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body h1,
main article.common div.body h2,
main article.common div.body h3,
main article.common div.body h4,
main article.common div.body h5,
main article.common div.body h6 {
	font-weight: 700;
}
main article.common div.body strong {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 0.8rem;
	background-color: #d9d9d9;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table th,
main article.common div.body table td {
	border: 1px solid #d9d9d9;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f5f5f5;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main div#pager,
main nav#navi-article {
	margin-top: 100px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
main div#pager,
main nav#navi-article ul {
	width: 720px;
}
main div#pager {
	padding: 0px 120px;
}
main div#pager span,
main div#pager a,
main nav#navi-article ul li a {
	display: block;
	transition: 0.25s color ease;
}
main div#pager span,
main div#pager a {
	color: #d9d9d9;
}
main div#pager span:not(.prev):not(.next),
main div#pager a:not(.prev):not(.next) {
	margin: 0px 10px;
}
main div#pager span.current,
main div#pager a.prev,
main div#pager a.next {
	color: #4d4d4d;
}
main div#pager a:hover,
main nav#navi-article ul li a:hover {
	color: #0a61a2;
}
main div#pager a.prev,
main div#pager a.next,
main nav#navi-article ul li.prev,
main nav#navi-article ul li.next {
	position: absolute;
	top: 0px;
}
main div#pager a.prev,
main nav#navi-article ul li.prev {
	left: 0px;
}
main div#pager a.next,
main nav#navi-article ul li.next {
	right: 0px;
}
main div#pager a.prev,
main nav#navi-article ul li.prev a {
	padding-left: 20px;
}
main div#pager a.next,
main nav#navi-article ul li.next a {
	padding-right: 20px;
}
main div#pager a.prev::before,
main div#pager a.next::before,
main nav#navi-article ul li.prev a::before,
main nav#navi-article ul li.next a::before {
	position: absolute;
	width: 10px;
	height: 10px;
	top: calc(50% - 5px);
	border-right: 1px solid #4d4d4d;
	border-top: 1px solid #4d4d4d;
	content: "";
	transition: 0.25s border-color ease;
}
main div#pager a.prev:hover::before,
main div#pager a.next:hover::before,
main nav#navi-article ul li.prev a:hover::before,
main nav#navi-article ul li.next a:hover::before {
	border-color: #0a61a2;
}
main div#pager a.prev::before,
main nav#navi-article ul li.prev a::before {
	left: 0px;
	transform: translate(5px, 1px) rotate(-135deg);
}
main div#pager a.next::before,
main nav#navi-article ul li.next a::before {
	right: 0px;
	transform: translate(-5px, 1px) rotate(45deg);
}
main nav#navi-article ul li.prev a,
main nav#navi-article ul li.next a {
	position: relative;
}

/* home
-------------------------------------------------------------------------------- */

main section#home-news div.background-symbol {
	right: calc(50% - 860px);
	top: -140px;
}
main section#home-news h2 {
	text-align: center;
	text-indent: 0.1em;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}
main section#home-news div.list-news-alternate {
	width: 720px;
	margin: 0px auto 40px auto;
	background-color: #f5f5f5;
	border-radius: 30px;
}
main section#home-news div.list-news-alternate div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 60px;
	line-height: 1.5rem;
	padding: 0px 40px;
}
main section#home-news div.list-news-alternate div.row p.created {
	width: 120px;
}
main section#home-news div.list-news-alternate div.row h3 {
	width: calc(100% - 120px);
	font-size: 0.9375rem;
	font-weight: 500;
}
main section#home-business div.background-symbol {
	left: calc(50% - 800px);
	bottom: 200px;
}
main section#home-business div.content {
	padding-top: 0px;
}
main section#home-business div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	/* align-items: center; */
	margin: 0px calc(50% - 50vw) 100px calc(50% - 50vw);
	background-color: #0a61a2;
}
main section#home-business div.image-text p.image {
	width: calc(50% - 100px);
}
main section#home-business div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-business div.image-text div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	width: calc(50% + 100px);
	color: #ffffff;
	padding: 40px 40px 40px 0px;
}
main section#home-business div.image-text div.text div.inner-text {
	width: 560px;
}
main section#home-business div.image-text div.text h2 {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
main section#home-business div.image-text div.text p.description {
	font-size: 1.0625rem;
	line-height: 2.25rem;
}
main section#home-business div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#home-business div.list div.row {
	width: calc(50% - 40px);
	margin-right: 40px;
}
main section#home-business div.list div.row h3 {
	overflow: hidden;
	text-indent: 0.1em;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	background-color: #ffffff;
	border-radius: 5px;
}
main section#home-business div.list div.row h3 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 220px;
	color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
main section#home-business div.list div.row:nth-child(1) h3 a {
	background-image: url(../images/home-image-02.jpg);
}
main section#home-business div.list div.row:nth-child(2) h3 a {
	background-image: url(../images/home-image-03.jpg);
}
main section#home-business div.list div.row h3 img {
	width: auto;
	height: 60px;
	margin: 0px auto 10px auto;
}
main section#home-company {
	background-color: rgba(10, 97, 162, 0.25);
}
main section#home-company div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#home-company div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
main section#home-company div.list div.row p.image {
	overflow: hidden;
	border-radius: 5px 5px 0px 0px;
}
main section#home-company div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 60px;
	font-size: 1.0625rem;
	font-weight: 500;
	color: #ffffff;
	border: 1px solid #0a61a2;
	border-top: none;
	background-color: #0a61a2;
	border-radius: 0px 0px 5px 5px;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main section#home-company div.list div.row a:hover h3 {
	color: #0a61a2;
	background-color: #ffffff;
}
main section#home-company div.list div.row h3::before {
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	right: 15px;
	top: calc(50% - 4px);
	border-right: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	content: "";
	transition: 0.25s border-color ease;
	transform: rotate(45deg);
}
main section#home-company div.list div.row a:hover h3::before {
	border-color: #0a61a2;
}
main section#office div.background-symbol {
	left: calc(50% - 900px);
	top: 260px;
}
main section#office div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#office div.list div.row div.text-map {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#office div.list div.row div.text-map div.text {
	width: calc(50% - 60px);
}
main section#office div.list div.row div.text-map div.text h3 {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
main section#office div.list div.row div.text-map div.text p.tel-fax {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
main section#office div.list div.row div.text-map div.text p.tel-fax span:not(:last-child) {
	margin-right: 20px;
}
main section#office div.list div.row div.text-map div.text p.access {
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main section#office div.list div.row div.text-map div.map {
	width: calc(50% + 20px);
	overflow: hidden;
	border-radius: 5px;
}
main section#office div.list div.row div.text-map div.map iframe {
	width: 100%;
	height: 320px;
}

/* business
-------------------------------------------------------------------------------- */

main section#business-01 div.background-symbol {
	right: calc(50% - 900px);
	bottom: -120px;
}
main section#business-01 div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px 40px 0px;
}
main section#business-01 div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
main section#business-01 div.list div.row h4 {
	font-size: 1.0625rem;
	font-weight: 500;
	border-bottom: 2px solid #0a61a2;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section#business-01 div.list div.row div.image p.row {
	overflow: hidden;
	border-radius: 5px;
}
main section#business-01 div.list div.row div.image p.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#business-01 div.list div.row div.image p.row img {
	width: 100%;
	height: auto;
}
main section#business-01 p.indent {
	margin-bottom: 40px;
}
main section#business-02 div.background-symbol {
	left: calc(50% - 900px);
	top: 140px;
}
main section#business-02 div.list {
	margin-bottom: 60px;
}
main section#business-02 div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#business-02 div.list div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#business-02 div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 80px;
	text-align: center;
	text-indent: 0.1em;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #ffffff;
	letter-spacing: 0.1em;
	background-color: #0a61a2;
	border-radius: 5px;
}
main section#business-02 div.list div.row h3 i {
	text-indent: 0.05em;
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
}
main section#business-02 div.list div.row p.description {
	width: calc(100% - 240px);
}
main section#business-03 p.description {
	margin-bottom: 60px;
}

/* company
-------------------------------------------------------------------------------- */

main section#company div.background-symbol {
	right: calc(50% - 820px);
	top: calc(50% - 760px);
}
main section#company div.block:not(:last-child) {
	margin-bottom: 100px;
}
main section#company div.block h3.headline {
	margin-bottom: 40px;
}
main section#company div.block table {
	width: 100%;
}
main section#company div.block table th,
main section#company div.block table td {
	vertical-align: top;
}
main section#company div.block table tr:not(:last-child) th,
main section#company div.block table tr:not(:last-child) td {
	padding-bottom: 5px;
}
main section#company div.block table th {
	width: 140px;
	font-weight: 500;
}
main section#company div.block-summary h3,
main section#company div.block-summary h4 {
	text-align: center;
}
main section#company div.block-summary h3 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.5rem;
	color: #0a61a2;
	margin-bottom: 40px;
}
main section#company div.block-summary h4 {
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 2.25rem;
	margin-bottom: 100px;
}
main section#company div.block-summary div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 60px;
}
main section#company div.block-summary div.image-text p.image {
	width: 440px;
}
main section#company div.block-summary div.image-text div.text {
	width: calc(100% - 480px);
}
main section#company div.block-summary div.image-text div.text p.description {
	margin-bottom: 40px;
}
main section#company div.block-summary div.image-text div.text p.name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#company div.block-summary div.image-text div.text p.name span.sub {
	margin-right: 20px;
	transform: translateY(1px);
}
main section#company div.block-summary div.image-text div.text p.name span.main {
	font-size: 1.25rem;
	font-weight: 500;
}
main section#company div.block-outline h4 {
	font-size: 1.0625rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#company div.block-outline table.office {
	margin-bottom: 40px;
}
main section#company div.block-history table tr:not(:last-child) th,
main section#company div.block-history table tr:not(:last-child) td,
main section#company div.block-officer table tr:not(:last-child) th,
main section#company div.block-officer table tr:not(:last-child) td {
	padding-bottom: 20px;
}
main section#company div.block-officer table {
	margin-bottom: 60px;
}
main section#company div.block-vision {
	padding: 60px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main section#company div.block-vision div.segment:not(:last-child) {
	margin-bottom: 60px;
}
main section#company div.block-vision div.segment h3 {
	font-size: 1.0625rem;
	font-weight: 500;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
	padding-bottom: 5px;
}
main section#company div.block-vision div.segment-04 p.description {
	margin-bottom: 60px;
}
main section#company div.block-vision div.segment-04 p.headline {
	font-weight: 500;
	margin-bottom: 20px;
}
main section#company div.block-vision div.segment-04 p.diagram:not(:last-child) {
	margin-bottom: 60px;
}

/* news
-------------------------------------------------------------------------------- */

main section#news div.background-symbol {
	left: calc(50% - 900px);
	top: 100px;
}
main div.list-news article.news:not(:last-child) {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 100px;
	padding-bottom: 100px;
}
main article.news {
	margin: auto;
	padding: 0px 100px;
}
main article.news header {
	text-align: left;
	margin-bottom: 60px;
}
main article.news header h1,
main article.news header h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.375rem;
}

/* recruit
-------------------------------------------------------------------------------- */

main section#recruit div.background-symbol {
	right: calc(50% - 860px);
	top: 140px;
}
main section#recruit div.content {
	width: 720px;
}
main section#recruit p.description,
main section#recruit div.interview,
main section#recruit h3.headline {
	margin-bottom: 100px;
}
main section#recruit div.interview p.banner {
	margin-bottom: 60px;
}
main section#recruit div.interview p.banner img {
	width: 100%;
}
main section#recruit div.interview div.video {
	width: 360px;
	margin: 0px auto;
}
main section#recruit div.interview div.video video {
	width: 100%;
}
main section#recruit p.banner-rikunavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: -40px;
	margin-bottom: 60px;
}
main section#recruit p.banner-rikunavi img {
	width: auto;
	height: 60px;
	border: 1px solid #d9d9d9;
}
main div.list-recruit article.recruit:not(:last-child) {
	margin-bottom: 100px;
}
main div.list-recruit article.recruit h4 {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
main div.list-recruit article.recruit table {
	width: 100%;
}
main div.list-recruit article.recruit table th,
main div.list-recruit article.recruit table td {
	vertical-align: top;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	padding: 20px 0px;
}
main div.list-recruit article.recruit table th {
	width: 160px;
	font-weight: 500;
}

/* contact
-------------------------------------------------------------------------------- */

main section#contact div.background-symbol {
	left: calc(50% - 900px);
	top: 100px;
}
main section#contact div.content {
	width: 720px;
}
main section#contact div.header {
	text-align: center;
	margin-bottom: 100px;
}
main section#contact div.mw_wp_form_preview div.header {
	display: none;
}
main section#contact div.header p.description {
	margin-bottom: 40px;
}
main section#contact div.header div.contact-alternate {
	text-align: center;
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
}
main section#contact div.header div.contact-alternate p.tel {
	font-weight: 700;
	line-height: 2.25rem;
	color: #0a61a2;
}
main section#contact div.header div.contact-alternate p.tel span.sub {
	font-size: 1.25rem;
	margin-right: 5px;
}
main section#contact div.header div.contact-alternate p.tel span.main {
	font-size: 2rem;
}
main section#contact div.header div.contact-alternate p.time-close {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#contact div.header div.contact-alternate p.time-close span:not(:last-child) {
	margin-right: 20px;
}
main section#contact div.form div.component {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 40px;
}
main section#contact div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section#contact div.mw_wp_form_preview div.form div.component-first {
	border-top: 1px solid #d9d9d9;
}
main section#contact div.mw_wp_form_preview div.form div.component-last {
	margin-bottom: 60px;
}
main section#contact div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 240px;
	height: 40px;
	font-weight: 500;
}
main section#contact div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section#contact div.form div.component p.label span.require {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 20px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1rem;
	color: #ffffff;
	margin-left: 5px;
	background-color: #0a61a2;
	border-radius: 5px;
	transform: translateY(1px);
}
main section#contact div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section#contact div.form div.component div.body {
	width: calc(100% - 240px);
}
main section#contact div.form div.component div.body input[type=text],
main section#contact div.form div.component div.body input[type=email],
main section#contact div.form div.component div.body textarea {
	width: 100%;
}
main section#contact div.form div.component div.body span.error,
main section#contact div.form div.agreement span.error {
	position: absolute;
	bottom: -25px;
	font-size: 0.8125rem;
	line-height: 25px;
	color: #0a61a2;
}
main section#contact div.form div.component div.body span.error {
	right: 0px;
}
main section#contact div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(100% - 240px);
	position: relative;
	margin: 0px 0px 40px auto;
}
main section#contact div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section#contact div.form div.agreement span.horizontal-item {
	margin-right: 5px;
}
main section#contact div.form div.agreement span.horizontal-item > label {
	display: block;
}
main section#contact div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section#contact div.form div.agreement span.error {
	left: 30px;
}
main section#contact div.form div.action {
	display: flex;
	flex-wrap: wrap;
	padding-left: 240px;
}
main section#contact div.mw_wp_form_preview div.form div.action {
	justify-content: center;
	padding-left: 0px;
}
main section#contact div.form div.action input[type=submit] {
	text-indent: 0.5em;
	letter-spacing: 0.5em;
}
main section#contact div.form div.action input[name=submitBack] {
	margin-right: 20px;
}
main section#contact div.mw_wp_form_complete p.description {
	text-align: center;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy div.background-symbol {
	right: calc(50% - 860px);
	top: 140px;
}
main section#privacy-policy div.content {
	width: 720px;
}
main section#privacy-policy p.description,
main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 60px;
}
main section#privacy-policy div.list div.row h2 {
	font-size: 1.0625rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#privacy-policy div.list div.row ul li {
	position: relative;
	padding-left: 20px;
}
main section#privacy-policy div.list div.row ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 0.8rem;
	background-color: #d9d9d9;
	content: "";
	border-radius: 50%;
}



/* --------------------------------------------------------------------------------
content-bottom
-------------------------------------------------------------------------------- */

aside#content-bottom {
	position: relative;
	z-index: 1;
	background-color: #ffffff;
	padding: 100px 0px;
}
aside#content-bottom div.background-symbol {
	right: calc(50% - 860px);
	top: 40px;
}
aside#content-bottom div.contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	width: 540px;
	margin: auto;
}
aside#content-bottom div.contact div.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 180px;
	text-align: center;
	height: 180px;
	color: #ffffff;
	background-color: #0a61a2;
	border-radius: 5px;
}
aside#content-bottom div.contact div.header h3 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 20px;
}
aside#content-bottom div.contact div.header p.sub {
	line-height: 1.5rem;
}
aside#content-bottom div.contact div.content {
	position: relative;
	width: calc(100% - 200px);
}
aside#content-bottom div.contact div.content p.tel,
aside#content-bottom div.contact div.content p.fax {
	letter-spacing: 0.1em;
}
aside#content-bottom div.contact div.content p.tel {
	font-weight: 700;
	line-height: 2.25rem;
	color: #0a61a2;
}
aside#content-bottom div.contact div.content p.tel span.sub {
	font-size: 1.25rem;
	margin-right: 5px;
}
aside#content-bottom div.contact div.content p.tel span.main {
	font-size: 2rem;
}
aside#content-bottom div.contact div.content p.time,
aside#content-bottom div.contact div.content p.close {
	line-height: 1.5rem;
}
aside#content-bottom div.contact div.content p.close {
	margin-bottom: 10px;
}
aside#content-bottom div.contact div.content p.fax {
	font-size: 1.25rem;
	font-weight: 500;
}
aside#content-bottom div.contact div.content p.button-default {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 0px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	z-index: 1;
	color: #ffffff;
	padding: 40px 0px;
	background-color: #0a61a2;
}
footer#footer div#trigger-footer {
	position: absolute;
	height: 100%;
	left: 0px;
	top: 60px;
	pointer-events: none;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
footer#footer p#button-page-top.footer {
	position: absolute;
	top: -20px;
	bottom: auto;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid #4d4d4d;
	background-color: #ffffff;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
footer#footer p#button-page-top a:hover {
	background-color: #4d4d4d;
}
footer#footer p#button-page-top a::before {
	position: absolute;
	width: 8px;
	height: 8px;
	left: calc(50% - 4px);
	top: calc(50% - 4px);
	border-right: 1px solid #4d4d4d;
	border-top: 1px solid #4d4d4d;
	content: "";
	transition: 0.25s border-color ease;
	transform: translateY(2px) rotate(-45deg);
}
footer#footer p#button-page-top a:hover::before {
	border-color: #ffffff;
}
footer#footer nav#navi-footer {
	margin-bottom: 20px;
	padding-left: 40px;
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer ul li {
	position: relative;
	font-weight: 500;
}
footer#footer nav#navi-footer ul li:not(:last-child) {
	margin-right: 40px;
}
footer#footer nav#navi-footer ul li:not(:last-child)::before {
	position: absolute;
	width: 0px;
	height: 15px;
	right: -20px;
	top: calc(50% - 7.5px);
	border-right: 1px solid #ffffff;
	content: "";
}
footer#footer p.copyright {
	text-align: right;
	font-size: 0.8125rem;
	line-height: 1.5rem;
	padding-right: 40px;
}
