
/*-- リセット --*/
* {
	border:0;
	margin:0;
	outline:0;
	padding:0;
	background:none;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		-ms-box-sizing:border-box;
		-o-box-sizing:border-box;
		box-sizing:border-box;
	font:inherit;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	text-decoration:none;
	vertical-align:baseline;
	list-style: none;
}

html {
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: calc(0.75rem + ((1vw - 4.8px) * 0.4167));
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-ms-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	font-smoothing:antialiased;
}
body {
	color:#111;
	background:#fff;
	line-height:2.0;
	letter-spacing:.1rem;
	-webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}
@media screen and (max-width: 480px) {
	body {
		font-size:1.2rem;
	}
}
@media screen and (min-width: 1920px) {
	body {
		font-size:3,0rem;
	}
}

/*-- HTMLフォーマット --*/
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {display:block;}


b {color:#1ebeb4;}
i {font-family:"Open Sans", sans-serif;}
u {text-decoration:underline;}
em {font-weight:bold;}
strong {font-weight:bold; font-size:1.2em;}
big {}
small {font-size:70%;}


/*-- 基本レイアウト --*/

.header-wrap {
	position:relative;
}
header {
	position:relative;
	line-height:1;
	width:100%;
	z-index:3;
	color:#fff;
    overflow: hidden;
}
header .header-inner {
	position:relative;
	margin:0 auto;
	padding:1.5rem 2rem;
	width:100%;
	/*max-width:951px;*/
    line-height:1.1;
}
main {
	margin:0 auto;
	padding:0;
	width:100%;
}
#footer-wrap {
	background:#030303;
}
footer {
	margin:0 auto;
	width:100%;
	padding:4rem 2rem;
	color:#e3e4e5;
	font-size:1.4rem;
}



/*-- 基本レイアウト @media screen --*/
@media screen and (min-width: 1001px) {
	.header-wrap {
	    position: fixed;
    	top:0;
    	width:100%;
	    z-index:4;
	}
	header {
	    transition: all 0.5s ease;
	    background: rgba(255,255,255,1);
	}
	header .header-inner {
	    transition: all 0.5s ease;
	}
	header.fixed {
	    background: rgba(255,255,255,1);
	}
	header.fixed2 {
	    background: rgba(255,255,255,1);
	}
	header.fixed2 .header-inner {
	}
	header.fixed2 .header-inner a {
		color:#fff;
		transition: all 0.3s ease;
	}
	header.fixed2 .header-inner .site-title a {
		transition: all 0.5s ease;
	}
}

@media screen and (max-width: 1000px) {
	header {
		width:100vw;
	    position: fixed;
    	top:0;
	    transition: all 0.5s ease;
	    z-index:999;
	    background:#fff;
	}
	header .header-inner {
	}
	header.fixed {
	    background: rgba(255,255,255,1);
	    z-index:999;
	    transition: all 0.5s ease;
	}
	header.fixed2 {
	    background: rgba(255,255,255,1);
	    z-index:999;
	    transition: all 0.3s ease;
	}
	header.fixed2 .header-inner {
	    transition: all 0.5s ease;
	}
	header.fixed2 .header-inner a {
	    color:#fff;
	    transition: all 0.3s ease;
	}
	header.fixed2 .header-inner .site-title a {
	    transition: all 0.5s ease;
	    line-height:1.1;
	}
	header .header-inner .site-title a {
	}
}



/* アンダースクロール
----------------------------------------------- */
a.under-schroll {
  position: absolute;
  bottom: 3rem;
  z-index: 5;
  display: inline-block;
  text-decoration: none;
  color:#fff;
  z-index:3;
  opacity:0.5;
}
a.under-schroll:hover {
	opacity:1;
}
a.under-schroll {
  padding-top: 60px;
}
a.under-schroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
a.under-schroll span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*-- Page to Top --*/
.page-top {
	margin: 0;
    padding: 0;
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 64px;
    height: 64px;
    text-align: center;
    overflow: hidden;
    z-index: 999;
}
.page-top a {
	display: block;
    position: relative;
    margin: 0;
    width:100%;
    height:100%;
}
.page-top i {
	font-size: 64px;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
}


/*-- SNSアイコン --*/
.sns-icons {
}
.sns-icons .btn-social-icon-twitter {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #1da1f3;
  font-size: 25px;
  text-decoration: none;
}

.sns-icons .btn-social-icon-twitter:hover {
  color:#88daff;
  transition: .5s;
}

