@charset "utf-8";

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
 全デバイス共通のスタイルとスマートフォン向けレイアウトの指定
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_ */


/* common.css
----------------------------------------- */
body {
	font-family: YuGothic, '游ゴシック', sans-serif;
	font-size: 14px;
	color: #000000;
	line-height:1.8;
	letter-spacing: 1px;
	text-align: left;
	-webkit-text-size-adjust: 100%;
}
html,body {
    height: 100%;
}
#contents-wrap {
	position: relative;
    min-height: 60%;
    height: auto !important;
    height: 100%;
}
#contents-wrap:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	min-height: 100%;
    height: auto !important;
    height: 100%;
}
a {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: none;
}
a:focus {
	outline: none;
}
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
input:focus, 
select:focus, 
textarea:focus {
	outline: none;
}

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


/* 共通パーツ
----------------------------------------- */
/* fade-in */
.move-fade01 {
	transition: 1.0s;
	opacity: 0;
}

/* loading */
#contents-wrap {
	opacity: 0;
}

.loading-img {
	width: 120px;
	height: 120px;
	margin-top: -70px;
	margin-left: -60px;
	text-align: center;
	background-color: #fff;
	
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 2;
}
.loading-img img {
	width: 100%;
	height: auto;
}

/* page-top */
.page-top {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 10100;
}
.page-top p {
	margin: 0;
	padding: 0;
	position: fixed;
	right: 20px;
	bottom: 20px;
	
}
.page-top a {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid #ff0000;
	border-radius: 22px;
	background: url(../images/page-top-arrow_sp.png) center center no-repeat;
	background-size: 12px 8px;
}


/* header
----------------------------------------- */
#header {
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}
.logo {
	margin-top: 35px;
	text-align: center;
}
.logo a {
	display: block;
	width: 62px;
	height: auto;
	margin: 0 auto 10px;
}
.logo span {
	display: block;
	font-size: 9px;
	font-weight: bold;
}


/* slide-menu-btn */
.slide-menu-btn {
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 10000;
}
.slide-menu-nav {
	display: none;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 50px 0;
	background: url(../images/slide-bg.png) 0 0;
	z-index: 9000;
}
.slide-menu-nav a {
	display: inline-block;
	margin: 16px 0 16px;
	font-size: 16px;
	color: #000000;
	text-align: center;
	letter-spacing: 1.5px;
}
.slide-menu-nav a:hover {
	text-decoration: none;
}
.slide-menu-nav .gnav {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 30px;
	text-align: center;
}
.slide-menu-nav .gnav:after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 1px;
	margin-left: -25px;
	background-color: #ff0000;
	vertical-align: bottom;
}
.slide-menu-nav .gnav a {
	position: relative;
}
.slide-menu-nav .gnav a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: -10px;
	width: 4px;
	height: 4px;
	background-color: #ff0000;
	border-radius: 2px;
}
.slide-menu-nav .sns {
	margin-top: 15px;
	text-align: center;
}
.slide-menu-nav .sns li {
	display: inline-block;
	width: 15%;
}
.slide-menu-nav .sns a {
	font-size: 20px;
	color: #666666;
}
.slide-menu-nav .website {
	text-align: center;
}
.slide-menu-nav .website a {
	font-size: 12px;
}
.slide-menu-nav .website .fa-desktop {
	font-size: 8px;
}

/* menu-trigger */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 28px;
	height: 22px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000000;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 10px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}


/* footer
----------------------------------------- */
#footer {
	margin-top: 60px;
	padding: 0 30px 30px;
}
.footer-inner {
	padding-top: 30px;
	border-top: 1px solid #eeeeee;
}
.footer-gnav {
	float: left;
	width: 50%;
}
.footer-gnav li {
	margin: 0 0 10px 15px;
}
.footer-gnav li:last-child {
	margin-bottom: 0;
}
.footer-gnav a {
	position: relative;
}
.footer-gnav a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: -12px;
	width: 4px;
	height: 4px;
	background-color: #ff0000;
	border-radius: 2px;
}
.footer-sns {
	float: right;
	width: 50%;
	text-align: right;
}
.footer-sns li {
	display: inline-block;
	margin-right: 10px;
}
.footer-sns li:last-child {
	margin-right: 5px;
}
.footer-sns a {
	color: #666666;
	font-size: 16px;
}
.copyright {
	margin-top: 25px;
	text-align: center;
	color: #000000;
	font-size: 9px;
}







/* タブレット向け：760px～960px */
@media only screen and (min-width: 760px) {
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
img {
	width: 100%;
	height: auto;
}


/* 共通パーツ
----------------------------------------- */
/* fade-in */
.move-fade01 {
	transition: 1.0s;
	opacity: 0;
}

#contents-wrap:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	min-height: 100%;
    height: auto !important;
    height: 100%;
	
}

