@charset "UTF-8";

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

@media screen and (min-width: 1201px) {

/* 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: inherit !important;
}

.sp_mode {
	display: none !important;
}

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

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

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

header .inner .header_area {
	background: rgba(255, 255, 255, 1);
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner .header_area > div h1 {
	margin: 0 0 0 60px;
}

header .inner .header_area > div h1 a {
	width: 204px;
    display: flex;
	justify-content: center;
	align-items: center;
}

/* 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 #global_nav {
	margin: 0 60px 0 0;
}

header #global_nav > div > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header #global_nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header #global_nav ul li {
	border-right: 1px #D1D1D1 solid;
}

header #global_nav ul li:last-child {
	border-right:none;
}

header #global_nav ul li a {
	color: #333;
    font-size: 14px;
    font-weight: 500;
	white-space: nowrap;
	padding: 5px 20px;
	display: block;
}

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: block;
}

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

ul.breadcrumbs {
    margin: 10px 0 40px 60px;
    display: flex;
	flex-wrap: nowrap;
}
ul.breadcrumbs li {
	font-size: 12px;
	line-height: 1.2;
	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: 120px;
}

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

footer > div:nth-of-type(2) {
	background: #fff;
}

footer > div > .inner {
	margin: 0 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer > div:nth-of-type(2) > .inner {
	height: 100px;
}

footer > div:nth-of-type(1) > .inner > div:nth-of-type(1) {
	width: 70%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

footer > div:nth-of-type(1) > .inner > div:nth-of-type(1) > dl {
	display: block;
	flex-basis: 33.333%;
}

footer > div:nth-of-type(1) > .inner > div:nth-of-type(1) > dl:nth-of-type(n+4) {
	margin-top: 60px;
}

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

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

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

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

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

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

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

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

footer > div:nth-of-type(2) > .inner > div:nth-of-type(1) h1 {
	width: 260px;
}

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

footer > div:nth-of-type(2) > .inner > div:nth-of-type(2) {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer > div:nth-of-type(2) > .inner > div:nth-of-type(2) p:nth-of-type(2) {
	margin-left: 60px;
}

/* 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: 40px;
	right: 30px;
	width: 60px;
}

.pagetop a {
	display: block;
}

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

}