<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:https://www.geotechnos.co.jp/
File name:common_sp.css
Summary:base styles
Created:2021-10-13
--------------------------------------------------------------- */

@media screen and (max-width: 1200px) {

body {
	font-size: 14px !important;
}

/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
	color: #008BAB;
	text-decoration: none;
}

a:hover,
a:active {
	color: #008BAB;
	text-decoration: none;
}

img,
.alpha {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx:after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 60px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: none !important;
}

.sp_mode {
	display: inherit !important;
}

/* Header */
/* ------------------------------------------------------------ */

header {
	position: relative;
	z-index: 999;
}

header .inner {
	width: 100%;
	position: absolute;
	top: -80px; /* fixed時に80px下にアニメーションさせる */
	margin-top: 80px; /* fixed時に80px下にアニメーションさせる */
}

header .inner .header_area {
	background: #636363;
}

header .inner .header_area &gt; div {
	background: rgba(255, 255, 255, 1);
	width: 100%;
	height: 40px;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner .header_area &gt; div h1 {
	margin: 0 0 0 20px;
}

header .inner .header_area &gt; div h1 img {
	width: auto;
	height: 20px;
}

header .inner .header_area &gt; div &gt; div.sp_mode {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* #nav_toggle */
header .inner .header_area #nav_toggle {
	background: #052C52;
	width: 40px;
	height: 40px;
	margin: 0 0 0 0;
	cursor: pointer;
}

header .inner .header_area #nav_toggle div {
	position: relative;
}

header .inner .header_area #nav_toggle span {
	background: #fff;
	width: 20px;
	height: 2px;
	display: block;
	position: absolute;
	left: 10px;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

header .inner .header_area #nav_toggle span:nth-child(1) {
	top: 13px;
}

header .inner .header_area #nav_toggle span:nth-child(2) {
	top: 19px;
}

header .inner .header_area #nav_toggle span:nth-child(3) {
	top: 25px;
}

/* #nav_toggle 切り替えアニメーション */
header .open #nav_toggle span:nth-child(1) {
	top: 19px !important;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
header .open #nav_toggle span:nth-child(2) {
	width: 0 !important;
	left: 50% !important;
}
header .open #nav_toggle span:nth-child(3) {
	top: 19px !important;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/* Header fixed */
/* ------------------------------------------------------------ */

header .inner.fixed {
	position: fixed !important;
	top: 0px !important;
	margin-top: 0 !important;
	-webkit-transition: top 0.4s ease-in; /* fixed時にアニメーションさせる */
	-moz-transition: top 0.4s ease-in;  /* fixed時にアニメーションさせる */
	transition: top 0.4s ease-in;  /* fixed時にアニメーションさせる */
}

/* Global menu */
/* ------------------------------------------------------------ */

header .inner.fixed .header_area &gt; div,
header .inner.open .header_area &gt; div {
	background-color: #fff;
}

/* #global_nav スライドアニメーション */
header .open #global_nav {
	-moz-transform: translateY(550px);
	-webkit-transform: translateY(550px);
	transform: translateY(550px);
}

/* 開いてないときは画面外に配置 */
header #global_nav {
	border-bottom: 1px #fff solid;
	background: #052C52;
	position: absolute;
	top: -550px;
	z-index: 1;
	text-align: left;
	width: 100%;
	padding: 40px 0 40px;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);*/
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

header #global_nav &gt; div &gt; div {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

header #global_nav &gt; div &gt; div &gt; div {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

header #global_nav dl {
	text-align: center;
	margin-top: 40px;
}

header #global_nav dl dt {
	color: #008BAB;
	font-size: 14px;
	font-style: italic;
	display: block;
}

header #global_nav dl dd a {
	color: #fff;
	font-size: 12px;
	margin-top: 10px;
	display: block;
}

header #global_nav dl dd.parent a {
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
}

header #global_nav dl dd:nth-of-type(2) a {
	margin-top: 20px;
}

header #global_nav p.btn {
    text-align: center;
	margin-top: 40px;
}

header #global_nav p.btn a {
    background: #008BAB;
	color: #fff;
	font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    color: #fff;
    padding: 10px 20px;
	display: inline-block;
}

/* Breadcrumb */
/* ------------------------------------------------------------ */

ul.breadcrumbs {
    margin: 10px 20px 20px;
    display: flex;
	flex-wrap: nowrap;
}
ul.breadcrumbs li {
	font-size: 10px;
	white-space: nowrap;
	display: inline-block;
	position: relative;
	padding-right: calc(12px + 6px);
	margin-right: 6px;
}
ul.breadcrumbs li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
ul.breadcrumbs li:last-child {
	margin-right: 0;
	padding-right: 0;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
ul.breadcrumbs li:last-child::before {
	content: normal;
}
ul.breadcrumbs li a {
}

/* Footer */
/* ------------------------------------------------------------ */

footer {
	margin-top: 80px;
}

footer &gt; div:nth-of-type(1) {
	background: #052C52;
	padding: 0 0 40px;
}

footer &gt; div:nth-of-type(2) {
	background: #fff;
	padding: 20px 0;
}

footer &gt; div &gt; .inner {
	padding: 0 20px;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) &gt; dl {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}


footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) &gt; dl dt {
	color: #008BAB;
	font-size: 14px;
	font-style: italic;
	display: block;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) &gt; dl dd a {
	color: #fff;
	font-size: 12px;
	margin-top: 10px;
	display: block;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) &gt; dl dd.parent a {
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(1) &gt; dl dd:nth-of-type(2) a {
	margin-top: 20px;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(2) &gt; ul {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(2) &gt; ul li a {
	color: #fff;
	font-size: 12px;
	margin-top: 20px;
	display: block;
}

footer &gt; div:nth-of-type(1) &gt; .inner &gt; div:nth-of-type(2) &gt; ul li:first-child a {
	margin-top: 0;
}

footer &gt; div:nth-of-type(2) &gt; .inner &gt; div:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

footer &gt; div:nth-of-type(2) &gt; .inner &gt; div:nth-of-type(1) h1 {
	width: 240px;
}

footer &gt; div:nth-of-type(2) &gt; .inner &gt; div:nth-of-type(1) p {
	font-size: 10px;
	margin-top: 10px;
}

/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	transform: translate(0, 40px);
	transition: all 700ms;
	opacity: 0;
}

/* scrollin */
/* ------------------------------------------------------------ */

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */

.pagetop {
	background: #000;
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 40px;
}

.pagetop a {
	display: block;
}

.pagetop img {
	width: 100%;
	height: auto;
}

}</pre></body></html>