@charset "UTF-8";
/* CSS Document */
body {
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2rem;
	color: #525252;
	text-decoration: none;
	font-size: 1.1rem;
}

header {
    width: 100%;
	display: flex;
	justify-content:space-between;
	margin-bottom: 30px;
}

.site-logo img {
	width: 224px;
	margin: 10px 0 10px 20px;
}

#global_nav ul {
	margin: 15px 30px 10px 0;
}

#nav-menu {
	display: flex;
}

#nav-menu li {
	font-size: 0.9rem;
	margin-left: 30px;
}

#nav-menu li a:hover {
	color: #A4A4A4;
}

main {
	max-width: 1100px;
	margin: 0 auto;
}

.top-visual {
	position: relative;
}

.nana_txt {
	width: 100%;
}
.nana_sp {
	display: none;
}

/*スクロール*/
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/* ここまで */

/*フェード*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.top-visual p {
	font-size: 1.6rem;
	line-height: 2.3rem;
	font-weight: 700;
	color: #767676;
	position: absolute;
	bottom: 10%;
	left: 5%;
}

section {
	margin: 50px;
}

section h2 {
	font-size: 2.3rem;
	font-weight: 600;
	margin-bottom: 30px;
	color: #B4B4B4;
}

.service_detail {
	margin: 40px 0;
}

.service_detail h3 {
	font-size: 1.3rem;
	font-weight: 700;
	border-left: 8px #878787 solid ;
	padding-left: 10px;
	margin-bottom: 10px;
}

.fw700 {
	font-weight: 700;
}

.fw400 {
	font-weight: 400;
}

#About h3 {
	font-size: 1.3rem;
	font-weight: 700;
	border-left: 8px #878787 solid ;
	padding-left: 10px;
	margin-bottom: 10px;
}

.service_detail li {
	list-style: circle;
	margin-left: 1.2rem;
	margin-bottom: 5px;
}

.Profile_p {
	font-size: 0.85rem;
	line-height: 1.4rem;
}

/* Voiceページ */

.Voice_main {
	margin: 30px 0;
}

.Voice_main img {
	max-width: 60%;
	height: auto;
	margin-bottom: 10px;
}

.Voice_main h3 {
	font-size: 1.2rem;
	font-weight: 700;
	border-left: 8px #878787 solid ;
	padding-left: 10px;
	margin-bottom: 10px;
}

/* Work */

.work {
	margin: 20px 0;
}

.work img {
	width: 100%;
}

.work a:hover {
	filter: opacity(65%);
}

/* Work ページ */

.work_box {
	width: 260px;
	margin: 10px 20px 10px 0;
	font-size: 0.9rem;
	text-align: center;
	display: inline-block;
}

.work_box img {
	width: 260px;
}
.work_box a:hover {
	filter: opacity(65%);
}



/* archive ページ */

/* .archive {

} */
.archive_l {
	margin: 10px 20px 10px 0;
}
.archive_s {
	width: 277px;
	margin: 10px 20px 10px 0;
	display: inline-block;
}
.archive_m {
	width: 428px;
	margin: 10px 20px 10px 0;
	display: inline-block;
}
.archive img {
	width: 100%;
}

.archive h3 {
	font-size: 1.3rem;
	font-weight: 700;
}

.archive a:hover {
	text-decoration: underline;
	color: brown;
}

/*　footer　*/

#site-footer {
    background-color: #A5A5A5;
    width: 100%;
    height: 100px;
}

#copyright {
    color: #fff;
    text-align: center;
    padding-top: 20px;
}

#drawer_toggle {
    display: none;
}

/*　text　*/
.txt90 {
	font-size: 0.9rem;
	line-height: 1.4rem;
}

/*　botton　*/
.btn,
a.btn,
button.btn {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.3rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-top: 1.2rem;
}

a.btn-border {
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
  }
  
  a.btn-border:hover {
	color: #fff;
	background: #707070;
  }

@media all and (max-width:650px) {
	
	header {
		display: block;
		text-align: center;
		margin-bottom: 0px;
	}
	
	#global_nav {
		justify-content: center;
	}
	
	#global_nav ul {
		margin:  0 auto;
		justify-content: space-between;
	}

	#nav-menu {
		width: 350px;
		display: flex;
	}

	#nav-menu li {
		display: flex;
		margin: 0;
		font-size: 0.8rem;
	}
	
	main {
		max-width: 100%;
	}
	
	section {
		margin: 30px 15px;
	}
	
	.nana_txt {
		display: none;
	}
	
	.nana_sp {
		display: block;
		width: 98%;
	}
	.top-visual p {
		font-size: 1.3rem;
		line-height: 1.7rem;
		bottom: 15%;
		left: 1%;
	}

	.work {
		text-align: center;
	}
	.work img {
		width: 100%;
	}

	/* .work_box {
		width: 85%;
		margin: 10px;
		text-align: center;
	}
	.work_box img {
		width: 100%;
	} */

	.archive_s {
		width: 95%;
		display: block;
	}
	.archive_m {
		width: 95%;
		display: block;
	}


	.Voice_main img {
		max-width: 95%;
	}

}