.sns-icons .btn-social-icon-twitter__square {
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  color: #FFF;
  background: #1da1f3;
}

.sns-icons .btn-social-icon-twitter__square i {
  line-height: 50px;
}
.sns-icons .btn-social-icon-facebook {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #4966a0;;
  font-size: 25px;
  text-decoration: none;
}

.sns-icons .btn-social-icon-facebook:hover {
  color:#668ad8;
  transition: .5s;
}

.sns-icons .btn-social-icon-facebook__square {
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  color: #FFF;
  background: #4966a0;;
}

.sns-icons .btn-social-icon-facebook__square .fa-facebook {
  position: absolute;
  bottom: -3px;
  right: 6px;
  font-size: 42px;
}
.sns-icons .btn-social-icon-instagram {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #2e6ca5;
  font-size: 25px;
  text-decoration: none;
}

.sns-icons .btn-social-icon-instagram:hover {
  color:#668ad8;
  transition: .5s;
}

.sns-icons .btn-social-icon-instagram__square {
  border-radius: 13px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}


.sns-icons .btn-social-icon-instagram__square .fa-instagram {
  color:white;
  line-height: 50px;
  position: relative;
  z-index: 2
}


/*-- ボタン --*/
.btn-stitch {
	display: inline-block;
	margin:1rem;
	padding: 1rem 2rem;
	text-decoration: none;
	background: #093995;
	color: #FFF;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 5px #093995;
	border: dashed 1px #FFF;
	transition: all 0.3s ease;
	line-height:1.1;
}
.btn-stitch:hover {
	background: #CB2F26;
	box-shadow: 0px 0px 0px 5px #CB2F26;
}


/*-- ヘッダー --*/
header .site-title {
	position:relative;
	padding-left: 5rem;
}
header .header-bg-wrap {
	position: relative;
	width:40%;
	padding: 5px 42px 5px 5;
	background: rgba(59,126,36,1);
	color: white;
	margin-right: -33px;
	line-height: 1.3;
	z-index:-1;
}
@media screen and (max-width: 1000px) {
	header .header-bg-wrap {
		width:84%;
	}
}
header .header-bg-wrap::before {
	content: '';
	position: absolute;
	right: -2px;
	top: -12px;
	border: none;
	border-right: solid 60px white;
	border-top: solid 130px transparent;
	z-index:-2
}
header .header-bg-wrap::after {
	position: absolute;
	content: '';
	right: -6px;
	top: -12px;
	border: none;
	border-right: solid 60px red;
	border-top: solid 130px transparent;
	z-index:-2
}
header .header-bg {
	position: relative;
	padding: 5px 42px 5px 5;
	background: transparent;
	color: white;
	margin-right: -33px;
	line-height: 1.3;
	z-index:-1;
}
header .header-bg::before {
	position: absolute;
	content: '';
	right: 22px;
	top: -12px;
	border: none;
	border-right: solid 60px white;
	border-top: solid 130px transparent;
	z-index:-2
}
header .header-inner::before {
	position:absolute;
	left:2rem;
	top:0;
	content:'';
	background:url(/theme/site/fb-club2/images/logo.png) no-repeat left center;
	background-position:left center;
	background-size: 4rem auto;
	width:100%;
	height:100%;
	z-index:2;
}
header .site-title span {
	display:block;
}
header .site-title .title-logo {
	display:block;
	font-weight:bold;
	font-size:1.5rem;
}
header #title-logo {
	display: inline-block;
	width: 300px;
	color: #fff;
	z-index:2;
    transition: all 0.3s ease;
}
header.fixed2 #title-logo {
}
header .site-title span small {
	letter-spacing:0.2rem;
	font-family: "Open Sans", sans-serif;    
    transition: all 0.5s ease;
}
header.fixed2 .site-title span small {
}

@media screen and (max-width: 480px) {
	header .header-inner {
		padding-left: calc(1rem + ((1vw - 0.3rem) * 10));
	}
	header .header-inner::before {
		left: calc(1rem + ((1vw - 0.3rem) * 10));
	}
	header .site-title .title-logo {
	}
	header .site-title {
	}
}

