@charset "utf-8";


@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}


/*************************************************

 wrapper

*************************************************/
#wrapper {
	overflow: hidden;
	color: #000;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	text-align: left;
}
.wrap {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media only screen and (max-width:767px) {
	#wrapper {
		font-size: 14px;
	}
}



/*************************************************

 header

*************************************************/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 100;
}
#header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	height: 90px;
	margin: 0 auto;
	padding: 0 20px;
}
#header .logo {
	position: relative;
	line-height: 0;
	z-index: 40;
}
@media only screen and (max-width:1280px) {
	#header .logo img {
		width: 150px;
	}
}
@media only screen and (max-width:991px) {
	#header .inner {
		display: block;
		padding: 0;
		height: auto;
	}
	#header .logo {
		text-align: center;
		background-color: #fff;
	}
	#header .logo a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 45px;
	}
	#header .logo img {
		width: 122px;
	}
}




/*************************************************

 globalnavi

*************************************************/
#globalnavi ul {
	display: flex;
	align-items: center;
}
#globalnavi li + li {
	margin-left: 20px;
}
#globalnavi li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	text-decoration: none;
}
#globalnavi li:not(.imgbtn) a {
	padding: 7px 0;
}
#globalnavi .imgbtn a {
	box-sizing: border-box;
	width: 180px;
	height: 60px;
	line-height: 0;
	border-radius: 0 0 0 10px;
	transition: background-color 0.3s,border-color 0.3s;
}
#globalnavi .store {
	margin-left: 30px;
}
#globalnavi .store a {
	background-color: #91B5DF;
}
#globalnavi .contact {
	margin-left: 12px;
}
#globalnavi .contact a {
	border: #000 solid 1px;
}
@media only screen and (min-width:768px) {
	#globalnavi li:not(.imgbtn) a:before {
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		content: '';
		width: 0;
		height: 4px;
		background-color: #91B5DF;
		transition: width 0.3s;
	}
	#globalnavi li:not(.imgbtn) a:hover:before {
		width: 100%;
	}
	#globalnavi .store a:hover {
		background-color: #fff;
	}
	#globalnavi .contact a:hover {
		background-color: #91B5DF;
		border-color: #91B5DF;
	}
}
@media only screen and (max-width:1280px) {
	#globalnavi li + li {
		margin-left: 15px;
	}
	#globalnavi li a {
		font-size: 12px;
	}
	#globalnavi .imgbtn a {
		width: 130px;
	}
	#globalnavi .store {
		margin-left: 20px;
	}
	#globalnavi .store img {
		width: 100px;
	}
	#globalnavi .contact img {
		width: 90px;
	}
}
@media only screen and (min-width:992px) {
	#globalnavi {
		display: block !important;
	}
}
@media only screen and (max-width:991px) {
	#globalnavi {
		overflow: auto;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 45px 15px;
		background-color: #fff;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		transition: transform 0.3s;
		z-index: 30;
	}
	.open #globalnavi {
		transform: translateX(0);
	}
	#globalnavi ul {
		display: block;
	}
	#globalnavi li {
		border-bottom: #d8d7d7 solid 1px;
	}
	#globalnavi li:first-child {
		border-top: #d8d7d7 solid 1px;
	}
	#globalnavi li + li {
		margin: 0;
	}
	#globalnavi li a {
		display: block;
	}
	#globalnavi li:not(.imgbtn) a:before {
		display: none;
	}
	#globalnavi li:not(.imgbtn) a {
		padding: 15px 0;
		font-size: 18px;
		text-align: left;
	}
	#globalnavi .imgbtn {
		display: none;
	}
}


/*************************************************

 spNavigationns

*************************************************/
#spNavigationns {
	display: none;
}
@media only screen and (max-width:991px) {
	#spNavigationns {
		position: fixed;
		bottom: 20px;
		right: 0;
		display: block;
		z-index: 200;
	}
	#spNavigationns li + li {
		margin-top: 5px;
	}
	#spNavigationns li a {
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 45px;
		height: 120px;
		text-align: center;
		border-radius: 0 0 0 5px;
	}
	#spNavigationns .store {
		background-color: #91B5DF;
	}
	#spNavigationns .contact {
		background-color: #fff	;
		border: #777777 solid 1px;
		border-right: none;
	}
}


/*************************************************

 hamburgerMenu

*************************************************/
@media only screen and (min-width:992px) {
	#hamburgerMenu {
		display: none !important;
	}
}
#hamburgerMenu {
	position: relative;
	width: 45px;
	height: 45px;
	margin-top: 6px;
	background-color: #282828;
	border-radius: 0 0 0 5px;
	z-index: 90;
	cursor: pointer;
}
#hamburgerMenu .bdr {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 16px;
	margin: 0 auto;
	transform: translate(-50%,-50%);
}
#hamburgerMenu .bdr span,
#hamburgerMenu .bdr:before,
#hamburgerMenu .bdr:after {
	position: absolute;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
}
#hamburgerMenu .bdr span {
	top: 45.5%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
#hamburgerMenu .bdr:before {
	top: 0;
}
#hamburgerMenu .bdr:after {
	top: 100%;
	transform: translateY(-100%);
}
.open #hamburgerMenu .bdr:before {
	animation: menuAnime01 .4s forwards;
}
.open #hamburgerMenu .bdr:after {
	animation: menuAnime02 .4s forwards;
}
.open #hamburgerMenu .bdr span {
	opacity: 0;
}
.close #hamburgerMenu .bdr:before {
	animation: menuAnime01_close .4s forwards;
}
.close #hamburgerMenu .bdr:after {
	animation: menuAnime02_close .4s forwards;
}
#hamburgerMenu p {
	position: relative;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1;
}
#hamburgerMenu p span {
	display: block;
}
#hamburgerMenu p span:last-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	background-color: #fff;
	transition-property: opacity;
	transition-duration: 0.3s;
}
.open #hamburgerMenu p span:last-child {
	opacity: 1;
}

