
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@600&display=swap');
body {
	color:#4c4948;
	font-size:10px;
	line-height:1.75;
	letter-spacing:0.05em;
	text-align:justify;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}




b, strong, .bold{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}
/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}

a {
	color: #3e3a3a;
	text-decoration: none;
	transition: 0.3s ease-out;
	outline: none;
}
/*a:hover {
	color:#888 ;
}*/
::selection{
	background-color:#888;
}
::-moz-selection{
	background-color:#888;
}

img {
	vertical-align: top;
}



.wrapper {
	overflow: hidden;
	width: 100%;
}

.sp-only {
	display: none!important;
}

.pc-only {
	display: block!important;
}




/*============================================================================

	common-しずく

============================================================================*/

section.shizuku {
	position: relative;
	height: 100px;
}
section .scroll-indicator,
div .scroll-indicator {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 1px;
	height: 100px;
	background-color: rgba(170,170,170,0.5);
	mix-blend-mode: overlay;
}

section .scroll-indicator:before,
div .scroll-indicator:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 50%;
	animation: indicator 2s cubic-bezier(.76,.05,.86,.06) infinite;
	animation-direction: normal;
	/*background-color: rgba(255,255,255,0.7);*/
	background: -webkit-linear-gradient(top, rgba(202,168,81,0), rgba(202,168,81,1));
}

@keyframes indicator {
	0% {
		top: -10%;
		opacity: 0;
		height: 0;
		width: 1px;
		border-radius: 1px 1px 1px 0;
		left: 0;
	}
	50% {
		opacity: 1;
		width: 3px;
		border-radius: 2px 2px 2px 0;
		left: -1px;
	}
	100% {
		top: 100%;
		height: 75%;
		width: 1px;
		border-radius: 1px 1px 1px 0;
		left: 0;
	}
}

/*============================================================================

	header

============================================================================*/




/*============================================================================

	nav

============================================================================*/
header nav {
	position: absolute;
	width:100%;
	height:130px;
	background:#fff;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	z-index:500;
}
header nav h1{
	position:absolute;
	top:20px;
	left: 20px;
}
header nav ul{
	right: 20px;
	/*height: inherit;*/
	margin:52px auto;
	text-align:center;
}
header nav li {
	display:inline-block ;
	position:relative;
	height:inherit;
	margin: 0 30px;
	line-height:1;
}
header nav li a{
	display:inline-block;
	font-family: 'Spartan', sans-serif;
	color: #666;
	font-weight: 600;

}


header nav li a:hover{
	opacity: 0.7;
	color: #caa851;
}
header nav li a span{
	position:relative;
}
header .recruit_square {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 128px;
	font-size: 14px;
	transition: 0.3s;
}
header .recruit_square a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	background-color: #9d1b5b;
	color: #FFFFFF;
}
header .recruit_square a:hover {
	border-radius: 128px;
	
}

/* ホバーのボーダー */
header nav li a span::before{
    position: absolute;
	left: 0;
	right:0;
	bottom: 0;
	width:100%;
	height:1px;
	margin:auto;
	background-color: #caa851;
	transition: 0.15s  ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
header nav li a:hover span::before {
	transform: scaleX(1);
}


header nav li.l-gNav-parent ul {
  position: absolute;
  width: 800px;
  height: 0;
  padding-top: 7px;
  top: 15px;
  font-size: 0;
  transition: .3s;
  overflow: hidden;
  margin:0;
  left: -220px;
  text-align: left;
}


header nav li.l-gNav-parent ul li {
    margin-right: 10px;
    display: inline-block;
    margin: 0 10px 0 0;
    line-height: 1;
    height: auto;
}

header nav li.l-gNav-parent ul li a {
    font-family: 'Spartan', sans-serif;
    display: block;
    line-height: 1;
    font-size: 10px;
    padding: 5px 7px;
    transition: .3s;
    border: solid 1px #ccc;
}

header nav li.l-gNav-parent ul li a:hover {
    background: #caa851;
    transition: .3s;
    color: #fff;
}
header nav li.l-gNav-parent a:hover + ul,
header nav li.l-gNav-parent ul:hover {
  height: 32px;
  transition: .3s;
}
/* スクロールで追加されるクラス */
.fixed{
	position:fixed;
	top:0;
	left:0;
}




/*============================================================================

	#mainvisual

============================================================================*/
html,body { height:100%; }

#mainvisual{
	position:relative;
	width: 100%;
	height: 100%;
	background:#f0f0f0;
}



/*============================================================================

	#right_fixed　＊右固定＊

============================================================================*/
#right_fixed {
	position: fixed;
	right: 0;
	top: 50%;
	margin-top: -75px;
	z-index: 999;
	width: 75px;
	display: block;
}
#right_fixed div {
	position: relative;
	height: 75px;
	overflow: hidden;
}
#right_fixed div a img {
	position: absolute;
	bottom: 0;
	transition: 0.3s ease-out;
}
#right_fixed:hover div a img {
	bottom: -75px;
}



/*============================================================================

	footer

============================================================================*/
footer {
	position:relative;
	width:100%;
	margin-top: 80px;
	padding-bottom: 70px;
	text-align: center;
	font-family: "Kokoro";
}

