@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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;
}
.min {
	font-family: "Shippori Mincho", serif;
}
.en {
	font-family: "Fjalla One", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: .2em;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
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: #333;
	text-decoration: none;
}
a:visited {
	color: #333;
}
a:hover {
	color: #333;
}
a:active {
	color: #333;
}
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1100px;
	color: #111;
	font-size: 1.6rem;
	line-height: 1.8;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	text-align: left;
}
#main {
	display: block;
}
.inner {
	max-width: 1140px;
	margin: 0 auto;
}
.small {
	font-size: .8em;
}
.center {
	text-align: center;
}
.big {
	font-size: 1.6em;
}
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;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	width: 100%;
	z-index: 99;
	margin: 0 auto;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
}
#gHeader .left img {
	width: 30rem;
	display: block;
}
#gHeader .left h1.tag {
	font-size: 1rem;
	font-weight: normal;
}
#gHeader .right {
	text-align: center;
}
#gHeader .right img {
	width: 87px;
}
#gHeader .right .message {
	font-size: 1.2rem;
	margin-bottom: .4rem;
}
#gHeader .right .time {
	font-size: 1.4rem;
}
#gHeader .right nav ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#gHeader .right nav ul li {
	margin-left: 1.5rem;
}
#gHeader .right nav ul li a {
	font-size: 1.4rem
}
#gHeader .right nav ul li a.btn {
	display: block;
	padding: 1rem 1.5rem;
	background-color: #111;
	border-radius: 3rem;
	transition: .4s;
	color: #fff;
}
#gHeader .right nav ul li a.btn:hover {
	background-color: #333;
}

@media all and (max-width: 896px) {
	#gHeader {
		position: relative;
		padding: 0 0 0 .5rem;
		display: flex;
        justify-content: space-between;
	}
	#gHeader .left img {
		max-width: 18rem;
	}
	#gHeader .left h1.tag {
		font-size: .9rem;
		margin-left: .5em;
		letter-spacing: -1px;
		font-weight: normal;
	}
	#gHeader nav {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 4rem;
        background: rgba(255, 255, 255, 1);
        z-index: 9;
        box-sizing: border-box;
    }
	#gHeader .menu {
		height: 5.8rem;
        width: 5.8rem;
        position: relative;
        z-index: 10;
        background: #111;
	}
	#gHeader .menu span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 1.6rem;
        width: 2.6rem;
        height: .1rem;
        background-color: #fff;
    }
	#gHeader .menu span:nth-of-type(1) {
        top: 1.8rem;
    }
	#gHeader .menu span:nth-of-type(2) {
        top: 2.8rem;
    }
	#gHeader .menu span:nth-of-type(3) {
        top: 3.8rem;
    }
	#gHeader .menu.on span:nth-of-type(1) {
        transform: translateY(1rem) rotate(-45deg);
    }
	#gHeader .menu.on span:nth-of-type(2) {
        opacity: 0;
    }
	#gHeader .menu.on span:nth-of-type(3) {
        transform: translateY(-1rem) rotate(45deg);
    }
	#gHeader .right nav {
	    width: 100%;
	    padding-top: 5.6rem;
	}
	#gHeader .right nav ul {
		border-top: 1px solid #ccc;
		display: block;
		padding-bottom: 2rem;
	}
	#gHeader .right nav ul li {
		margin: 0;
	}
	#gHeader .right nav ul li a{
		font-size: 1.6rem;
		padding: 1rem;
		display: block;
		border-bottom: 1px solid #ccc;
	}
	#gHeader .right nav ul li a.btn {
		width: 18rem;
		margin: 1.5rem auto 0;
		border: 0;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 40px 0 20px;
	background-repeat: repeat;
}
#gFooter .logo {
	width: 200px;
	display: block;
	margin: 0 auto;
}
#gFooter p {
	margin-top: 17px;
	color: #fff;
	letter-spacing: 0.1em;
	font-size: 1.4rem;
	text-align: center;
}
#gFooter p span {
	background-color: #EAE32F;
	color: #192446;
	padding: 2px 8px;
}
#gFooter address {
	margin-top: 10px;
	font-style: normal;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	text-align: center;
}
@media all and (min-width: 897px) {
	#gFooter .fNavList li a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.fix_menu {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 100;
	}
	.fix_menu ul {
		width: 100%;
	}
	.fix_menu ul li {
		width: 100%;
	}
	.fix_menu ul li a {
		writing-mode: inherit;
		display: block;
		text-align: center;
		font-size: 1.4rem;
		border-radius: 0;
		padding: 1.4rem 1rem;
		background-color: #111;
		box-sizing: border-box;
		color: #fff;
	}
	.fix_menu ul li a.job {
		background-color: #FFE500;
		color: #111;
	}
	.fix_menu ul li a.tel img {
		width: 3.5rem;
	}
	#gFooter {
		padding: 43px 0 80px;
	}
	#gFooter .flexBox {
		display: block;
	}
	#gFooter .logo {
		max-width: 157px;
	}
	#gFooter p {
		margin-top: 13px;
		font-size: 1.2rem;
		line-height: 2.4;
	}
	#gFooter address {
		margin-top: 30px;
	}
	.footer-tel {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 1rem;
		box-sizing: border-box;
		background-color: #fff;
		z-index: 999;
		box-shadow: 0 0 3px #999;
	}
	.footer-tel img {
		max-width: 100%;
		width: 34rem;
		display: block;
		margin: 0 auto;
	}
}
@media all and (max-width: 374px) {
	#gFooter p {
		font-size: 1rem;
	}
}

.fadeup{ 
 opacity: 0;
}
.fadeup.active{ 
  animation-name:slide;
  animation-duration:.8s; 
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes slide {
0% {
 opacity: 0;
 transform: translateY(10px);
}
100%{
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeleft{ 
 opacity: 0;
}
.fadeleft.active{ 
  animation-name:fadeleft;
  animation-duration:.8s; 
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeleft {
0% {
 opacity: 0;
 transform: translateX(-10px);
}
100%{
    opacity: 1;
    transform: translateX(0);
  }
}
.faderight{ 
 opacity: 0;
}
.faderight.active{ 
  animation-name:faderight;
  animation-duration:.8s; 
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes faderight {
0% {
 opacity: 0;
 transform: translateX(10px);
}
100%{
    opacity: 1;
    transform: translateX(0);
  }
}
.delay01 {
	animation-delay: .2s;
}
.delay02 {
	animation-delay: .4s;
}
.delay03 {
	animation-delay: .6s;
}
.delay04 {
	animation-delay: .8s;
}
.delay05 {
	animation-delay: 1.0s;
}
.delay06 {
	animation-delay: 1.2s;
}
.delay07 {
	animation-delay: 1.4s;
}
.delay08 {
	animation-delay: 1.6s;
}