@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, 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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #191919;
	text-decoration: none;
}
a:visited {
	color: #191919;
}
a:hover {
	opacity: 0.7;
}
a:active {
	color: #191919;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 1px;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 980px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content {
		width: 90%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}

@media screen and (max-width:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:425px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
}



/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header .sp_menu .hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
#header .sp_menu .hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #000;
  transition: all .6s;
}
#header .sp_menu .hamburger-overlay__line:nth-of-type(1) {
	top: 14px;
}
#header .sp_menu .hamburger-overlay__line:nth-of-type(2) {
	top: 23px;
}
#header .sp_menu .hamburger-overlay__line:nth-of-type(3) {
	top: 32px;
}
#header .sp_menu .hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
#header .sp_menu .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
#header .sp_menu .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
#header .sp_menu .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
#header .sp_menu .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
#header .sp_menu .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
#header .sp_menu .nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#header .sp_menu .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .sp_menu .nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}
#header .sp_menu .nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
#header .sp_menu .nav-overlay.active .nav-overlay__item:nth-child(1) {
	transition-delay: 0.1s;
}
#header .sp_menu .nav-overlay.active .nav-overlay__item:nth-child(2) {
	transition-delay: 0.2s;
}
#header .sp_menu .nav-overlay.active .nav-overlay__item:nth-child(3) {
	transition-delay: 0.3s;
}
#header .sp_menu .nav-overlay.active .nav-overlay__item:nth-child(4) {
	transition-delay: 0.4s;
}
#header .sp_menu a.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
  font-family: "Julius Sans One", serif;
}
#header .sp_menu a.nav-overlay__link:hover {
  opacity: 0.7;
}


/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/
#mainvisual .mainvisual_content {
	height: 100svh;
	background-color: #fff;
	position: relative;
}
#mainvisual .mainvisual_ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	color: #fff;
	font-family: "Julius Sans One", serif;
	display: grid;
    align-content: flex-end;
}
#mainvisual .mainvisual_ttl h1 {
	font-size: min(100px, 6.9vw);
	font-weight: normal;
	line-height: 1.0;
	color: #333;
}
#mainvisual .mainvisual_ttl h2 {
	font-size:  min(40px, 3vw);
	font-weight: normal;
	line-height: 1.0;
	color: #333;
}
#mainvisual .mainvisual_ttl span {
	display: inline-block;
	opacity: 0;
}

@media screen and (max-width:896px) {
	#mainvisual .mainvisual_ttl h1 {
		font-size: clamp(44px, 13vw, 61px);
	}
	#mainvisual .mainvisual_ttl h2 {
		font-size: clamp(18px, 5.5vw, 26px);
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
#sec_top {
	padding: 100px 0;
}
#sec_top .sec_top-ttl {
	text-align: center;
	position: relative;
}
#sec_top .sec_top-ttl::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	z-index: -1;
}
#sec_top .sec_top-ttl h2 {
	font-size: 40px;
	background-color: #fff;
	padding: 5px 30px;
	width: fit-content;
	margin: 0 auto;
	font-family: "Julius Sans One", serif;
	font-weight: normal;
}
#sec_middle {
	margin-bottom: 50px;
}
.sec_ttl h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-family: "Julius Sans One", serif;
	font-weight: normal;
}
.sec_ttl h2 span {
	display: inline-block;
}
.anime_ttl {
	opacity: 0;
}

@media screen and (max-width:896px) {
	#sec_top {
		padding-bottom: 50px;
	}
}

/*------------------------------------------------------------
	アバウト
------------------------------------------------------------*/
#about #profile {
	margin-bottom: 70px;
}
#about #profile .profile_content {
	display: grid;
	grid-template-columns: 1fr auto;
}
#about #profile .txt h2 {
	margin-bottom: 15px;
}

#about #info .info_ttl {
	margin-bottom: 15px;
}
#about #info .info_table table {
	width: 100%;
	border-spacing: 0;
}
#about #info .info_table table th, #about #info .info_table table td {
	padding: 25px 0;
}
#about #info .info_table table th {
	border-top: 1px solid #000;
	font-weight: 600;
}
#about #info .info_table table td {
	border-top: 1px solid #C3C3C3;
	padding-left: 20px;
}
#about #info .info_table table tr:last-child th {
	border-bottom: 1px solid #000;
}
#about #info .info_table table tr:last-child td {
	border-bottom: 1px solid #C3C3C3;
}

@media screen and (max-width:896px) {
	#about #profile .profile_content {
		display: block;
	}
}
@media screen and (max-width:600px) {
	#about #info .info_table table th, #about #info .info_table table td {
		width: 100%;
		display: block;
		position: relative;
		border-top: 0;
		padding-left: 0;
	}
	#about #info .info_table table th::before {
		content: "";
		width: 100%;
		height: 1px;
		background: linear-gradient(to right, #000 30%, #C3C3C3 30%);
		position: absolute;
		left: 0;
		top: 0;
	}
	#about #info .info_table table  th {
		padding-bottom: 5px;
	}
	#about #info .info_table table td {
		padding-top: 5px;
	}
	#about #info .info_table table tr:last-child th {
		border-bottom: 0;
	}
	#about #info .info_table table tr:last-child td {
		border-bottom: 0;
	}
	#about #info .info_table table tr:last-child td::before {
		content: "";
		width: 100%;
		height: 1px;
		background: linear-gradient(to right, #000 30%, #C3C3C3 30%);
		position: absolute;
		left: 0;
		bottom: 0;
	}
}


