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

/*--リセットCSS--*/
html,body,h1,p {
	margin: 0;
	padding: 0;
	line-height: 1.0;
}
body {
	font-family: MazdaTypeRegular,Noto Sans CJK JP,Hiragino Kaku Gothic ProN,HiraKakuProN-W3,Meiryo,Yu Gothic Medium,sans-serif;
}
img {
	vertical-align: middle;
	border: none;
}
ul {
	padding-left: 0;
}
li {
	list-style:none
}
a{
	text-decoration: none;
}
div {
	display: block;
}
p {
	text-decoration: none;
}

/*--maincss--*/
.view-pc {
	display: block;
}
.view-sp {
	display: none;
}
@media screen and (max-width: 750px) {
	.view-pc {
		display: none;
	}
	.view-sp {
		display: block;
	}
}
.container {
	width: 100%;
    max-width: 1080px;
	margin: 0 auto;
	height: auto;
	text-align: center;
}
.container img {
	max-width: 100%;
	margin: 0 auto;
	height: auto;
}

/*--tabmenu--*/
.tab-wrap ul {
    display: flex;
    justify-content: center;
}
.tab-btn {
    text-align: center;
    list-style: none;
    cursor: pointer;
    margin: 0 5px;
}  
.tab-contents {
	display: none;
}
.tab-contents.show {
	display: block;
}
@media (max-width: 750px) {
	.tab-wrap ul {
		display: block;
		margin-bottom: 10%;
		max-width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
	.tab-btn {
		margin: 20px 0;
	}
	.sp-mgtp {
		margin-top: 10%;
	}
}
@media (max-width: 530px) {
	.tab-wrap ul {
		margin-bottom: 8%;
	}
	.tab-btn {
		margin: 10px 0;
	}
	.sp-mgtp {
		margin-top: 10%;
	}
}

/*-- オフィシャルボタン --*/
.btn-official-box{
	padding: 0 .5rem;
}
.btn-official {
	width: 90%;
	color: #4C4948;
	background-color: #fff;
	border-color: #4C4948;
	padding: 0.8rem 0;
    font-size: 1.1rem;
	cursor: pointer;
	border-radius: 8px;
}
.btn-official:hover {
  color: #fff;
  background-color: #4C4948;
  border-color: #4C4948;
  transition : .7s;
}
@media (min-width: 750px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (max-width: 550px) {
	.btn-official {
		font-size: 1rem;
	}
}

/*--footer--*/
footer {	
	padding: 5% 0;
}
footer p {
	margin-bottom: 0.25rem;
	font-size: 18px !important;
    line-height: 1.75 !important;
	color: #212529;
}
@media screen and (max-width: 750px) {
	footer p {
		font-size: 2.5vw !important;
	}
}