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

html,
body,
div,
span,
object,
iframe,
h1,
.recent-updated-heading,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input[type=submit],
input[type=button] {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*=============================================================
#base
=============================================================*/

img {
	max-width: 100%;
	height: auto;
	min-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

ol,
ul {
	list-style: none;
}

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;
	font-size: 1rem;
	-webkit-text-size-adjust: none;
	-webkit-touch-callout: none;
	background-color: #FFF;
	text-size-adjust: 100%;
	margin: 0px;
	padding: 0px;
}

:focus {
	outline: 0;
}

iframe {
	width: 100%;
}

#container {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none;
}

.drawerfixed {
	overflow: auto;
	height: 100%;
}

.p_right {
	text-align: right;
}

.p_center {
	text-align: center;
}

/*=============================================================
見出し
=============================================================*/
h2 {
	font-size: 20px;
	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: 20px;
	font-weight: bold;
	line-height: 1.8em;
}

h4 {
	font-size: 20px;
	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: 250px;
	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 {
	display: none;
}

#sp_header .logo {
	margin: 1%;
	position: relative;
	width: 40%;
	max-width: 300px;
}

#sp_header .drawer-nav {
	background: #00a0e9;
}

#sp_header .header_nav li {
	text-align: center;
	padding: 1em;
	border-bottom: 1px dotted #ccc;
}

#sp_header .header_nav li a {
	color: #fff;
}

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

#footer2 .logo {
	width: 60%;
	max-width: 300px;
}

#footer2 p {
	color: #fff;
	margin: 30px 0;
	font-size: 14px;
}

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

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

#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;
}