@charset "UTF-8";



/*--------------------------------------------------------------
html, body
--------------------------------------------------------------*/

html, body{
	margin: 0;
    padding: 0;
	color: #1D1D1D;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	text-rendering: optimizeLegibility;
}


/*--------------------------------------------------------------
.viga-regular {
  font-family: "Viga", sans-serif;
  font-weight: 400;
  font-style: normal;
}

background: url("../image/ground.jpg") top center no-repeat;
-webkit-background-size: 100% 100%;
background-size: 100% 100%;
--------------------------------------------------------------*/

/*--------------------------------------------------------------
h1,h2,h3,h4,h5,h6
ul
--------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

ul {
	list-style-type: none;
}


/*--------------------------------------------------------------
img
--------------------------------------------------------------*/

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

/*--------------------------------------------------------------
a
--------------------------------------------------------------*/

a:link {
	color: #1D1D1D;
	text-decoration: none;
}

a:visited {
	color: #1D1D1D;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}


/*--------------------------------------------------------------
#waiting-screen
--------------------------------------------------------------*/

#waiting-screen {
  display: none; /* 初期は非表示、JSで表示制御 */
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F15928;
  color: #fff;
  font-family: "Viga", sans-serif;
}

/* 中央揃え用ラッパー */
.wait-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ロゴ */
.wait-logo img {
  width: 90px;
  animation: fireFlicker 2s infinite ease-in-out;
}

/* プログレスバー */
#waiting_text {
  position: relative;
  width: 80%;
  height: 10px;
  margin-top: 30px;
}

.progressbar-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff !important;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .wait-logo img {
    width: 70px;
  }

  #waiting_text {
    width: 90%;
    height: 8px;
  }

  .progressbar-text {
    font-size: 16px;
  }
}

@keyframes fireFlicker {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.02) rotate(-2deg);
  }
  50% {
    transform: scale(1.01) rotate(1deg);
  }
  75% {
    transform: scale(0.99) rotate(-1deg);
  }
}

/*--------------------------------------------------------------
#container
--------------------------------------------------------------*/

#container {
	display: flex;
	min-height: 100vh;
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: clamp(200px, 16.66vw, 320px);
	height: 100vh;
	padding: 1rem;
	border-right: 1px solid #E5E5E5;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	background-color: #fff; 
	z-index: 999;
}

.logo {
	margin-top: 2.083vw;
	margin-bottom: 2rem;
}

.sidebar-inner {
	position: absolute;
	top: calc(50% + 60px);
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.sidebar-inner ul {
	display: flex;
	flex-direction: column;
	text-align: center;
	min-height: 10.41vw;
}

.content {
	margin-left: 16.66vw;
	flex: 1;
	min-width: 0;
	min-height: 100vh;
}

@media (max-height: 700px) {
	
	.sidebar-inner {
		position: static;
		transform: none;
		margin-top: 1rem;
		display: flex;
		justify-content: center;
  }
	
}


@media (max-width: 991px) {
	
	#container {
		flex-direction: column;
	}
	
	.sidebar {
		position: relative;
		width: 100%;
		height: auto;
		margin-left: 0;
	}
	
	.sidebar-inner {
		position: static;
		transform: none;
		margin-top: 1rem;
		display: flex;
		justify-content: center;
	}
	
	 .sidebar h1 {
		 margin: 1rem auto 0;
	}

	.content {
		margin-left: 0;
	}
}

@media (min-width: 300px) {
  
	.sidebar {
		display: none;
	}
}

@media (min-width: 768px) {
  
	
}

@media (min-width: 992px) {
	
	.sidebar {
		display: inherit;
	}
  
	.sidebar h1 {
		width: 9.635vw;
		margin: 0 auto;
		flex-shrink: 0;
	}
	
	.sidebar ul {
		margin: 0;
		padding: 0;
		text-align: center;
	}
	
	.sidebar ul li a {
		margin: 0;
		padding: 0.781vw 1.042vw;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5em;
		font-size: clamp(0.9rem, 0.833vw, 2rem);
		font-weight: 700;
		letter-spacing: 1px;
		transition: color 0.3s ease;
	}

	.sidebar ul li a:hover {
		color: #F15928;
	}
	
	.sidebar ul li i {
		margin: 0;
		padding: 0;
	}
	
	.sidebar ul li i img {
		width: 1.042vw;
		display: block;
	}
	
}


