@charset "utf-8";
/*
Theme Name: greenandred.mom Theme
Theme URI: greenandred.mom
Description: this is greenandred.mom themes
Version: 1.0
Author: kobaishi
Author URI: e-f.co.jp
*/


@import url('https://fonts.googleapis.com/css?family=Montserrat');

/*------------------------------------------------------

   common

font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;

-------------------------------------------------------*/
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	min-width: 1280px;
}
body.menu-fix {
	overflow: hidden;
}

.sp {
	display: none;
}

input, select, textarea, radio, checkbox, button {
	font-family: 'Noto Sans JP', sans-serif;

}

.inner {
	width: 1110px;
	padding: 0 15px;
	margin:auto;
	position: relative;
}

/* off */
.off a {
    cursor: default !important;
    color: #ccc !important;
}


#wrapper {
	display: -webkit-flex;
	display:flex;
	flex-wrap: wrap;
	width: 100%;
	background: #efefef;
}


#stalker {
    pointer-events: none;
    position: fixed;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: transform 0.2s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: ease-out;
    z-index: 999;
}
#stalker.hov_{
      top: -32px;
      left: -32px;
      width: 64px;
      height: 64px;
      transition: .5s;
      background: rgba(255, 0, 0, 0.4);
}

/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#global-header {
    font-family: 'Marcellus', serif;
    height: 40px;
    position: relative;
    border-bottom: solid 1px #333;
}
.site-title {
	display: inline-block;
	font-size: 20px;
	font-weight:normal;
    line-height: 1;
}
.site-title a {
	color: #000;
}
.contact-link {
    position: absolute;
    right: 0;
    bottom: 15px;
}
.contact-link a {
	font-size: 15px;
	color: #000;
}


/* ----------------------
   mainNav
-----------------------------*/

/* ----------------------------
   contents
-------------------------------*/
#main-contents {
    width: calc(100% - 224px);
    padding: 40px 40px 15px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
#main-contents:after {
    content: '';
    display: block;
    width: 150vh;
    height: 150vh;
    background: #fff;
    border-radius: 100000000000px;
    position: absolute;
    left: -30vw;
    top: -25vh;
    z-index: -1;
}

/*
#contents {
	overflow: hidden;
	
}
*/
.conBox {
	padding: 70px 0;
	position:relative;
}

.link-anime a {
	position:relative;
    z-index: 10;
}
.link-anime a:after {
	content: '';
	width: calc(100% + 10px);
	height:10px;
    background: url(./img/home/red.png) center;
    background-size: cover;
	position: absolute;
	left:-5px;
	bottom:0;
	z-index: -1;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.link-anime a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
 }

/*------------------------------------------------
   sidebar style
--------------------------------------------------*/


#sidebar {
	font-family: 'Marcellus', serif;
}
.side-nav {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}
.side-nav li {
	width: 74px;
    background-image: url(./img/cmn/side_bg.png);
	background-size: auto 100%;
	background-position: center;
    background-repeat: no-repeat;
    border-left: solid 1px #fff;
}
.side-nav li:nth-child(1) {
    background-position: calc(50% + 74px) center;
}
.side-nav li:nth-child(3) {
    background-position: calc(50% - 74px) center;
}
.side-nav li a {
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
	background: rgba(0,0,0,0.7);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    backdrop-filter: blur(2px);
}
.side-nav li span {
    line-height: 1;
    display: inline-block;
    margin: 1px 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.side-nav li.current a,
.side-nav li:hover a {
	background: rgba(0,0,0,0);
    backdrop-filter: blur(0);
}
.side-nav li.current span,
.side-nav li:hover span {
	color: #dc031f;
	background: #fff;
}

/*------------------------------------------------
   footer style
--------------------------------------------------*/
#global-footer {
    height: 60px;
    font-family: 'Marcellus', serif;
    position: relative;
    text-align: center;
    padding: 30px 0 0;
}
.footer-nav--list {
	text-align:center;
}
.footer-nav--list li {
	display:inline-block;
	font-size: 14px;
	margin:0 10px;
}
.footer-nav--list li a {
	color: #000;
}
.footer-nav--list li div {
	display:inline-block;
	margin-left:10px;
}
.footer-nav--list li div a {
	font-size: 12px;
}
#copyright {
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 30px;
}




/* -----------------------------------

media query

------------------------------------- */
/* 480px 以下 */
@media (max-width: 480px) {

	body {
		min-width: 320px;
		font-size: 13px;
	}

	.sp { display: block; }
	.pc { display: none !important; }

    #wrapper {
		display: block;
		background: #fff;
	    padding-top: 50px;
	}

	#global-header {
		height: 50px;
		background: #fff;
		padding: 15px 15px 0;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 999;
	}

	#menu-btn {
		width: 30px;
		height: 12px;
		cursor: pointer;
		position: fixed;
		right: 15px;
		top: 18px;
		z-index: 999999999999;
	}
	#menu-btn span {
		display:block;
		width: 100%;
		height: 2px;
		background:#222;
		position:absolute;
		left: 0;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	-ms-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	}
	#menu-btn span.t {
		top: 0;
	}
	#menu-btn span.b {
		bottom: 0;
	}
	#menu-btn.active span {
		background: #fff;
	}
	#menu-btn.active span.t {
		top: 5px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#menu-btn.active span.m {
		width: 0;
	}
	#menu-btn.active span.b {
		bottom: 5px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#sp-nav {
		font-family: 'Marcellus', serif;
		width: 100%;
		height: 100%;
		padding: 50px 0;
		background: #eee;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left:0;
		z-index: -999;
	   -webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#sp-nav.active {
		display: block;
		background: #222;
		overflow: auto;
		visibility: visible;
		opacity: 1;
		z-index: 1000;
	}
	.sp-nav-in {
		padding: 0 20px;
	}
	.sp-nav--list > li {
		font-size: 16px;
		padding: 15px 0;
		border-bottom: solid 1px #fff;
		position:relative;
		left:-50px;
		opacity: 0;
	   -webkit-transition: all .7s ease-in-out;
		transition: all .7s ease-in-out;
	}
	#sp-nav.active .sp-nav--list > li {
		opacity: 1;
		left:0;
	}
	.sp-nav--list a {
		color: #fff;
		position: relative;
	}
	.sp-nav--list > li > a:before {
		content: '';
		display: inline-block;
		width: 8px;
		height: 8px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		transform: rotate(45deg);
		vertical-align: 1px;
		margin-right: 10px;
	}

	#main-contents {
		width: 100%;
		padding: 20px;
	}
	#main-contents:after {
		display:none;
	}
	.side-nav li {
		width: 100%;
		border-left: none;
		border-top: solid 1px #fff;
	    background-size: 100%;
	}
	.side-nav li a {
		height: 60px;
	}
	.side-nav li span {
		margin: 0 5px;
	    padding: 0 5px;
	}
	.side-nav li br {
		display: none;
	}
	.side-nav li:nth-child(1) {
		background-position: center calc(50% + 61px);
	}
	.side-nav li:nth-child(3) {
		background-position: center calc(50% - 61px);
	}

	#sp-footer {
		padding: 30px 0;
		text-align: center;
	}
	.footer-nav--list > li {
		font-size: 14px;
		margin-bottom:20px;
	}
	.footer-nav--list li div {
		margin-left:0;
		margin-top:5px;
		display:block;
	}
	.footer-nav--list li div a {
		font-size: 12px;
	}
	#sp-copyright {
		margin-top: 20px;
		font-size: 11px;
	}


}



/* 360px 以下 */
@media (max-width: 360px) {


	
}