@keyframes menuAnime01 {
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg);
	}
	100% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(45deg);
	}
}
@keyframes menuAnime01_close {
	0% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(45deg);
	}
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
	}
}
@keyframes menuAnime02 {
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg) translateY(0);
	}
	100% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(-45deg) translateY(0);
	}
}
@keyframes menuAnime02_close {
	0% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(-45deg) translateY(0);
	}
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg) translateY(0);
	}
	100% {
		top: 100%;
		margin-top: 0;
		transform: rotate(0deg) translateY(-100%);
	}
}




/*************************************************

 container

*************************************************/
#container {
	padding-top: 90px;
}
@media only screen and (max-width:991px) {
	#container {
		padding-top: 45px;
	}
}


/*************************************************

 footer

*************************************************/
.footerImage01 img {
	width: 100%;
}

/* footerInfos
------------------------------------------*/
.footerInfos {
	padding: 35px 0 40px;
	color: #fff;
	background-color: #000;
}
@media only screen and (max-width:767px) {
	.footerInfos {
		padding: 0;
	}
}


/* footerNavs
------------------------------------------*/
.footerNavs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
	line-height: 1;
}
.footerNavs li {
	padding: 0 10px;
}
.footerNavs li + li {
	border-left: #fff solid 1px;
}
.footerNavs a {
	position: relative;
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
@media only screen and (min-width:768px) {
	.footerNavs li a:before {
		position: absolute;
		top: 100%;
		left: 0;
		width: 0;
		display: block;
		content: '';
		height: 3px;
		margin-top: 7px;
		background-color: #91B5DF;
		transition: width 0.3s;
	}
	.footerNavs li a:hover:before {
		width: 100%;
	}
}
@media only screen and (max-width:767px) {
	.footerNavs {
		margin-bottom: 15px;
	}
	.footerNavs li {
		box-sizing: border-box;
		width: 50%;
		padding: 15px 0;
		text-align: center;
		border-bottom: #4b4b4b solid 1px;
	}
	.footerNavs li + li {
		border-left: none;
	}
	.footerNavs li:nth-child(even) {
		border-left: #4b4b4b solid 1px;
	}
	.footerNavs li:last-child {
		width: 100%;
		border-left: none;
	}
	.footerNavs a {
		font-size: 12px;
	}
}


/* footerBtns
------------------------------------------*/
.footerBtns {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}
.footerBtns li {
	width: 260px;
	margin: 0 8px;
	line-height: 0;
}
.footerBtns li a {
	position: relative;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	border-radius: 10px 0 0 0;
	border: #91B5DF solid 1px;
	transition: background-color 0.3s,border-color 0.3s;
}
.footerBtns li span {
	position: relative;
	display: block;
}
.footerBtns li span .on {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s;
	z-index: 2;
}
.footerBtns .store a {
	background-color: #91B5DF;
}
@media only screen and (min-width:768px) {
	.footerBtns .store a:hover {
		background-color: #fff;
		border-color: #fff;
	}
	.footerBtns .contact a:hover {
		background-color: #91B5DF;
	}
	.footerBtns li a:hover span .on {
		opacity: 1;
	}
}
@media only screen and (max-width:767px) {
	.footerBtns {
		margin-bottom: 35px;
	}
	.footerBtns li {
		margin: 0 8px;
	}
	.footerBtns li a {
		height: 35px;
		border-radius: 5px 0 0 0;
	}
	.footerBtns li span {
		position: relative;
		display: block;
	}
	.footerBtns .store img {
		width: 115px;
	}
	.footerBtns .contact img {
		width: 102px;
	}
}



/* footerLogs
------------------------------------------*/
.footerLogs {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.footerLogs li {
	margin: 0 40px;
}
.footerLogs a {
	display: block;
	color:  #fff;
	text-decoration: none;
	text-align: center;
}
.footerLogs figcaption {
	margin-top: 10px;
	font-size: 14px;
}
@media only screen and (max-width:767px) {
	.footerLogs {
		margin-bottom: 10px;
	}
	.footerLogs li {
		margin: 0 18px;
	}
	.footerLogs li:nth-child(1) {
		width: 110px;
	}
	.footerLogs li:nth-child(2) {
		width: 90px;
	}
	.footerLogs li:nth-child(3) {
		width: 80px;
	}
	.footerLogs figcaption {
		margin-top: 5px;
		font-size: 9px;
	}
}


/* footerSns
------------------------------------------*/
.footerSns {
	display: flex;
	justify-content: center;
}
.footerSns li {
	width: 70px;
	margin: 0 15px;
	line-height: 0;
}
.footerSns li a {
	display: block;
}
@media only screen and (max-width:767px) {
	.footerSns {
		padding-bottom: 15px;
	}
	.footerSns li {
		width: 35px;
		margin: 0 7px;
	}
}



/* footerEnd
------------------------------------------*/
.footerEnd {
	padding: 30px 0;
	text-align: center;
}
.footerEnd a {
	display: inline-block;
	line-height: 0;
}
.footerEnd p {
	margin-top: 10px;
	font-size: 12px;
}
@media only screen and (max-width:767px) {
	.footerEnd {
		padding: 15px 0;
	}
	.footerEnd img {
		width: 150px;
	}
	.footerEnd p {
		margin-top: 5px;
		font-size: 9px;
	}
}


.commonAnc {
	position: relative;
	top: -90px;
	width: 0;
	height: 0;
}
@media only screen and (max-width:767px) {
	.commonAnc {
		top: -45px;
	}
}