/*--------------------------------------------------------------
.right-text
.cv-btn
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.right-text {
		display: none;
	}
	

	.cv-btn {
		position: fixed;
		right: 5px;
		bottom: 5px;
		width: 90px;
		height: 90px;
		background: #F15928;
		padding: 3px;
		border-radius: 50%;
		transition: background-color 0.3s ease;
		z-index: 2;
		z-index: 999;
	}
	
	.cv-btn:hover {
		background: #494949;
	}
	
	.cv-btn dl {
		border: 1px solid rgba(255,255,255,0.47);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		text-align: center;
		color: #FFF;
		padding-top: 10px;
	}
	
	.cv-btn dd {
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 1px;
		margin-top: -5px;
	}
	
	.cv-btn dd span {
		display: none;
	}
	
	.cv-btn dl .material-symbols-outlined {
		font-size: 35px;
		font-variation-settings:
			'FILL' 0,
			'wght' 100,
			'GRAD' 0,
			'opsz' 24
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.right-text {
		position: fixed;
		top: 50%;
		right: 1.042vw;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		font-family: "Viga", sans-serif;
		font-size: 0.677vw;
		writing-mode: vertical-rl;
		z-index: 2;
		display: inherit;
	}
	

	.cv-btn {
		position: fixed;
		right: 1.042vw;
		bottom: 2%;
		width: 9.375vw;
		height: 9.375vw;
		background: #F15928;
		padding: 0.26vw;
		border-radius: 50%;
		transition: background-color 0.3s ease;
		z-index: 2;
	}
	
	.cv-btn:hover {
		background: #494949;
	}
	
	.cv-btn dl {
		border: 1px solid rgba(255,255,255,0.47);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		text-align: center;
		color: #FFF;
		padding-top: 1.302vw;
	}
	
	.cv-btn dd {
		font-size: 0.781vw;
		font-weight: 700;
		letter-spacing: 1px;
		margin-top: 0;
	}
	
	.cv-btn dd span {
		font-size: 1.042vw;
		display: block;
		font-family: "Viga", sans-serif;
		font-weight: 400;
		letter-spacing: 0;
	}
	
	.cv-btn dl .material-symbols-outlined {
		font-size: 50px;
		font-variation-settings:
			'FILL' 0,
			'wght' 100,
			'GRAD' 0,
			'opsz' 24
	}

}


/*--------------------------------------------------------------
.btn
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	a.btn{
		display: inline-block;
		color: #fff;
		padding: 10px 50px;
		border-radius: 30px;
		text-decoration: none;
		outline: none;
		background: #1D1D1D;
		transition: all 0.3s ease-out;
		font-size: 15px;
		font-weight: 500;
	}

	a.btn:hover {
		color: #fff;
		background: #F15928;
	}
	
	a.btn2{
		display: inline-block;
		color: #1D1D1D;
		padding: 10px 50px;
		border-radius: 30px;
		text-decoration: none;
		outline: none;
		border: 1px solid #707070;
		transition: all 0.3s ease-out;
		font-size: 15px;
		font-weight: 500;
	}

	a.btn2:hover {
		color: #F15928;
		border: 1px solid #F15928;
	}
	
	a.btn3{
		display: inline-block;
		color: #FFF;
		padding: 10px 50px;
		border-radius: 30px;
		text-decoration: none;
		outline: none;
		background: #1D1D1D;
		transition: all 0.3s ease-out;
		font-size: 15px;
		font-weight: 500;
	}

	a.btn3:hover {
		color: #1D1D1D;
		background: #FFF;
	}
	
	a.btn4{
		display: inline-block;
		color: #1D1D1D;
		padding: 10px 50px;
		border-radius: 30px;
		text-decoration: none;
		outline: none;
		background: #FFF;
		transition: all 0.3s ease-out;
		font-size: 15px;
		font-weight: 500;
	}

	a.btn4:hover {
		color: #FFF;
		background: #1D1D1D;
	}
	
	.bt {
		text-align: center;
	}
	
	.bt .material-symbols-outlined {
		vertical-align: -6px;
		margin-right: 5px;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}


}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	a.btn{
		display: inline-block;
		color: #fff;
		padding: 0.781vw 2.604vw;
		border-radius: 1.562vw;
		text-decoration: none;
		outline: none;
		background: #1D1D1D;
		transition: all 0.3s ease-out;
		font-size: 0.833vw;
		font-weight: 500;
	}

	a.btn:hover {
		color: #fff;
		background: #F15928;
	}
	
	a.btn2{
		display: inline-block;
		color: #1D1D1D;
		padding: 0.781vw 2.604vw;
		border-radius: 1.562vw;
		text-decoration: none;
		outline: none;
		border: 1px solid #707070;
		transition: all 0.3s ease-out;
		font-size: 0.833vw;
		font-weight: 500;
	}
	

	a.btn3{
		display: inline-block;
		color: #FFF;
		padding: 0.781vw 2.604vw;
		border-radius: 1.562vw;
		text-decoration: none;
		outline: none;
		background: #1D1D1D;
		transition: all 0.3s ease-out;
		font-size: 0.833vw;
		font-weight: 500;
	}
}

/*--------------------------------------------------------------
h2
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	h2.midashi {
		margin: 0;
		padding: 0;
		font-size: 17px;
		font-weight: 600;
		letter-spacing: 1px;
	}
	
	h2.midashi span {
		margin: 0 0 10px 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 35px;
		font-weight: 400;
		letter-spacing: 3px;
		line-height: 1;
		display: block;
	}

	

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	h2.midashi {
		margin: 0;
		padding: 0;
		font-size: 1.042vw;
		font-weight: 600;
		letter-spacing: 1px;
	}
	
	h2.midashi span {
		margin: 0 0 0.521vw 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 2.604vw;
		font-weight: 400;
		letter-spacing: 3px;
		line-height: 1;
		display: block;
	}


}


/*--------------------------------------------------------------
p
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	p {
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 1.5;
	}

	

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	p {
		font-size: 0.885vw;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 2;
	}

}

/*--------------------------------------------------------------
#breadcrumbs
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#breadcrumbs {
		margin: 0;
		padding: 30px 0 30px 0;
	}
	
	#breadcrumbs ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		align-items: center;
	}
	
	#breadcrumbs li {
		margin: 0 5px 0 0;
		padding: 0;
		font-size: 12px;
		letter-spacing: 1px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100px;
		display: inline-block;
		vertical-align: middle;
	}
	
	#breadcrumbs li .material-symbols-outlined {
		vertical-align: -5px;
		font-size: 18px;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#breadcrumbs {
		margin: 0 10%;
		padding: 3.646vw 0 1.562vw 0;
	}
	
	#breadcrumbs ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		align-items: center;
	}
	
	#breadcrumbs li {
		margin: 0 0.521vw 0 0;
		padding: 0;
		font-size: 0.781vw;
		letter-spacing: 1px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 5.208vw;
		display: inline-block;
		vertical-align: middle;
	}

}

/*--------------------------------------------------------------
#footer
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#footer {
		margin: 0;
		padding: 0;
	}
	

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	

}

/*--------------------------------------------------------------
#contact-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#contact-area {
		margin: 0 0 50px 0;
		padding: 50px 10%;
		background: #F15928;
	}
	
	#contact-area ul {
		margin: 0 0 30px 0;
		padding: 0;
		color: #FFF;
	}
	
	#contact-area li:nth-child(1) {
		margin: 0 0 20px 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 40px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 1;
		color: #1D1D1D;
	}
	
	#contact-area li:nth-child(2) {
		margin: 0;
		padding: 0 0 20px 0;
	}
	
	#contact-area li:nth-child(2) dt {
		margin: 0 0 5px 0;
		padding: 0;
		font-size: 17px;
		font-weight: 600;
	}
	
	#contact-area li:nth-child(2) dt span {
		margin: 5px 0 0 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 30px;
		font-weight: 400;
		line-height: 1;
		display: block;
	}
	
	#contact-area li:nth-child(2) dt span .material-symbols-outlined {
		vertical-align: -3px;
		margin-right: 5px;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}
	
	#contact-area li:nth-child(3) {
		margin: 0;
		padding: 0;
		border-left: none;
	}
	
	#contact-area li:nth-child(3) p span {
		margin: 0 0 5px 0;
		padding: 0;
		font-weight: 600;
		display: block;
	}
	
	#contact-area li:nth-child(3) p {
		font-size: 15px;
	}
	
	#contact-area .bt a {
		display: block;
	}
	
	.mb {
		padding-bottom: 10px;
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#contact-area {
		margin: 0 0 5.208vw 0;
		padding: 5.208vw 0 3.646vw 0;
		background: #F15928;
	}
	
	#contact-area ul {
		margin: 0 0 2.604vw 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		color: #FFF;
	}
	
	#contact-area li:nth-child(1) {
		margin: 0;
		padding: 0 5.208vw 0 0;
		font-family: "Viga", sans-serif;
		font-size: 1.823vw;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 1;
		color: #FFF;
	}
	
	#contact-area li:nth-child(2) {
		margin: 0;
		padding: 0 2.604vw 0 0;
	}
	
	#contact-area li:nth-child(2) dt {
		margin: 0 0 0.26vw 0;
		padding: 0;
		font-size: 0.885vw;
		font-weight: 600;
	}
	
	#contact-area li:nth-child(2) dt span {
		margin: 0.26vw 0 0 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 1.719vw;
		font-weight: 400;
		line-height: 1;
		display: block;
	}
	
	#contact-area li:nth-child(2) dt span .material-symbols-outlined {
		vertical-align: -3px;
		margin-right: 0.26vw;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}
	
	#contact-area li:nth-child(3) {
		margin: 0;
		padding: 0 0 0 2.604vw;
		border-left: 1px solid #FFF;
	}
	
	#contact-area li:nth-child(3) p span {
		margin: 0 0 0.26vw 0;
		padding: 0;
		font-weight: 600;
		display: block;
	}
	
	#contact-area .bt a {
		display: inline;
	}

}

/*--------------------------------------------------------------
#signature
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#signature {
		margin: 0 5%;
		padding: 0 0 30px 0;
		text-align: center;
	}
	
	#signature .logo {
		margin: 30px 0 0 0;
		padding: 0;
		
	}

	#signature .logo img {
		width: 200px;
	}
	
	#signature .logo span {
		margin: 30px 0 0 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 12px;
		font-weight: 400;
		line-height: 1;
		display: block;
	}
	
	#signature .catch {
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 1px;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#signature {
		margin: 0 5%;
		padding: 0 0 2.604vw 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
		text-align: left;
	}
	
	#signature .logo {
		order: 1;
		margin: 0 5.208vw 0 0;
		padding: 0;
	}

	#signature .logo img {
		width: 12.76vw;
	}
	
	#signature .logo span {
		margin: 1.562vw 0 0 0;
		padding: 0;
		font-family: "Viga", sans-serif;
		font-size: 0.625vw;
		font-weight: 400;
		line-height: 1;
		display: block;
	}
	
	#signature .catch {
		order: 2;
		font-size: 1.302vw;
		font-weight: 600;
		letter-spacing: 1px;
	}
}

/*--------------------------------------------------------------
#footer-slidetext-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#footer-slidetext-area {
		margin: 0;
		padding: 0;
	}
	
	article{
		overflow: hidden;
	}
	
	.loop_wrap {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: #F5F4F2
	}
	
	.loop_wrap div {
		flex: 0 0 auto;
		white-space: nowrap;
		font-family: "Viga", sans-serif;
		font-weight: 400;
		font-size: 80px;
		overflow: hidden;
		padding: 0 60px 0 0;
		line-height: 1;
	}
	
	.loop_wrap div:nth-child(odd) {
		animation: loop 60s -30s linear infinite;
	}
	
	.loop_wrap div:nth-child(even) {
		animation: loop2 60s linear infinite;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#footer-slidetext-area {
		margin: 0;
		padding: 0;
	}
	
	article{
		overflow: hidden;
	}
	
	.loop_wrap {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: #F5F4F2
	}
	
	.loop_wrap div {
		flex: 0 0 auto;
		white-space: nowrap;
		font-family: "Viga", sans-serif;
		font-weight: 400;
		font-size: 6.25vw;
		overflow: hidden;
		padding: 0 3.125vw 0 0;
		line-height: 1;
	}
	
	.loop_wrap div:nth-child(odd) {
		animation: loop 60s -30s linear infinite;
	}
	
	.loop_wrap div:nth-child(even) {
		animation: loop2 60s linear infinite;
	}

}


@keyframes loop {
	0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }


/*--------------------------------------------------------------
.sp-header
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.sp-header {
		margin: 0;
		padding: 10px;
	}
	
	.sp-header img {
		margin: 0;
		padding: 0;
		width: 150px;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.sp-header {
		display: none;
	}

}

/*--------------------------------------------------------------
#sp-nav
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#sp-nav{
		position:fixed;
		z-index: -1;
		opacity: 0;
		top:0;
		width: 100%;
		height: 100vh;
		background: #fff;
		transition: all 0.3s;
	}

	#sp-nav.panelactive{
		opacity: 1;
	z-index:998;
	}

	#sp-nav.panelactive #sp-nav-list{
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	#sp-nav ul {
		position: absolute;
		z-index: 999;
		width: 100%;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
		text-align: center;
	}

	#sp-nav ul li a {
		margin: 0;
		padding: 20px 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5em;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 1px;
		transition: color 0.3s ease;
	}

	#sp-nav ul li a:hover {
		color: #F15928;
	}

	#sp-nav li i {
		margin: 0;
		padding: 0;
	}
	
	#sp-nav li i img {
		width: 20px;
		display: block;
	}

	.openbtn{
		position: fixed;
		z-index: 9997;
		top: 10px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
	
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		background-color: #1D1D1D;
		width: 45%;
	}
	.openbtn span:nth-of-type(1) {
		top: 15px;	
	}
	
	.openbtn span:nth-of-type(2) {
		top: 23px;
	}
	
	.openbtn span:nth-of-type(3) {
		top: 31px;
	}
	
	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
	

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.openbtn{
		display: none;
	}

}

/*--------------------------------------------------------------
@media
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.pc {
		display: none;
	}
	

}

/* Small than tablet */
@media (min-width: 768px) {
	
	.pc {
		display: inherit;
	}
	
	.sp {
		display: none;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	

}