/*------------------------------------------------------------
	コンタクト
------------------------------------------------------------*/
#contact .contact_table {
	margin: 30px 0;
}
#contact .contact_table table {
	width: 100%;
	border-spacing: 0 30px;
}
#contact .contact_table table th {
	width: 200px;
	padding: 10px 0;
    vertical-align: top;
	font-weight: 600;
}
#contact .contact_table table th span {
	color: #FF0000;
}
#contact .contact_table table td input, #contact .contact_table table td textarea {
	background-color: #EAEAEA;
	padding: 15px;
	width: 100%;
	border: 0;
	box-sizing: border-box;
}
#contact .recaptcha {
	font-size: 14px;
	text-align: center;
}
#contact .recaptcha a {
	text-decoration: underline;
}
#contact .contact_btn {
	max-width: 250px;
	margin: 50px auto 0;
}
#contact .contact_btn input {
	background-color: #000;
	color: #fff;
	width: 100%;
	padding: 15px 0;
	font-size: 18px;
	text-align: center;
	border: 0;
}
#contact .contact_btn input:hover {
	opacity: 0.7;
}
.grecaptcha-badge {
	visibility: hidden;
}
#contact .thanks_content h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

@media screen and (max-width:896px) {
	#contact .contact_table table th, #contact .contact_table table td {
		width: 100%;
		display: block;
	}
	#contact .contact_table table th {
		padding: 0;
	}
}
@media screen and (max-width:430px) {
	#contact .recaptcha {
		text-align: left;
	}	
}


/*------------------------------------------------------------
	ワークス
------------------------------------------------------------*/
#works .works_list ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
#works .works_list ul li .inner img {
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #dfdfdf;
}
#works .works_list ul li .inner p.cate {
	padding: 3px 15px 0;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	width: fit-content;
	font-family: "Julius Sans One", serif;
}
#works .works_list ul li .inner h3 {
	font-size: 18px;
	font-weight: normal;
}
#works .works_list ul li .modal {
	display: none;
}
#works .works_modal .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
	z-index: 1000;
    width: 100%;
}
#works .works_modal .modal__bg {
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
#works .works_modal .modal__content {
    background: #fff;
    padding: 10px 50px 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
	height: 100%;
	max-width: 800px;
	max-height: 90svh;
	overflow-y: auto;
	box-sizing: border-box;
}
#works .works_modal .close_btn {
	width: 40px;
	height: 40px;
	display: block;
	position: sticky;
	top: 0;
	margin-right: -40px;
	margin-left: auto;
}
#works .works_modal .close_btn::before, #works .works_modal .close_btn::after {
	content: "";
	background-color: #000;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
}
#works .works_modal .close_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
#works .works_modal .close_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
#works .works_modal .modal__content > img {
	width: 100%;
	margin-bottom: 30px;
	border: 1px solid #dfdfdf;
}
#works .works_modal .modal__content p.cate {
	background-color: #000;
	color: #fff;
	max-width: 80px;
	text-align: center;
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.0;
}
#works .works_modal .modal__content h3 {
	margin: 15px 0;
	font-size: 24px;
}
#works .works_modal .modal__content .btn a {
	max-width: 250px;
	width: 100%;
	background-color: #000;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 1.0;
	padding: 22px 10px;
	margin: 50px auto 0;
}

@media screen and (max-width:896px) {
	#works .works_list ul {
		grid-template-columns: 1fr 1fr;
	}
	#works .works_modal .modal__content {
		padding: 10px 20px 40px;
	}
	#works .works_modal .close_btn {
    	margin-right: -15px;
	}
}
@media screen and (max-width:430px) {
	#works .works_list ul {
		grid-template-columns: 1fr;
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer .footer_content {
	padding: 100px 0 50px;
}
#footer .footer_copy {
	text-align: center;
	font-family: "Julius Sans One", serif;
}
#footer .footer_copy p {
	font-size: 14px;
}

/*------------------------------------------------------------
	フェードアニメーション
------------------------------------------------------------*/
.fadeInup {
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 30px);
	transition: 1.25s;
}
.fadeInup.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: 1.25s;
}
.fadeIn.active {
	opacity: 1;
	visibility: visible;
}

/*------------------------------------------------------------
	パーティクルアニメーション
------------------------------------------------------------*/
canvas{
	display: block;
	vertical-align: bottom;
}
#particles-js{ 
	position:absolute;
	width: 100%;
	height: 100%;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.count-particles{
	background: #000022;
	position: absolute;
	top: 48px;
	left: 0;
	width: 80px;
	color: #13E8E9;
	font-size: .8em;
	text-align: left;
	text-indent: 4px;
	line-height: 14px;
	padding-bottom: 2px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.js-count-particles{
	font-size: 1.1em;
}
#stats, .count-particles {
	 -webkit-user-select: none;
	 margin-top: 5px;
	 margin-left: 5px;
}
#stats {
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}
.count-particles{
	border-radius: 0 0 3px 3px;
}