@charset "utf-8";
/* setting */
html {
	height: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
body {
	padding-top: 64px;
	font-family: 'roboto','Zen Kaku Gothic New', sans-serif;
	background: #fff;
	line-height: 1;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	color: #444;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.top-body {
	padding-top: 0;
}
.outfit {
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase;
	color: #4363AC;
}
.wrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
* {
	box-sizing: border-box;
}
.blue-text {
	color: #4363AC;
}
a {
	text-decoration: underline;
	color: #4363AC;
}
a:hover {
	text-decoration: none;
}
.sp {
	display: block !important;
}
.pc {
	display: none !important;
}
.btn {
	display: block;
	background: #32436A;
	text-decoration: none;
	text-align: center;
	font-weight: 700;
	color: #fff;
	position: relative;
	border-radius: 16;
	transition: .7s;
}


/* header */
.header {
	width: 100%;
	height: 64px;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 999;
}
.top-header {
	position: absolute;
}
.site-logo > a > img,
.site-logo > a > .logo-top {
	display: block;
	width: 168px;
	height: auto;
	margin: 21px 0 0 18px;
	position: relative;
	z-index: 999;
}

.pc-header-nav {
	display: none;
}
.menu-trigger-wrap {
	width: 64px;
	height: 64px;
	background: #32436A;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1001;
}
.menu-trigger {
	width: 32px;
	height: 8px;
	margin: 27px auto 4px;
	position: relative;
	z-index: 1001;
}
.menu-trigger > span {
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: transform .5s, opacity .5s;
}
.menu-trigger > span:nth-of-type(1) {
	top: 0px;
}
.menu-trigger > span:nth-of-type(2) {
	bottom: 0px;
}
.menu-trigger.show > span:nth-of-type(1) {
	-webkit-transform: translateY(3px) rotate(-45deg);
	transform: translateY(3px) rotate(-45deg);
}
.menu-trigger.show > span:nth-of-type(2) {
	-webkit-transform: translateY(-4px) rotate(45deg);
	transform: translateY(-4px) rotate(45deg);
}
.sp-nav {
	display: none;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background: #32436A;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}
.sp-nav > nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	text-align: center;
	z-index: 1001;
}
.sp-nav > nav > ul > li {
	margin: 40px 0;
	font-size: 1.6rem;
	font-weight: 700;
}
.sp-nav > nav > ul > li > a {
	text-decoration: none;
	color: #fff;
}
.sp-header-fb {
	position: fixed;
	bottom: 32px;
	right: 24px;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -10;
}


/* page */
.page {
	padding: 0 24px;
}
.page p {
	line-height: 1.6;
}
.page p > br {
	display: none;
}
.page-cont {
	margin-bottom: 64px;
}


/* top-slide */
.top-slider {
	width: 100vw;
	min-height: 80vh;
	margin: 0 0 64px 0;
	position: relative;
}
.swiper-wrapper {
	transition-timing-function: ease-in;
} 
.top-slider div.slide01,
.top-slider div.slide02,
.top-slider div.slide03 {
	width: 100vw;
	height: 80vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}
.top-slider div.slide01 {
	background-image: url(../images/top-slide01.jpg);
}
.top-slider div.slide02 {
	background-image: url(../images/top-slide02.jpg);
}
.top-slider div.slide03 {
	background-image: url(../images/top-slide03.jpg);
}

@keyframes zoomDown {
	0% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.top-slider .swiper-slide {
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	-webkit-animation: zoomDown 10s linear 0s;
	animation: zoomDown 10s linear 0s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.top-slide-catch {
	display: flex;
	width: 100vw;
	height: 80vh;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.top-slide-catch-inner {
	padding: 0 8%;
	color: #fff;
	position: absolute;
	bottom: 18%;
}
.top-slide-catch-inner > span {
	font-size: 1.6rem;
	color: #fff;
}
.top-slide-catch-inner > h2 {
	margin: 20px 0 36px;
	letter-spacing: 0;
	line-height: 1.4;
	font-size: 3.0rem;
}
.top-slide-btn {
	width: 120px;
	height: 48px;
	padding-top: 15px;
	background: none;
	border: 2px solid #fff;
	font-size: 1.2rem;
	border-radius: 24px;
}
.scroll-down {
	width: .5px;
	height: 96px;
	background: #fff;
	position: absolute;
	right: 12%;
	bottom: 0;
	z-index: 999;
}
.scroll-down > span {
	margin-left: 8px;
	writing-mode:vertical-rl;
	font-size: 1.1rem;
	color: #fff;
}


/* front-page */
.top-strength-head {
	margin-bottom: 10px;
}
.top-strength-head > p {
	font-size: 1.4rem;
}
.top-strength-cont > h3 {
	margin-bottom: 24px;
	line-height: 1.5;
	font-size: 2.4rem;
}
.top-strength-cont > h3 > br {
	display: none;
}
.top-strength-cont > p {
	line-height: 1.8;
}
.top-slide {
	width: 100vw;
	height: 260px;
	margin: 48px calc(50% - 50vw) 0;
}
.infiniteslide li {
	margin-right: 32px;
}
.infiniteslide li img {
	width: auto;
	height: 260px;
}


.top-policy {
	width: 100%;
	padding: 64px 0;
	position: relative;
	z-index: 2;
}
.top-policy:after {
	display: block;
	content: '';
	width: 84vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	background: linear-gradient(275deg,#FFFFFF,#EDF7FD); 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.top-policy-inner {
	position: relative;
	z-index: 2;
}
.top-policy-cont {
	margin-bottom: 56px;
}
.top-policy-cont > span {
	font-size: 1.4rem;
}
.top-policy-cont > h3 {
	margin: 14px 0 24px;
	line-height: 1.5;
	font-size: 2.4rem;
}
.top-policy-cont > h3 > br {
	display: none;
}
.top-policy-cont > p {
	line-height: 1.8;
}
.top-policy-img {
	width: 100vw;
	margin-right: calc(50% - 50vw);
}

.top-blog {
	width: 100vw;
}
.top-blog-head-inner {
	margin-bottom: 24px;
}
.top-blog-head-inner > span {
	font-size: 1.4rem;
}
.top-blog-head-inner > h3 {
	margin-top: 18px;
	font-size: 2.4rem;
}

.top-other-inner {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.top-other-cont {
	width: 100%;
	height: 220px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
	z-index: 2;
}
.top-faq {
	background-image: url(../images/top-faq.jpg);
}
.top-paper {
	background-image: url(../images/top-paper.jpg);
}
.top-other-cont:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.top-other-cont > a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	font-size: 1.4rem;
	color: #fff;
	position: relative;
	z-index: 2;
}
.top-other-box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.top-other-box-inner > p {
	margin-bottom: 10px;
	font-size: 2.8rem;
	color: #fff;
}


.top-info-head {
	margin-bottom: 40px;
}
.top-info-head > span {
	font-size: 1.4rem;
}
.top-info-head > h3 {
	margin-top: 18px;
	font-size: 2.4rem;
}
.top-info-cont > ul {
	margin-bottom: 40px;
}
.top-info-cont > ul > li {
	padding: 32px 0;
	border-bottom: 1px solid #ddd;
	font-size: 1.3rem;
	color: #777;
}
.top-info-cont > ul > li:first-of-type {
	padding: 0 0 32px 0;
}
.top-info-cont > ul > li > a {
	display: block;
	margin-top: 12px;
	line-height: 1.6;
	font-size: 1.6rem;
}


/* page-head */
.page-head {
	height: 240px;
	background: linear-gradient(320deg,#FFFFFF,#EDF7FD); 
}
.page-head-inner {
	padding: 140px 24px 0;
}
.page-head-inner > p {
	margin-bottom: 12px;
	font-size: 3.2rem;
}
.page-head-inner > h2 {
	font-size: 1.3rem;
	font-weight: 400;
}
.breadcrumbs {
	margin: 20px auto 64px;
	padding: 0 24px;
	line-height: 1.6;
	font-size: 1.2rem;
}



/* service */
.service-cont-head {
	position: relative;
	z-index: 2;
}
.service-cont-head > span {
	font-size: 1.4rem;
}
.service-cont-head > h3 {
	margin: 10px 0 32px;
	line-height: 1.5;
	font-size: 2.4rem;
}

.concept-cont-head > h3 {
	margin: 18px 0 28px;
}
.concept-text > p {
	line-height: 1.8;
}

.products {
	width: 100%;
	padding: 64px 0;
	position: relative;
	z-index: 2;
}
.products:after {
	display: block;
	content: '';
	width: 84vw;
	height: 100%;
	margin-right: calc(50% - 50vw);
	background: linear-gradient(90deg,#FFFFFF,#F8F8F8); 
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.products-cont {
	position: relative;
	z-index: 2;
}
.products-item {
	margin-top: 40px;
}
.products-item:first-of-type {
	margin: 0;
}
.products-img {
	margin-bottom: 32px;
}
.products-text > span {
	font-size: 1.2rem;
}
.products-text > h4 {
	margin: 16px 0 20px;
	font-size: 2.2rem;
}

.sample-cont {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: -32px;
}
.sample-item {
	width: 49.8%;
	margin-bottom: 32px;
	font-size: 1.6rem;
}
.sample-item > img {
	margin-bottom: 16px;
}

.facility {
	width: 100%;
	padding: 64px 0;
	position: relative;
	z-index: 2;
}
.facility:after {
	display: block;
	content: '';
	width: 84vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	background: linear-gradient(275deg,#FFFFFF,#EDF7FD); 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.facility-cont {
	position: relative;
	z-index: 2;
}
.facility-item {
	margin-top: 40px;
}
.facility-item:first-of-type {
	margin: 0;
}
.facility-img {
	margin-bottom: 32px;
	position: relative;
}
.facility-img > span {
	padding: 11px 16px 12px;
	background: #4363AC;
	font-size: 1.2rem;
	color: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
}
.facility-text > h4 {
	margin-bottom: 20px;
	font-size: 2.2rem;
}

.voice-user {
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #ddd;
}
.voice-img {
	margin-bottom: 32px;
	position: relative;
}
.voice-img > span {
	padding: 11px 16px 12px;
	background: #4363AC;
	font-size: 1.2rem;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
.voice-text-head {
	margin-bottom: 20px;
}
.voice-text-head > h4 {
	margin-top: 16px;
	font-size: 2.2rem;
}
.voice-text-head > span {
	font-size: 1.2rem;
	font-weight: 700;
	color: #777;
}


/* laboratory */
.mission-cont {
	margin-bottom: 56px;
}
.mission-cont > span {
	font-size: 1.4rem;
}
.mission-cont > h3 {
	margin: 18px 0 28px;
	line-height: 1.5;
	font-size: 2.4rem;
}
.mission-cont > p {
	line-height: 1.8;
}
.daihyo {
	margin-top: 24px;
	font-size: 1.6rem;
}
.daihyo > span {
	margin-left: 12px;
	font-weight: 700;
	color: #333;
}
.mission-img {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.paper {
	width: 100vw;
	padding: 64px 0;
	position: relative;
}
.paper:after {
	display: block;
	content: '';
	width: 84vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	background: linear-gradient(90deg,#FFFFFF,#EDF7FD); 
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.paper-cont {
	position: relative;
	z-index: 2;
}
.paper-cont-head-box {
	margin-bottom: 24px;
}
.paper-cont-head-box > span {
	font-size: 1.4rem;
}
.paper-cont-head-box > h3 {
	margin-top: 18px;
	font-size: 2.4rem;
}
.post-arrow {
	display: none;
}
.paper-swiper-container {
	margin: 40px 0;
	padding-right: 24px;
}
.swiper-slide {
	width: 280px;
	margin-right: 40px;
}
.swiper-slide > a {
	text-decoration: none;
	color: #333;
}
.swiper-slide > a > img {
	width: 100%;
	height: 210px;
	margin-bottom: 24px;
	object-fit: cover;
}
.swiper-slide > a > time {
	font-size: 1.2rem;
	color: #666;
}
.swiper-slide > a > h4 {
	margin-top: 12px;
	line-height: 1.5;
	font-size: 1.8rem;
}

.outline-img {
	width: 100vw;
	height: 240px;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
.outline-img > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.outline-cont {
	margin-top: 40px;
}
.outline-cont-head > span {
	font-size: 1.4rem;
}
.outline-cont-head > h3 {
	margin-top: 18px;
	font-size: 2.4rem;
}
.outline-table {
	display: block;
	margin-top: 8px;
}
.outline-table > tbody > tr,
.outline-table > tbody > tr > th,
.outline-table > tbody > tr > td {
	display: block;
}
.outline-table > tbody > tr {
	padding: 30px 0 32px;
	border-bottom: 1px solid #ddd;
}
.outline-table > tbody > tr > th {
	margin-bottom: 16px;
	font-weight: 400;
}

.map {
	margin-top: 56px;
}
.g-map {
	width: 100vw;
	margin: 0 calc(50% - 50vw) 40px;
	padding-top: 72%;
	position: relative;
}
.g-map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.map-btn {
	width: 160px;
	height: 48px;
	margin-top: 32px;
	padding-top: 16px;
	font-size: 1.3rem;
	border-radius: 24px;
}


/* faq */
.faq-cont {
	display: flex;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 32px 24px 36px;
	border-bottom: 1px solid #ddd;
}
.faq-cont:first-of-type {
	margin-top: 48px;
	border-top: 1px solid #eee;
}
.faq-q {
	margin-right: 20px;
	font-size: 3.2rem;
}
.faq-list {
	line-height: 1.5;
}
.faq-list > dt {
	margin-bottom: 12px;
	font-size: 1.8rem;
}
.faq-list > dd > br {
	display: none;
}


/* contact */
.contact-cont {
	margin-top: 48px;
}
.contact-table {
	width: 100%;
}
.contact-table > tbody > tr,
.contact-table > tbody > tr > th,
.contact-table > tbody > tr > td {
	display: block;
}
.contact-table > tbody > tr {
	margin-bottom: 32px;
}
.contact-table > tbody > tr > th {
	margin-bottom: 12px;
	font-size: 1.8rem;
	color: #333;
}
.contact-table > tbody > tr > th span {
	display: inline-block;
	margin-left: 8px;
	color: #4363AC;	
}
.contact-table > tbody > tr > td input,
.contact-table > tbody > tr > td select,
.contact-table > tbody > tr > td textarea {
	width: 100%;
	padding: 12px;
	background: #EDF7FD;
	border: 1px solid #ddd;
	font-size: 1.6rem;
	box-sizing: border-box;
}
.contact-table > tbody > tr > td select {
	padding: 15px 12px;
	font-size: 1.4rem;
}
.wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 1.2rem;
}
.policy-area {
	margin-bottom: 32px;
	padding: 24px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
	font-size: 1.4rem;
}
.policy-area > p {
	padding-bottom: 12px;
}
.policy-check label input {
	margin: -5px 0 0 0;
}
.submit-btn {
	width: 100%;
	height: 64px;
	background: #32436a;
	color: #fff;
}


/* policy */
.policy-cont {
	margin-top: 48px;
}
.policy-cont > h3 {
	margin-bottom: 16px;
	font-size: 1.8rem;
}
.policy-cont > ul {
	margin: 16px 0 0 20px;
	line-height: 1.6;
}
.policy-cont > ul > li {
	list-style: square;
}


/* column */
.side {
	margin-top: 80px;
}


/* category */
.post-list-wrap {
	border-top: 1px solid #ddd;
}
.post-list > a {
	display: flex;
	padding: 24px 0;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
}
.post-list-img > img {
	width: 120px;
	height: auto;
	object-fit: cover;
}
.post-list-cont {
	display: flex;
	align-items: center;
	margin-left: 18px;
}
.post-list-text > time {
	font-size: 1.2rem;
	color: #666;
}
.post-list-text > h3 {
	margin-top: 8px;
	line-height: 1.4;
	font-size: 1.6rem;
	color: #333;
}


/* pagenation */
.pagenation {
	margin-top: 40px;
	text-align: center;
}
.pagenation:after,
.pagenation ul:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.pagenation ul {
	display: inline-block;
	overflow: hidden;
}
.pagenation li {
	float: left;
	display: inline;
	margin-left: 10px;
	font-size: 1.2rem;
	font-weight: 700;
}
.pagenation li:first-child {
	margin-left: 0;
}
.pagenation li.next a,
.pagenation li.prev a {
	display: block;
	width: 72px;
	height: 36px;
	padding-top: 12px;
}
.pagenation li.active {
	width: 36px;
	height: 36px;
	padding-top: 11px;
	background-color: #4363AC;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.pagenation li a {
	display: block;
	width: 36px;
	height: 36px;
	padding-top: 11px;
	background-color: #eee;
	text-decoration: none;
	text-align: center;
	color: #4363AC;
	cursor: pointer;
}
.pagenation li a:active {
	background-color: #4363AC;
	color: #fff;
}


/* single */
.single-header {
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid #ddd;
	position: relative;
}
.single-header:after {
	display: block;
	content: '';
	width: 80px;
	height: 1px;
	background: #4363AC;
	position: absolute;
	left: 0;
	bottom: -1px;
}
.single-header > time {
	font-size: 1.1rem;
	color: #666;
}
.single-header > h1 {
	margin-top: 12px;
	line-height: 1.4;
	font-size: 2.2rem;
}
.single-cont {
	padding-bottom: 32px;
	border-bottom: 1px solid #ddd;
}
.single-cont > h2 {
	margin: 36px 0 26px;
	padding: 18px 20px;
	line-height: 1.4;
	background: #f8f8f8;
	border-left: 4px solid #4363AC;
	font-size: 2.0rem;
}
.single-cont > h3 {
	margin: 36px 0 26px;
	padding-bottom: 18px;
	line-height: 1.4;
	border-bottom: 1px solid #ddd;
	font-size: 1.8rem;
}
.single-cont > h4 {
	margin: 28px 0 12px;
	line-height: 1.4;
	font-size: 1.7rem;
}
.single-cont > p {
	margin-bottom: 20px;
	line-height: 1.6;
}
.wp-block-image,
.wp-block-embed {
	margin: 32px 0 36px;
	text-align: center;
	font-size: 1.2rem;
}
.wp-element-caption {
	padding-top: 8px;
}
.wp-block-embed__wrapper {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}
.wp-block-embed__wrapper iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.single-btn {
	width: 200px;
	height: 48px;
	margin: 40px auto 0;
	padding-top: 16px;
	border: 1px solid #32436A;
	font-size: 1.4rem;
	border-radius: 24px;
}


/* side */
.side-cont {
	margin-top: 56px;
}
.side-cont > h3 {
	font-size: 2.4rem;
}
.side-cont > ul {
	margin-top: 30px;
}
.side-cont > ul > li {
	margin-top: 20px;
	font-size: 1.6rem;
}
.side-cont > ul > li > a {
	text-decoration: none;
	color: #444;
}
.side-cont > select {
	width: 100%;
	height: 56px;
	margin-top: 32px;
	padding-left: 16px;
	background: #EDF7FD;
	border: 1px solid #ddd;
	font-size: 1.5rem;
}


/* cta */
.cta {
	width: 100%;
	height: 100%;
	margin-top: 96px;
	padding: 88px 0;
	background: url(../images/cta-back-sp.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
}
.cta:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(67,86,129,.7);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}
.cta-inner {
	width: 74%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.cta-head {
	margin-bottom: 40px;
	text-align: center;
	font-weight: 700;
	color: #fff;
}
.cta-head > span {
	font-size: 1.6rem;
	color: #fff;
}
.cta-head > h3 {
	margin-top: 16px;
	line-height: 1.5;
	font-size: 2.4rem;
}
.cta-head > p {
	margin-top: 20px;
}
.cta-cont > ul {
	margin-bottom: 32px;
}
.cta-btn {
	height: 60px;
	margin-top: 20px;
	padding-top: 21px;
	font-size: 1.8rem;
	color: #fff;
	position: relative;
	border-radius: 16px;
}
.cta-btn > img {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 22px;
	right: 16px;
}
.contact-btn {
	background: #FF8900;
}
.fb-btn {
	background: #0650A5;
}
.cta-tel {
	text-align: center;
}
.cta-tel > p {
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
}
.cta-tel > a > img {
	width: 280px;
	height: auto;
}


/* footer */
.footer {
	padding: 96px 0;
	background: #222F4D;
	color: #fff;
}
.footer a {
	text-decoration: none;
	color: #fff;
}
.footer-inner {
	width: 80%;
	margin: 0 auto;
}
.footer-left {
	margin-bottom: 56px;
}
.footer-logo a img {
	margin-bottom: 20px;
	width: 200px;
	height: auto;
}
.eng-name {
	margin-bottom: 56px;
	font-size: 1.1rem;
}
.address {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 1.4rem;
}
.footer-fb > img {
	width: 28px;
	height: auto;
}
.footer-nav ul li {
	font-size: 1.4rem;
	position: relative;
}
.footer-nav ul li:after {
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	border: .5px solid;
	border-color: #fff #fff transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 24px;
	right: 12px;
}
.footer-nav ul li a {
	display: block;
	padding: 24px 0;
	border-bottom: .5px solid rgba(255,255,255,.5);
	font-weight: 700;
}
.footer-copy {
	width: 80%;
	margin: 40px auto 0;
}
.footer-copy > a {
	font-size: 1.3rem;
	font-weight: 700;
}
.footer-copy > p {
	margin-top: 96px;
	font-size: 1.1rem;
}



@media only screen and (min-width: 560px) {
	/* header */
	.header {
		height: 80px;
	}
	.site-logo > a > img,
	.site-logo > a > .logo-top {
		width: 200px;
		margin: 26px 0 0 24px;
	}
	.menu-trigger-wrap {
		width: 80px;
		height: 80px;
	}

	.menu-trigger {
		width: 36px;
		height: 10px;
		margin: 32px auto 0;
	}
	.menu-trigger > span {
		height: 2px;
	}
	.menu-trigger.show > span:nth-of-type(1) {
		-webkit-transform: translateY(4px) rotate(-45deg);
		transform: translateY(4px) rotate(-45deg);
	}
	.menu-trigger.show > span:nth-of-type(2) {
		-webkit-transform: translateY(-4px) rotate(45deg);
		transform: translateY(-4px) rotate(45deg);
	}
	.sp-nav > nav > ul > li {
		margin: 48px 0;
		font-size: 1.8rem;
	}
	.header-fb {
		position: fixed;
		bottom: 40px;
		right: 32px;
	}
	
	
	/* top-slide */
	.top-slide-catch-inner {
		padding: 0 10%;
		bottom: 20%;
	}
	.top-slide-catch-inner > span {
		font-size: 1.8rem;
	}
	.top-slide-catch-inner > h2 {
		margin: 24px 0 44px;
		font-size: 4.4rem;
	}
	.top-slide-btn {
		width: 180px;
		height: 56px;
		padding-top: 17px;
		font-size: 1.4rem;
		border-radius: 28px;
	}
	.scroll-down {
		height: 120px;
	}
	.scroll-down > span {
		margin-left: 10px;
		font-size: 1.2rem;
	}
	
	
	/* page-head */
	.page-head {
		height: 280px;
	}
	.page-head-inner {
		padding: 150px 32px 0;
	}
	.page-head-inner > p {
		margin-bottom: 16px;
		font-size: 3.8rem;
	}
	.page-head-inner > h2 {
		font-size: 1.6rem;
	}
	.breadcrumbs {
		margin: 28px auto 96px;
		padding: 0 32px;
	}
	
	
	/* page */
	.page {
		width: 80%;
		max-width: 700px;
		margin: 0 auto;
		padding: 0;
	}
	.page p {
		line-height: 1.8;
	}
	.page-cont {
		margin-bottom: 96px;
	}
	.page p > br {
		display: block;
	}
	
	
	/* front-page */
	.top-strength {
		margin-top: 96px;
	}
	.top-strength-head {
		margin-bottom: 14px;
	}
	.top-strength-head > p {
		font-size: 1.6rem;
	}
	.top-strength-cont > h3 {
		margin-bottom: 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	.top-strength-cont > h3 > br {
		display: block;
	}
	.top-strength-cont > p {
		line-height: 2;
	}
	.top-slide {
		height: 300px;
		margin: 80px calc(50% - 50vw) 0;
	}
	.infiniteslide li {
		margin-right: 40px;
	}
	.infiniteslide li img {
		height: 300px;
	}
	
	.top-policy {
		padding: 96px 0;
	}
	.top-policy-cont {
		margin-bottom: 80px;
	}
	.top-policy-cont > span {
		font-size: 1.6rem;
	}
	.top-policy-cont > h3 {
		margin: 24px 0 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	.top-policy-cont > h3 > br {
		display: block;
	}
	.top-policy-cont > p {
		line-height: 1.8;
	}
	.top-policy-img {
		width: 100vw;
		margin-right: calc(50% - 50vw);
	}
	
	.top-blog-head-inner {
		margin-bottom: 32px;
	}
	.top-blog-head-inner > span {
		font-size: 1.6rem;
	}
	.top-blog-head-inner > h3 {
		margin-top: 24px;
		font-size: 3.2rem;
	}
	
	.top-other-inner {
		display: flex;
	}
	.top-other-cont {
		width: 50%;
		height: 320px;
	}
	.top-other-cont > a {
		font-size: 1.6rem;
	}
	.top-other-box-inner > p {
		margin-bottom: 14px;
		font-size: 3.2rem;
	}
	
	.top-info-head {
		margin-bottom: 56px;
	}
	.top-info-head > span {
		font-size: 1.6rem;
	}
	.top-info-head > h3 {
		margin-top: 24px;
		font-size: 3.2rem;
	}
	.top-info-cont > ul {
		margin-bottom: 56px;
	}
	.top-info-cont > ul > li {
		padding: 40px 0;
		font-size: 1.4rem;
	}
	.top-info-cont > ul > li:first-of-type {
		padding: 0 0 40px 0;
	}
	.top-info-cont > ul > li > a {
		margin-top: 16px;
		font-size: 1.8rem;
	}
	
	
	/* service */
	.service-cont-head > span {
		font-size: 1.6rem;
	}
	.service-cont-head > h3 {
		margin: 12px 0 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	
	.concept-cont-head > h3 {
		margin: 24px 0 36px;
	}
	.concept-text > p {
		line-height: 2;
	}
	
	.products {
		padding: 96px 0;
	}
	.products-item {
		margin-top: 64px;
	}
	.products-img {
		margin-bottom: 40px;
	}
	.products-text > span {
		font-size: 1.4rem;
	}
	.products-text > h4 {
		margin: 20px 0 24px;
		font-size: 2.6rem;
	}
	
	.sample-cont {
		margin-bottom: -56px;
	}
	.sample-item {
		margin-bottom: 56px;
		font-size: 2.2rem;
	}
	.sample-item > img {
		margin-bottom: 24px;
	}
	
	.facility {
		padding: 96px 0;
	}
	.facility-item {
		margin-top: 64px;
	}
	.facility-img {
		margin-bottom: 40px;
		position: relative;
	}
	.facility-img > span {
		padding: 13px 18px 14px;
		font-size: 1.4rem;
	}
	.facility-text > h4 {
		margin-bottom: 24px;
		font-size: 2.6rem;
	}
	
	.voice-user {
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	.voice-img {
		width: 40%;
		margin: 0;
	}
	.voice-text {
		width: 54%;
	}
	.voice-text-head {
		margin-bottom: 20px;
	}
	.voice-text-head > h4 {
		margin-top: 18px;
		font-size: 2.2rem;
	}
	.voice-text-head > span {
		font-size: 1.3rem;
	}
	
	
	/* laboratory */
	.mission-cont {
		margin-bottom: 80px;
	}
	.mission-cont > span {
		font-size: 1.6rem;
	}
	.mission-cont > h3 {
		margin: 24px 0 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	.mission-cont > p {
		line-height: 2;
	}
	.daihyo {
		margin-top: 32px;
		font-size: 1.8rem;
	}
	.mission-img {
		width: auto;
		margin-left: 0;
	}
	.mission-img > img {
		width: 100%;
		height: 440px;
		object-fit: cover;
	}
	
	.paper {
		padding: 96px 0;
	}
	.paper-cont {
		position: relative;
		z-index: 2;
	}
	.paper-cont-head-inner {
		display: flex;
		align-items: center;
	}
	.paper-cont-head-box {
		margin-bottom: 0;
	}
	.paper-cont-head-box > span {
		font-size: 1.6rem;
	}
	.paper-cont-head-box > h3 {
		margin: 24px 40px 0 0;
		font-size: 3.2rem;
	}
	.paper-swiper-container {
		margin: 64px 0;
		padding-right: 10%;
	}
	.swiper-slide {
		width: 380px;
		margin-right: 56px;
	}
	.swiper-slide > a > img {
		height: 260px;
		margin-bottom: 32px;
	}
	.swiper-slide > a > time {
		font-size: 1.3rem;
	}
	.swiper-slide > a > h4 {
		margin-top: 14px;
		font-size: 2.0rem;
	}

	.outline-img {
		width: auto;
		height: 340px;
		margin-right: 0;
	}
	.outline-img > img {
		height: 340px;
	}
	.outline-cont {
		margin-top: 80px;
	}
	.outline-cont-head > span {
		font-size: 1.6rem;
	}
	.outline-cont-head > h3 {
		margin-top: 24px;
		font-size: 3.2rem;
	}
	.outline-table {
		display: table;
		width: 100%;
		margin-top: 32px;
	}
	.outline-table > tbody > tr,
	.outline-table > tbody > tr > th,
	.outline-table > tbody > tr > td {
	}
	.outline-table > tbody > tr {
		display: flex;
		padding: 38px 0 40px;
	}
	.outline-table > tbody > tr > th {
		width: 180px;
		margin-bottom: 0;
	}
	
	.map {
		margin-top: 88px;
	}
	.g-map {
		margin: 0 calc(50% - 50vw) 48px;
		padding-top: 54%;
	}
	.map-btn {
		width: 240px;
		height: 64px;
		margin-top: 48px;
		padding-top: 24px;
		font-size: 1.4rem;
		border-radius: 32px;
	}

	
	/* faq */
	.faq-cont {
		width: 100%;
		margin: 0;
		padding: 40px 0 44px;
	}
	.faq-cont:first-of-type {
		margin-top: 48px;
	}
	.faq-q {
		margin-right: 20px;
		font-size: 3.2rem;
	}
	.faq-list {
		line-height: 1.8;
	}
	.faq-list > dt {
		margin-bottom: 16px;
		font-size: 2.0rem;
	}
	
	
	/* contact */
	.contact-cont {
		margin-top: 56px;
	}
	.contact-table > tbody > tr {
		margin-bottom: 48px;
	}
	.contact-table > tbody > tr > th {
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.contact-table > tbody > tr > th span {
		margin-left: 10px;
	}
	.contact-table > tbody > tr > td input,
	.contact-table > tbody > tr > td select,
	.contact-table > tbody > tr > td textarea {
		padding: 20px;
	}
	.contact-table > tbody > tr > td select {
		padding: 24px 20px;
		font-size: 1.5rem;
	}
	.contact-table > tbody > tr > td textarea {
		height: 360px;
	}
	.wpcf7-not-valid-tip {
		margin-top: 12px;
		font-size: 1.3rem;
	}
	.policy-area {
		margin-bottom: 48px;
		padding: 32px 0 34px;
		font-size: 1.6rem;
	}
	.policy-area > p {
		padding-bottom: 16px;
	}
	.policy-check label input {
		margin: -6px 0 0 0;
	}
	.submit-btn {
		width: 400px;
		height: 80px;
		margin: 0 auto;
		font-size: 1.8rem;
	}
	
	
	/* policy */
	.policy-cont {
		margin-top: 56px;
	}
	.policy-cont > h3 {
		margin-bottom: 24px;
		font-size: 2.2rem;
	}
	.policy-cont > ul {
		margin: 20px 0 0 24px;
		line-height: 1.8;
	}
	
	
	/* column */
	.side {
		margin-top: 96px;
	}
	
	
	/* category */
	.post-list > a {
		padding: 40px 0;
	}
	.post-list-img > img {
		width: 200px;
	}
	.post-list-cont {
		margin-left: 32px;
	}
	.post-list-text > time {
		font-size: 1.3rem;
	}
	.post-list-text > h3 {
		margin-top: 12px;
		line-height: 1.5;
		font-size: 2.0rem;
	}
	
	
	/* pagenation */
	.pagenation {
		margin-top: 48px;
	}
	.pagenation li {
		margin-left: 16px;
	}
	.pagenation li.next a,
	.pagenation li.prev a {
		display: block;
		width: 86px;
		height: 40px;
		padding-top: 14px;
	}
	.pagenation li.active {
		width: 40px;
		height: 40px;
		padding-top: 13px;
	}
	.pagenation li a {
		width: 40px;
		height: 40px;
		padding-top: 13px;
	}
	
	
	/* single */
	.single-header {
		margin-bottom: 48px;
		padding-bottom: 32px;
	}
	.single-header:after {
		width: 160px;
	}
	.single-header > time {
		font-size: 1.3rem;
	}
	.single-header > h1 {
		margin-top: 18px;
		line-height: 1.5;
		font-size: 2.6rem;
	}
	.single-cont {
		padding-bottom: 40px;
	}
	.single-cont > h2 {
		margin: 48px 0 36px;
		padding: 20px 24px;
		line-height: 1.5;
		font-size: 2.2rem;
	}
	.single-cont > h3 {
		margin: 48px 0 36px;
		padding-bottom: 24px;
		line-height: 1.5;
		font-size: 2.0rem;
	}
	.single-cont > h4 {
		margin: 32px 0 16px;
		line-height: 1.5;
		font-size: 1.9rem;
	}
	.single-cont > p {
		margin-bottom: 24px;
		line-height: 1.8;
	}
	.wp-block-image,
	.wp-block-embed {
		margin: 48px 0 40px;
		font-size: 1.3rem;
	}
	.wp-element-caption {
		padding-top: 10px;
	}
	.single-btn {
		width: 240px;
		height: 56px;
		margin: 48px auto 0;
		padding-top: 19px;
		font-size: 1.5rem;
		border-radius: 28px;
	}
	
	
	.side-cont > select {
		max-width: 300px;
	}
	
	
	/* cta */
	.cta {
		width: 100%;
		height: 100%;
		margin-top: 160px;
		padding: 96px 0;
		background: url(../images/cta-back.jpg);
	}
	.cta-inner {
		width: 80%;
	}
	.cta-head {
		margin-bottom: 56px;
	}
	.cta-head > span {
		font-size: 1.8rem;
	}
	.cta-head > h3 {
		margin-top: 20px;
		line-height: 1.5;
		font-size: 2.6rem;
	}
	.cta-head > p {
		margin-top: 24px;
		font-size: 1.6rem;
	}
	.cta-cont > ul {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: 0 auto;
	}
	.cta-cont > ul > li {
		width: 48.2%;
	}
	.cta-btn {
		height: 64px;
		margin-top: 0;
		padding-top: 23px;
	}
	.cta-btn > img {
		top: 24px;
	}
	.cta-tel {
		margin-top: 40px;
	}
	.cta-tel > p {
		line-height: 1.5;
	}
	.cta-tel > p > br {
		display: none;
	}
	.cta-tel > a > img {
		width: 260px;
	}
	
	
	/* footer */
	.footer {
		padding: 120px 0 140px;
	}
	.footer-left {
		margin-bottom: 64px;
	}
	.footer-logo a img {
		width: 240px;
		margin-bottom: 32px;
	}
	.address {
		margin-bottom: 32px;
	}
	.footer-nav ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.footer-nav ul li {
		width: 46%;
		font-size: 1.5rem;
	}
	.footer-nav ul li:after {
		top: 26px;
		right: 12px;
	}
	.footer-nav ul li a {
		padding: 26px 0;
	}
	.footer-copy {
		margin: 48px auto 0;
	}
	.footer-copy > a {
		font-size: 1.4rem;
	}
	.footer-copy > p {
		margin-top: 120px;
	}
}


@media only screen and (min-width: 1024px) {
	/* common */
	body {
		padding-top: 96px;
		font-size: 1.6rem;
	}
	.btn {
		transition: all .7s;
	}
	.btn:hover {
		opacity: .7;
	}
	
	
	/* header */
	.header {
		height: 96px;
	}
	.top-header {
		width: 100%;
		height: 96px;
		transition: .7s;
		position: fixed;
		top: 0;
		z-index: 998;
	}
	.site-logo > a > img,
	.site-logo > a > .logo-top {
		width: 220px;
		margin: 0;
		position: fixed;
		top: 32px;
		left: 32px;
	}
	.pc-header-nav {
		display: flex;
		justify-content: space-between;
		position: fixed;
		top: 32px;
		right: 32px;
		z-index: 998;
	}
	.pc-header-nav > nav > ul {
		display: flex;
		margin-top: 8px
	}
	.pc-header-nav > nav > ul > li {
		margin-right: 28px;
		font-size: 1.5rem;
		font-weight: 700;
	}
	.pc-header-nav > nav > ul > li > a {
		text-decoration: none;
		color: #333;
		transition: all .7s;
	}
	.pc-header-nav > nav > ul > li > a:hover {
		color: #4363AC;
	}
	.pc-header-nav > nav > ul > li.current-menu-item > a {
		color: #4363AC;
	}
	.pc-header-fb img,
	.pc-header-fb svg {
		display: inline-block;
		width: 34px;
		height: auto;
		margin-top: -3px;
		transition: all .7s;
	}
	.pc-header-fb:hover {
		opacity: .7;
	}
	.top-header .pc-header-nav > nav > ul > li > a {
		color: #fff;
		transition: all .7s;
	}
	.top-header .pc-header-nav > nav > ul > li > a:hover {
		color: #4363AC;
	}
	
	.sticky {
		background: #fff;
	}
	.sticky .site-logo path{
		fill: #222;
		transition: all .7s;
	}
	.sticky .pc-header-nav nav > ul > li > a {
		color: #333;
		transition: all .7s;
	}
	.sticky .pc-header-nav nav > ul > li > a:hover {
		color: #4363AC;
	}
	.sticky .pc-header-fb path {
		fill: #32436A;
		transition: all .7s;
	}
	.sp-header-nav {
		display: none;
	}
	
	
	/* top-slide */
	.top-slider {
		min-height: 100vh;
		margin: 0 0 140px 0;
	}
	.top-slider div.slide01,
	.top-slider div.slide02,
	.top-slider div.slide03 {
		height: 100vh;
	}
	.top-slide-catch {
		height: 100vh;
	}
	.top-slide-catch-inner > span {
		font-size: 2.4rem;
	}
	.top-slide-catch-inner > h2 {
		margin: 24px 0 48px;
		font-size: 4.2rem;
	}
	.top-slide-btn {
		width: 200px;
		padding-top: 18px;
	}
	.scroll-down {
		height: 96px;
		margin-right: -4%;
	}
	.scroll-down > span {
		margin-left: 16px;
		font-size: 1.2rem;
	}
	.top-slide-btn:hover {
		background: #fff;
		color: #4363AC;
		opacity: 1;
	}
	
	
	/* page-head */
	.page-head {
		height: 460px;
	}
	.page-head-inner {
		width: 86%;
		margin: 0 auto;
		padding: 260px 0 0 0;
	}
	.page-head-inner > p {
		margin-bottom: 32px;
		font-size: 5.6rem;
	}
	.breadcrumbs {
		width: 86%;
		margin: 40px auto 160px;
		padding: 0;
	}
	
	
	/* page */
	.page {
		width: 100%;
		max-width: 1800px;
	}
	.page p {
		line-height: 2;
	}
	.page-cont {
		margin-bottom: 120px;
	}
	
	
	/* front-page */
	.top-strength {
		width: 64%;
		min-width: 700px;
		margin: 0 auto 120px;
	}
	.top-strength-inner {
		display: flex;
		justify-content: space-between;
	}
	.top-strength-head {
		margin: 0 64px 0 0;
		writing-mode:vertical-rl;
	}
	.top-strength-head > p {
		font-size: 1.8rem;
	}
	.top-strength-cont {
	}
	.top-strength-cont > h3 {
		margin-bottom: 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	.top-strength-cont > h3 > br {
		display: block;
	}
	.top-strength-cont > p {
		line-height: 2.6;
	}
	.top-slide {
		height: 340px;
		margin: 120px calc(50% - 50vw) 0;
	}
	.infiniteslide li {
		margin-right: 48px;
	}
	.infiniteslide li img {
		height: 340px;
	}
	
	.top-policy {
		width: 80%;
		max-width: 1440px;
		margin: 0 auto 120px;
		padding: 120px 0;
	}
	.top-policy-inner {
		display: flex;
		justify-content: space-between;
	}
	.top-policy-cont {
		width: 40%;
		margin: 0;
	}
	.top-policy-cont > span {
		font-size: 1.6rem;
	}
	.top-policy-cont > h3 {
		margin: 16px 0 36px;
		line-height: 1.6;
		font-size: 3.2rem;
	}
	.top-policy-cont > h3 > br {
		display: block;
	}
	.top-policy-cont > p {
		line-height: 1.8;
	}
	.top-policy-img {
		width: 50%;
		margin-right: 0;
	}
	
	.top-blog {
		width: 80%;
		max-width: 1440px;
		margin: 0 auto 120px;
	}
	.top-blog-head {
		position: relative;
	}
	.top-blog-head-inner > span {
		font-size: 1.6rem;
	}
	.top-blog-head-inner > h3 {
		margin-top: 24px;
	}
	
	.top-other-cont {
		height: 400px;
	}
	.top-other-cont > a {
		font-size: 1.8rem;
	}
	.top-other-box-inner > p {
		font-size: 3.6rem;
	}
	
	.top-info {
		width: 80%;
		max-width: 1440px;
		margin: 0 auto;
	}
	.top-info-inner {
		display: flex;
		justify-content: space-between;
	}
	.top-info-head {
		width: 25%;
		margin: 0;
	}
	.top-info-head > span {
		font-size: 1.6rem;
	}
	.top-info-head > h3 {
		margin-top: 24px;
		font-size: 3.2rem;
	}
	.top-info-cont {
		width: 75%;
	}
	
	
	/* service */
	.service {
		width: 80%;
		max-width: 1150px;
		margin: 0 auto;
	}
	.service-cont-head > h3 {
		margin: 14px 0 48px;
	}
	
	.concept-cont {
		display: flex;
		justify-content: space-between;
	}
	.concept-cont-head {
		width: 30%;
	}
	.concept-cont-head > h3 {
		margin: 32px 0 0 0;
	}
	
	.concept-text {
		width: 60%;
	}
	.concept-text > p {
		line-height: 2.2;
	}
	
	.products {
		padding: 120px 0;
	}
	.products:after {
		width: 72vw;
	}
	.products-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.products-item:nth-of-type(2n) {
		flex-flow: row-reverse;
	}
	.products-img {
		width: 46%;
		margin: 0;
	}
	.products-text {
		width: 53%;
		padding: 0 6%;
	}
	.products-text > h4 {
		margin: 22px 0 28px;
		font-size: 2.8rem;
	}
	
	.sample-cont {
		margin-bottom: -72px;
	}
	.sample-item {
		width: 33.2%;
		margin-bottom: 72px;
		font-size: 2.2rem;
	}
	.sample-item > img {
		margin-bottom: 28px;
	}
	
	.facility {
		padding: 120px 0;
	}
	.facility:after {
		width: 72vw;
	}
	.facility-cont {
		display: flex;
		justify-content: space-between;
		margin-top: 46px;
	}
	.facility-item {
		width: 47.8%;
		margin: 0;
	}
	
	.voice-user {
		align-items: center;
		margin-bottom: 56px;
		padding-bottom: 56px;
	}
	.voice-img {
		width: 40%;
		margin: 0;
	}
	.voice-text {
		width: 54%;
	}
	.voice-text-head {
		margin-bottom: 28px;
	}
	.voice-text-head > h4 {
		margin-top: 24px;
		font-size: 2.6rem;
	}
	.voice-text-head > span {
		font-size: 1.4rem;
	}
	
	
	/* laboratory */
	.mission {
		display: flex;
		justify-content: space-between;
	}
	.mission-cont {
		width: 54%;
		margin: 0;
		padding: 0 8%;
	}
	.mission-cont > h3 {
		margin: 32px 0 36px;
	}
	.mission-cont > p {
		line-height: 2.2;
	}
	.mission-img {
		width: 46%;
		margin: 0;
	}
	.mission-img > img {
		max-width: 100%;
		height: auto;
	}
	
	.paper {
		padding: 120px 0;
	}
	.paper:after {
		width: 72vw;
	}
	.paper-cont {
		width: 80%;
		margin: 0 auto;
	}
	.paper-cont-head {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	.paper-cont-head-box > span {
		font-size: 1.6rem;
	}
	.paper-cont-head-box > h3 {
		margin: 24px 48px 0 0;
	}
	.swiper-slide a {
		transition: all .7s;
	}
	.swiper-slide a:hover {
		opacity: .7;
	}
  .post-arrow {
		display: flex;
		justify-content: space-between;
		width: 140px;
		position: absolute;
		top: 24px;
		right: 0;
	}
	.swiper-button-prev,
	.swiper-button-next {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 55px;
		height: 55px;
		margin: 0;
		padding: 0 20px;
		background: #fff;
		border: 1px solid #4363AC;
		cursor: pointer;
		border-radius: 27px;
		transition: .7s;
	}
	.swiper-button-prev:hover,
	.swiper-button-next:hover {
		background: #4363AC;
		color: #fff;
	}
	.outline-img {
		width: 100%;
		height: 400px;
	}
	.outline-img > img {
		height: 400px;
	}
	.outline-cont {
		width: 880px;
		margin: 120px auto 0;
	}
	.outline-cont-head {
		text-align: center;
	}
	.outline-cont-head > span {
		font-size: 1.6rem;
	}
	.outline-cont-head > h3 {
		margin-top: 24px;
		font-size: 3.2rem;
	}
	.outline-table {
		display: table;
		width: 100%;
		margin-top: 48px;
	}
	.outline-table > tbody > tr,
	.outline-table > tbody > tr > th,
	.outline-table > tbody > tr > td {
	}
	.outline-table > tbody > tr {
		display: flex;
		padding: 38px 0 40px;
	}
	.outline-table > tbody > tr > th {
		width: 180px;
		margin-bottom: 0;
	}
	
	.map {
		margin-top: 120px;
	}
	.g-map {
		margin: 0 calc(50% - 50vw) 48px;
		padding-top: 54%;
	}
	.map-btn {
		width: 200px;
		height: 64px;
		padding-top: 22px;
		background: #fff;
		border: 1px solid #4363AC;
		font-size: 1.5rem;
		color: #4363AC;
		border-radius: 32px;
	}
	.map-btn:hover {
		background: #4363AC;
		color: #fff;
		opacity: 1;
	}
	
	
	/* faq */
	.faq {
		width: 880px;
		margin: 0 auto;
	}
	.faq-cont {
		padding: 48px 40px 52px;
	}
	.faq-cont:first-of-type {
		margin-top: 64px;
	}
	.faq-q {
		margin-right: 32px;
		font-size: 3.6rem;
	}
	.faq-list > dt {
		margin-bottom: 24px;
		font-size: 2.4rem;
	}
	
	
	/* contact */
	.contact {
		width: 880px;
		margin: 0 auto;
	}
	.contact > p > br {
		display: block;
	}
	.contact-cont {
		margin-top: 64px;
	}
	.contact-table {
		display: table;
	}
	.contact-table > tbody > tr {
		display: flex;
		margin-bottom: 56px;
	}
	.contact-table > tbody > tr > th {
		width: 260px;
		margin: 26px 0 0 0;
	}
	.contact-table > tbody > tr > th span {
		margin-left: 14px;
	}
	.contact-table > tbody > tr > td {
		width: 620px;
	}
	.contact-table > tbody > tr > td input,
	.contact-table > tbody > tr > td select,
	.contact-table > tbody > tr > td textarea {
		width: 100%;
		padding: 24px;
	}
	.contact-table > tbody > tr > td select {
		padding: 28px 24px;
	}
	.contact-table > tbody > tr > td textarea {
		height: 400px;
	}
	.policy-area {
		margin-bottom: 56px;
		padding: 48px 0 50px;
	}
	.policy-area > p {
		padding-bottom: 24px;
	}
	
	
	/* policy */
	.policy {
		width: 880px;
		margin: 0 auto;
	}
	.policy-cont {
		margin-top: 64px;
	}
	.policy-cont > h3 {
		margin-bottom: 28px;
		font-size: 2.4rem;
	}
	.policy-cont > ul {
		margin: 20px 0 0 24px;
		line-height: 2;
	}
	
	
	/* column */
	.column {
		display: flex;
		justify-content: space-between;
		width: 86%;
		max-width: 1150px;
	}
	.main {
		width: 70%;
	}	
	.side {
		width: 22%;
		margin: 0;
	}
	.side-cont:first-child {
		margin: 0;
	}
	
	
	/* category */
	.post-list > a {
		padding: 48px 0;
		transition: all .7s;
	}
	.post-list > a:hover {
		opacity: .7;
	}
	.post-list-img > img {
		width: 260px;
	}
	.post-list-cont {
		margin-left: 40px;
	}
	.post-list-text > time {
		font-size: 1.4rem;
	}
	.post-list-text > h3 {
		margin-top: 14px;
		font-size: 2.2rem;
	}
	.post-list-text > p {
		display: block;
		margin-top: 16px;
		line-height: 1.8;
		color: #555;
	}
	
	
	/* pagenation */
	.pagenation {
		margin-top: 56px;
	}
	.pagenation li {
		margin-left: 18px;
	}
	.pagenation li.next a,
	.pagenation li.prev a {
		display: block;
		width: 96px;
		height: 44px;
		padding-top: 15px;
	}
	.pagenation li.active {
		width: 44px;
		height: 44px;
		padding-top: 15px;
	}
	.pagenation li a {
		width: 44px;
		height: 44px;
		padding-top: 15px;
		font-size: 1.4rem;
		transition: all .7s;
	}
	.pagenation li a:hover {
		background: #4363AC;
		color: #fff;
	}
	
	
	
	/* single */
	.single-header {
		padding-bottom: 36px;
	}
	.single-header:after {
		width: 180px;
	}
	.single-header > time {
		font-size: 1.4rem;
	}
	.single-header > h1 {
		margin-top: 24px;
		font-size: 2.8rem;
	}
	.single-cont {
		padding-bottom: 48px;
	}
	.single-cont > h2 {
		margin: 64px 0 44px;
		padding: 20px 24px;
		font-size: 2.4rem;
	}
	.single-cont > h3 {
		margin: 64px 0 44px;
		padding-bottom: 28px;
		font-size: 2.2rem;
	}
	.single-cont > h4 {
		margin: 32px 0 20px;
		font-size: 2.0rem;
	}
	.single-cont > p {
		margin-bottom: 28px;
		line-height: 2;
	}
	.wp-block-image,
	.wp-block-embed {
		max-width: 680px;
		margin: 56px auto 48px;
	}
	.wp-element-caption {
		padding-top: 14px;
	}
	
	
	/* side */
	.side-cont {
		margin-top: 64px;
	}
	.side-cont > ul {
		margin-top: 32px;
	}
	.side-cont > ul > li {
		margin-top: 28px;
	}
	.side-cont > ul > li > a {
		transition: all .7s;
	}
	.side-cont > ul > li > a:hover {
		opacity: .7;
	} 
	.side-cont > select {
		margin-top: 34px;
	}
	
	
	/* cta */
	.cta {
		margin-top: 180px;
		background: url(../images/cta-back.jpg);
		background-position: top left;
	}
	.cta-inner {
		display: flex;
		justify-content: space-between;
		max-width: 1200px;
	}
	.cta-head {
		margin: 0;
		text-align: left;
	}
	.cta-head > h3 {
		font-size: 3.0rem;
	}
	.cta-cont {
		width: 58%;
		max-width: 680px;
	}
	.cta-tel {
		display: flex;
		justify-content: center;
		margin: 36px auto 0;
	}
	.cta-tel > p {
		display: flex;
		align-items: center;
		margin-right: 32px;
		text-align: left;
		position: relative;
	}
	.cta-tel > p:after {
		display: block;
		content: '';
		width: 1px;
		height: 40px;
		margin-left: 32px;
		background: #fff;
	}
	.cta-tel > p > br {
		display: block;
	}
	.cta-tel > a > img {
		width: 260px;
	}
	
	
	/* footer */
	.footer {
		padding: 110px 0 160px;
	}
	.footer-inner {
		display: flex;
		justify-content: space-between;
		width: 90%;
	}
	.footer-left {
		margin-bottom: 80px;
	}
	.footer-logo a img {
		margin-bottom: 32px;
	}
	.address {
		margin-bottom: 32px;
		font-size: 1.3rem;
	}
	.footer-nav ul {
		display: flex;
	}
	.footer-nav ul li {
		width: auto;
		margin-left: 40px;
		font-size: 1.3rem;
	}
	.footer-nav ul li:after {
		display: none;
	}
	.footer-nav ul li a {
		padding: 0;
		border: none;
		transition: all .7s;
	}
	.footer-copy {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: 0 auto;
	}
	.footer-copy > a {
		font-size: 1.3rem;
	}
	.footer-copy > p {
		margin: 0;
	}

}








