@charset "UTF-8";
/* CSS Document */

@import url(normalize.css);
@import url(default.css);

body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	line-height: 1.7em;
	font-size: 16px;
	color: #999;
}
img {
	width: 100%;
	border: 0;
}
a {
	text-decoration: none;
}

@media screen and (max-width: 960px) {
	body {
		font-size: 15px;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
}

/************************************
header
************************************/
#header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 9999;
}

/************************************
menu_pc
************************************/
#menu_pc {
	border-bottom: 1px solid #9ca5aa;
	padding: 15px 0;
}
#menu_pc .inner {
	width: 950px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#menu_pc .logo {
	flex-basis: 27%;
}
#menu_pc ul {
	flex-basis: 65%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#menu_pc ul li {
	font-size: 18px;
	font-weight: bold;
	margin-right: 18px;
}
#menu_pc ul li:last-child {
	margin-right: 0;
}
#menu_pc ul li a {
	color: #e75297;
}
#menu_pc ul .ec {
	flex-basis: 26%;
}
#menu_pc ul .insta {
	flex-basis: 5%;
}
#menu_pc ul .twitter {
	flex-basis: 5%;
}

@media screen and (max-width: 960px){
	#menu_pc .inner {
		width: 850px;
	}
	#menu_pc ul {
		flex-basis: 64%;
	}
	#menu_pc ul li {
		font-size: 1.7vw;
		margin-right: 16px;
	}
}
@media screen and (max-width: 768px){
	#menu_pc .inner {
		width: 688px;
	}
	#menu_pc .logo {
		flex-basis: 27%;
	}
	#menu_pc ul {
		flex-basis: 68%;
	}
}
@media screen and (max-width: 767px){
	#menu_pc {
		display: none;
	}
}

/************************************
menu_sp
************************************/
#menu_sp {
	display: none;
}

@media screen and (max-width: 767px){
	#menu_sp {
		border-bottom: 1px solid #9ca5aa;
		padding: 10px 5%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	#menu_sp nav {
		border-bottom: 1px solid #9ca5aa;
		display: none;
		position: absolute;
		top: 59px;
		width: 100%;
		background: #f0f2f2;
		opacity: 0.9;
		left: 0;
	}
	#menu_sp nav ul {
		display: block;
		margin: 0 auto;
		width: 92%;
	}
	#menu_sp nav ul li {
		font-size: 15px;
		margin: 0 auto;
		border-bottom: 1px solid #9ca5aa;
	}
	#menu_sp nav ul li a:after {
		content: '';
		width: 8px;
		height: 15px;
		background: url(../img/sp/menu_arrow.svg) no-repeat;
		background-size: contain;
		margin-top: 5px;
		display: inline-block;
		position: absolute;
		right: 5%;
	}
	#menu_sp nav ul li:last-child {
		border: none;
	}
	#menu_sp nav ul li a {
		color: #e75297;
		font-weight: bold;
		padding: 9px 0;
		display: block;
	}
	#menu_sp nav ul li a:visited {
		color: #e75297;
	}
	#menu_sp nav ul li a span {
		font-size: 10px;
	}

	#nav_toggle {
		flex-basis: 5%;
		/*position: relative;
		top: 4px;*/
		z-index: 100;
		margin-top: -16px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		height: 2px;
		background: #e75297;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1) {
		top:0px;
	}
	#nav_toggle span:nth-child(2) {
		top:7px;
	}
	#nav_toggle span:nth-child(3) {
		top:14px;
	}

	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 7px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 7px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	#menu_sp .logo {
		flex-basis: 55%;
		margin-top: 3px;
	}
	#menu_sp .icon {
		flex-basis: 25%;
/*
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
*/
	}
/*
	#menu_sp .icon li {
		flex-basis: 24%;
	}
*/
}

@media screen and (max-width: 375px){
	#menu_sp nav {
		top: 55px;
	}
}

@media screen and (max-width: 320px){
	#menu_sp nav {
		top: 50px;
	}
}