/*---------- pagetop ----------*/
.pagetop{
	width: 100px;
	margin: 0 auto 60px;
	position: relative;
	text-align:center;
	cursor:pointer;
	z-index:98;
}
.pagetop img {
	z-index: 99;
	transition:.3s all;
}
.pagetop:hover img {
	opacity: 0;
}
.pagetop::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	margin: auto;
	width: 67px;
	height: 67px;
	background: url(../images/pagetop_hover.svg);
	opacity: 0;
	transition:.3s all;
}
.pagetop:hover::before {
	opacity: 1;
}
.pagetop::after {
	position: absolute;
	content: "";
	top: 83px;
	left: 0;
	right: 0;
	margin: auto;
	width: 13px;
	height: 15px;
	background: url(../images/top_arrow.svg) no-repeat;
	background-size: 13px 15px;
	transform: rotate(-180deg);
	transition:.3s all;
}
.pagetop:hover::after {
	top: 73px;
}



/*---------- footer_nav ----------*/
.footer_nav {
	display: none;
}




/*---------- inner ----------*/
footer h1 {
	margin-top: 60px;
	margin-bottom: 35px;
	font-size: 1.45em;
	letter-spacing: 7px;
}
footer h1 img {
	margin-top: 30px;
	margin-bottom: 25px;
}
footer h1 span {
	display: block;
	margin-top: 3px;
	letter-spacing: 5px;
	font-size: 10px;
}

footer h1 em {
	margin-left: 0.3em;
}

footer dl {
	margin-bottom: 22px;
}
footer dl dt {
	margin-bottom: 5px;
	/*font-weight: bold;*/
	letter-spacing: 4px;
	font-size: 1em;
}

footer dl dt span {
	margin-left: 0.3em;
}
footer dl dd {
	letter-spacing: 3px;
}
footer div {
	margin-top: 45px;
	margin-bottom: 30px;
	letter-spacing: 5px;
}
footer div span.footer_icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin: 20px 5px;
}
footer div span.footer_icon img {
	position: relative;
	width: 100%;
}
footer small {
	/*font-size: 16px;*/
	/*font-family: 'Cormorant Garamond', serif;*/
	letter-spacing: 5px;
}


/*============================================================================

	page-navi

============================================================================*/

.nav-links {
  /*display: flex;*/
    width: 100%;
    max-width: 1130px;
    margin: 10px auto;
    justify-content: space-between;
    position: relative;
}
.nav-links .nav-next {
  position: absolute;
  right: 0;
}
.nav-links .nav-previous {
  position: absolute;
  left: 0;
}
div.list-btn {
  text-align: center;
}

.nav-links img {
  width: 70%;
}

div.list-btn img { 
  width: 18px;
  
}

/*============================================================================

	page-common

============================================================================*/

body.page #primary {

	padding-top: 130px;
}
body.page #primary h2 {

   font-family: 'M PLUS 1p', sans-serif;
    font-size: 2vw;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto;
    padding-top: 10vw;
}

body.page #primary h2 span {

        font-size: 1vw;
    font-family:sans-serif;
    display: block;
}

body.page #primary .wrapper{
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}
body.page #primary .wrapper table {
    width: 100%;
}
body.page #primary .wrapper table th {
    padding: 20px;
    display: table-cell;
    background: none;
    border-right: #ccc solid 5px;
    min-width: 150px;
    width: 10%;
    box-sizing: border-box;
}
body.page #primary .wrapper table td {
    padding: 20px;
    display: table-cell;
}
.g_map iframe {
    width: 100%;
    height: 300px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

body.page #primary .wrapper table td .btn_link {
    padding: 5px 10px;
    font-size: 14px;
    display: inline-block;
    border: #595757 solid 1px;
    color: #595757;
    margin-bottom: 30px;
    margin-top: 10px;
}

body.page #primary .wrapper table td .btn_link:hover {
    background-color: #caa851;
    border-color: #caa851;
    color: #fff;
}

/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 200px);
  transition : all 1000ms;
  }

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
  }


#page .btn a {
 position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
}

#page .btn a img {
    position: relative;
    top: -40px;
    transition: 0.3s ease-out;
}

#page .btn a:hover img {
    top: 0;
    transition: 0.3s ease-out;
}


.btn-vm{
	width: 65px;
	margin: 0 auto 60px;
	position: relative;
	text-align:center;
}

.btn-vm a{
	border:solid 1px #fff;
	display: block;
	width: 65px;
	height: 65px;
	border-radius: 33px;
	box-sizing: border-box;
	transition:.3s all;
	line-height: 65px;
	vertical-align: middle;
}
body#works .btn-vm a {
	line-height: 1.2;
	color: #fff;
	padding-top: 20px;
}
.btn-vm a img{
	vertical-align: middle;
}

.btn-vm a:hover{
	background-color: #caa851;
	transition:.3s all;
}


.btn-vm::after {
	position: absolute;
	content: "";
	top: -30px;
	left: 0;
	right: 0;
	margin: auto;
	width: 13px;
	height: 15px;
	background: url(/sys/images/img_arrowvm.png) no-repeat;
	background-size: 13px 15px;
	transition:.3s all;
}
.btn-vm:hover::after {
	top: -25px;
}



/*============================================================================

	privacy

============================================================================*/

body#privacy #primary h2 {
	padding-top: 1vw;
	font-weight: normal;
}

body#privacy #primary .wrapper {
	max-width: 600px;
}

body#privacy .page_section {
	margin-top: 2.5vw;
}


/*============================================================================

	contact

============================================================================*/

p.btn_submit input[type="submit"]:focus {
	outline:0;
}