/*-- ナビゲーション --*/
#nav-container {
	position:absolute;
	right:3rem;
	top:.5rem;
	z-index:1000;
}
#nav-container nav {
	font-weight:bold;
}
#nav-container nav ul li {
    display: inline-block;
    padding:0 .5rem;
}
#nav-container nav ul li a {
	color:#3B7E24;
}
#nav-container nav ul li a {
	padding: .5rem .5rem;
	background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(59,126,36,1) 50%);
	background-position: 0 0;
	background-size: auto 200%;
	transition: .3s;
	border-radius: 4px;
}
#nav-container nav ul li a:hover{
	background-position: 0 100%;
	color: #fff;
}
#nav-container nav ul li a.active{
	background-position: 0 100%;
	color: #fff;
}
header .sns-icons {
	position:absolute;
	right:4rem;
	top:3rem;
	display:flex;
}
header .sns-icons a {
	display:inline-block;
	margin-left:1rem;
}
header .sns-icons a span.btn-social-icon {
	font-size:1.5rem;
	width:2rem;
	height:2rem;
	border-radius: 4px;
	line-height:2rem;
}
header .sns-icons a span.btn-social-icon i {
	line-height:1.5rem !important;
}
header .sns-icons a i {
}
@media screen and (min-width: 1001px) {
}

@media screen and (max-width: 1000px) {

	#nav-container {
		position: fixed;
		left:0;
		top:0;
		height: 100vh;
		width: 100%;
		pointer-events: none;
	}
	#nav-container .bg {
		position: absolute;
		top: 90px;
		left: 0;
		width: 100%;
		height: calc(100% - 90px);
		visibility: hidden;
		opacity: 0;
		transition: .3s;
		background: #000;
	}
	#nav-container:focus-within .bg {
	  visibility: visible;
	  opacity: .6;
	}
	#nav-container * {
	  visibility: visible;
	}
	
	.button {
	  position: relative;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: flex-end;
	  z-index: 1;
	  -webkit-appearance: none;
	  border: 0;
	  background: transparent;
	  border-radius: 0;
		height: auto;
		box-sizing: content-box;
		width: 30px;
		margin: calc(1rem + 1px) 1rem 0 auto;
		padding: 1rem;
		cursor: pointer;
	  pointer-events: auto;
	  touch-action: manipulation;
	  -webkit-tap-highlight-color: rgba(0,0,0,0);
	  text-align:right;
	}
	.icon-bar {
	  display: block;
	  width: 30px;
	  height: 3px;
	  background: #aaa;
	  transition: .3s;
	}
	.icon-bar + .icon-bar {
	  margin-top: 5px;
	}
	
	#nav-container:focus-within .button {
	  pointer-events: none;
	}
	#nav-container:focus-within .icon-bar:nth-of-type(1) {
	  transform: translate3d(0,8px,0) rotate(45deg);
	}
	#nav-container:focus-within .icon-bar:nth-of-type(2) {
	  opacity: 0;
	}
	#nav-container:focus-within .icon-bar:nth-of-type(3) {
	  transform: translate3d(0,-8px,0) rotate(-45deg);
	}
	
	#nav-content {
		margin-top: 90px;
		padding: 20px;
		width: 90%;
		max-width: 300px;
		position: absolute;
		top: 0;
		right: 0;
		height: calc(100% - 90px);
		background: #111;
		pointer-events: auto;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
		transform: translateX(100%);
		transition: transform .3s;
		will-change: transform;
		contain: paint;
	}
	
	#nav-content ul {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	
	#nav-content li a {
		padding: 10px 5px;
		display: block;
		text-transform: uppercase;
		transition: color .1s;
		font-size:1.4rem;
		color:#fff;
	}
	
	#nav-content li a:hover {
		color:#fff;
	}
	
	#nav-content li:not(.small) + .small {
		margin-top: auto;
	}
	
	#nav-content .small {
		display: flex;
		align-self: center;
	}
	
	#nav-content .small a {
		font-size: 80%;
		font-weight: 400;
		color: #888;
	}
	#nav-content .small a + a {
		margin-left: 15px;
	}
	
	#nav-container:focus-within #nav-content {
		transform: none;
	}
	header .sns-icons {
		display:none;
	}
	
}


/*-- フッター --*/

footer #footer-corporate {
}
footer #footer-corporate span {
	display:block;
}
footer .nav-wrap {
	position:absolute;
	right:2rem;
	top:2rem;
}
footer nav ul li {
    display: inline-block;
}
footer nav ul li a {
    color:#fff;
}



/*-- キーフレーム --*/
@keyframes key1{
  0% {transform: translateY(0px);}
  100% {transform: translateY(-10px);}
}