/************************************
footer
************************************/
#footer {
	background: #a6aeb3;
	padding: 35px 0 0;
}
#footer .inner {
	width: 850px;
	margin: 0 auto;
	position: relative;
}
#footer .inner .logo {
	width: 35%;
	margin: 0 auto;
}
#footer .inner .attention_sp {
	display: none;
}
#footer .inner .image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
#footer .inner .image .logo {
	flex-basis: 40%;
	margin: 0 16% 0 0;
}
#footer .inner .image .presell {
	flex-basis: 30%;
	height: 35px;
}
#footer .inner .image .insta {
	flex-basis: 4.2%;
}
#footer .inner .image .twitter {
	flex-basis: 4.2%;
}
#footer .inner ul {
	width: 70%;
	margin: 20px auto 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#footer .inner ul li a {
	color: #fff;
}
#footer .inner dl {
	border-top: 1px solid #fff;
	padding: 15px 8%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#footer .inner dl a {
	color: #fff;
}
#footer .inner dl dt {
	flex-basis: 30%;
	text-align: center;
}
#footer .inner dl dd {
	flex-basis: 30%;
	background: #fff;
	color: #a6aeb3;
	text-align: center;
}
#footer .copyright {
	background: #c4c9cc;
	color: #fff;
	text-align: center;
	padding: 10px 0;
}

@media screen and (max-width: 960px){
	#footer .inner {
		width: 800px;
	}
	#footer .inner .coming {
		width: 18%;
	}
	#footer .inner dl dt {
		flex-basis: 35%;
	}
}

@media screen and (max-width: 768px){
	#footer .inner {
		width: 600px;
	}
	#footer .inner .coming {
		width: 22%;
	}
	#footer .inner dl dt {
		flex-basis: 37%;
	}
}

@media screen and (max-width: 767px){
	#footer {
		padding: 25px 0 0;
	}
	#footer .inner {
		width: 100%;
	}
	#footer .inner .logo {
		width: 65%;
	}
	#footer .inner .attention_sp {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-basis: 100%;
		color: #a6aeb3;
		font-weight: bold;
		background: #fff;
		margin: 0 22% 15px;
		
	}
	#footer .inner .image {
		margin: 0 6%;
	}
	#footer .inner .image .logo {
		flex-basis: 100%;
		margin: 0 13% 15px;
	}
	#footer .inner .image .presell {
		flex-basis: 70%;
		height: auto;
	}
	#footer .inner .image .insta {
		flex-basis: 9.6%;
	}
	#footer .inner .image .twitter {
		flex-basis: 9.6%;
	}
	#footer .inner ul {
		width: 100%;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		margin: 20px auto 0;
		justify-content: unset;
	}
	#footer .inner ul li {
		flex-basis: 49.7%;
		font-size: 4vw;
		text-align: center;
	}
	#footer .inner ul li:nth-child(odd) {
		border-right: 1px solid #fff;
	}
	#footer .inner ul li:nth-child(1),
	#footer .inner ul li:nth-child(2) {
		border-bottom: 1px solid #fff;
	}
	#footer .inner ul li a {
		display: block;
		padding: 12px 0;
	}
	#footer .inner dl {
		border-top: 0;
		padding: 15px 13%;
	}
	#footer .inner dl dt {
		flex-basis: 48%;
		font-size: 3.5vw;
	}
	#footer .inner dl dd {
		display: none;
	}
	#footer .copyright {
		font-size: 3.2vw;
	}
}

/************************************
page_top
************************************/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: 0;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	position: absolute;
	content: '';
	background: url(../img/pc/btn_return.png);
	background-size: contain;
	display: inline-block;
	width: 60px;
	height: 60px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

@media screen and (max-width: 1024px){
	#page_top{
		right: 25px;
	}
}

@media screen and (max-width: 767px){
	#page_top{
		width: 50px;
		height: 50px;
		right: 13px;
		bottom: 0;
	}
	#page_top a{
		width: 50px;
		height: 50px;
	}
	#page_top a::before{
		width: 50px;
		height: 50px;
	}
}