@charset "UTF-8";
/* ----------------------------
 import css
---------------------------- */
@import url("common.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*=============================================================
#base
=============================================================*/
body,
html {
	width: 100%;
	min-width: 1200px;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	font-size: 1em;
	line-height: 1.8em;
	color: #333333;
	text-align: left;
	text-size-adjust: 100%;
}

a:active {
	color: #0000FF;
	text-decoration: underline;
}

a:visited {
	color: #66F;
	text-decoration: underline;
}

a:link {
	color: #0000FF;
	text-decoration: underline;
}

a:hover {
	color: #00F;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
	opacity: 0.5;
}

#container {
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
	width: 100%;
}

a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #000;
}

#sp_header,
.hd,
.drawer-toggle,
.drawer-nav {
	display: none;
}

.p_right {
	text-align: right;
}

.p_center {
	text-align: center;
}

/*=============================================================
見出し
=============================================================*/
h2 {
	font-size: 24px;
	color: #00a0e9;
	font-weight: bold;
	line-height: 1.2em;
	position: relative;
	text-align: left;
	z-index: 1000 !important;
	margin: 100px auto 30px;
}

h2::before {
	position: absolute;
	font-family: "Gill Sans", sans-serif;
	font-weight: 100;
	font-size: 100px;
	color: #f8b62b;
	top: -23px;
	left: 0;
	z-index: -10;
}

h2.about::before {
	content: "About";
}

h2.works::before {
	content: "Works";
}

h2.recruit::before {
	content: "Recruit";
}

h2.contact::before {
	content: "Contact";
}

h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.8em;
}

h4 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.8em;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

h4:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #666;
	margin-left: 1rem;
}

/*=============================================================
ボタン
=============================================================*/
a.btn {
	display: inline-block;
	margin: 0 auto;
	padding: 1em 2em;
	width: 300px;
	color: #fff;
	background: linear-gradient(to right, #00a0e9, 70%, #f8b62b);
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	text-align: center !important;
	border-radius: 50px;
}

a.btn::after {
	position: absolute;
	top: 45%;
	right: 20px;
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

a.btn:hover {
	color: #fff;
	background: #f8b62b;
	opacity: 1;
	;
}

a.btn:hover::after {
	position: absolute;
	top: 45%;
	right: 20px;
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

/*=============================================================
#header
=============================================================*/
#header2 {
	width: 100%;
	padding: 1%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000 !important;
	background: rgba(0, 160, 233, 0.3);
}

#header2 .header_nav ul {
	display: flex;
}

#header2 .header_nav ul li:not(first-child) {
	padding-left: 50px;
}

#header2 .header_nav ul li a {
	color: #333;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}

/*=============================================================
#FOOTER
=============================================================*/
#footer2 {
	width: 100%;
	background: #333;
	padding: 2% 3%;
	box-sizing: border-box;
}

#footer2 .body {}

#footer2 .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footer2 p {
	color: #fff;
	margin: 30px 0;
}

#footer2 .footer_nav ul {
	display: flex;
	margin-bottom: 60px;
}

#footer2 .footer_nav ul li:not(first-child) {
	padding-left: 50px;
}

#footer2 .footer_nav ul li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}

#footer2 p.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #fff;
	text-align: right;
}