/* loading */
#contents-wrap {
	opacity: 0;
}
.loading-img {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 120px;
	margin-top: -110px;
	margin-left: -60px;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.loading-img img {
	width: 100%;
	height: auto;
}

/* page-top */
.page-top {
}
.page-top p {
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 10000;
}
.page-top a {
	display: block;
	width: 46px;
	height: 46px;
	border: 1px solid #ff0000;
	border-radius: 24px;
	background: url(../images/page-top-arrow_pc.png) center center no-repeat;
}


/* header
----------------------------------------- */
#header {
	width: 100%;
	height: auto;
	margin-bottom: 42px;
}

/* logo-wrapper */
.logo-wrapper {
	box-sizing: border-box;
	float: left;
	width: 30%;
	padding-left: 100px;
}
.logo {
	width: 100px;
	text-align: center;
	margin-top: 90px;
}
.logo a {
	display: block;
	width: 80px;
	height: auto;
	margin: 0 auto 18px;
}
.logo span {
	display: block;
	font-size: 12px;
	font-weight: normal;
}


/* header-nav */
.header-nav {
	box-sizing: border-box;
	float: right;
	width: 70%;
	padding-right: 70px;
	text-align: right;
}
.header-nav .sub-nav {
	margin-top: 35px;
}
.header-nav .sub-nav li {
	display: inline-block;
}
.header-nav .sub-nav .weblink {
	margin-right: 25px;
	font-size: 13px;
}
.header-nav .sub-nav .weblink a {
	transition: all .3s;
}
.header-nav .sub-nav .weblink a:hover {
	color: #ff0000;
}
.weblink .fa-desktop {
	font-size: 10px;
	color: #666666;
}
.header-nav .sub-nav .instagram a,
.header-nav .sub-nav .twitter a {
	display: table-cell;
	width: 34px;
	height: 34px;
	background-color: #eeeeee;
	border: 1px solid #eeeeee;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	border-radius: 18px;
	color: #666666;
	transition: all .3s;
}
.header-nav .sub-nav .instagram a:hover,
.header-nav .sub-nav .facebook a:hover {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
}
.header-nav .sub-nav .instagram {
	margin-right: 10px;
	vertical-align: middle;
}
.header-nav .sub-nav .facebook {
	vertical-align: middle;
}
.header-nav .gnav {
	margin-top: 130px;
	padding-right: 10px;
}
.header-nav .gnav li {
	display: inline-block;
	margin-right: 55px;
}
.header-nav .gnav li:last-child {
	margin-right: 0;
}
.header-nav .gnav a {
	position: relative;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1.5px;
	transition: all .3s;
}
.header-nav .gnav a:hover {
	color: #ff0000;
}
.header-nav .gnav a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -5px;
	left: -12px;
	width: 4px;
	height: 4px;
	background-color: #ff0000;
	border-radius: 2px;
}


/* footer
----------------------------------------- */
#footer {
	width: 86%;
	margin: 130px auto 0;
	padding: 0 0 50px;
}
.footer-inner {
	padding-top: 60px;
	border-top: 1px solid #eeeeee;
}
.footer-gnav {
	box-sizing: border-box;
	float: left;
	width: 70%;
	padding-left: 25px;
}
.footer-gnav li {
	display: inline-block;
	margin: 0 40px 0 0;
}
.footer-gnav li:last-child {
	margin-bottom: 0;
}
.footer-gnav a {
	position: relative;
	padding-top: 7px;
	font-size: 15px;
	font-weight: bold;
	transition: all .3s;
}
.footer-gnav a:hover {
	color: #ff0000;
}
.footer-gnav a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: -12px;
	width: 4px;
	height: 4px;
	background-color: #ff0000;
	border-radius: 2px;
}



.footer-sns {
	float: right;
	width: 30%;
	text-align: right;
}
.footer-sns li {
	display: inline-block;
	margin-right: 10px;
}
.footer-sns li:last-child {
	margin-right: 5px;
}



.footer-sns a {
	display: table-cell;
	width: 34px;
	height: 34px;
	background-color: #eeeeee;
	border: 1px solid #eeeeee;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	border-radius: 18px;
	color: #666666;
	transition: all .3s;
}
.footer-sns a:hover {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
}







.copyright {
	margin-top: 45px;
	text-align: center;
	color: #000000;
	font-size: 10px;
}



} /* タブレット向けここまで */






/* PC向けレイアウトの指定：961px～ */
@media only screen and (min-width: 961px) {


} /* PC向けここまで */




