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

/*--reset--*/
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;
}
.view-pc {
	display: block;
}
.view-sp {
	display: none;
}
@media screen and (max-width: 750px) {
	.view-pc {
		display: none;
	}
	.view-sp {
		display: block;
	}
}

/*--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;
    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%;
  }
}

/*--all--*/
html { 
	scroll-behavior: smooth;
}
.container {
	width: 100%;
    max-width: 1080px;
	margin: 0 auto;
	height: auto;
	text-align: center;
	padding: 0;
}
.container img {
	max-width: 100%;
	margin: 0 auto;
	height: auto;
}

.opcy:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*--swiper--*/
.swiper-rap {
	margin-inline: auto;
	position: relative;
}
.swiper {
    width: 100%;
	max-width: 100%;
    margin: 0 auto;
	overflow: hidden;
}
.swiper-slide {
    overflow: hidden;
    transition: .7s;
}
.swiper img {
	max-width: 100%;
}
.swiper-button-prev {
    left: 10px;
}
.swiper-button-next {
    right: 10px;
}
:root {
    --swiper-theme-color: #000;
}
:root {
    --swiper-navigation-size: 30px;
}
.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.swiper-button-prev::after {
    border-right: 23px solid #666;
    border-left: 0;
}

.swiper-button-next::after {
    border-left: 23px solid #666;
    border-right: 0;
}

@media screen and (max-width: 600px) {
	.swiper-button-prev::after,
.swiper-button-next::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.swiper-button-prev::after {
    border-right: 19px solid #666;
    border-left: 0;
}
.swiper-button-next::after {
    border-left: 19px solid #666;
    border-right: 0;
}
}

@media screen and (max-width: 500px) {
	.swiper-button-prev::after,
.swiper-button-next::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.swiper-button-prev::after {
    border-right: 12px solid #666;
    border-left: 0;
}
.swiper-button-next::after {
    border-left: 12px solid #666;
    border-right: 0;
}
}

@media screen and (max-width: 450px) {
	.swiper-button-prev {
		left: 6px;
	}
	.swiper-button-next {
		right: 6px;
	}
}

/*-- オフィシャルボタン --*/
.btn-official-box {
  padding: 0 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: 0.7s;
}
@media (min-width: 750px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (max-width: 550px) {
  .btn-official {
    font-size: 1rem;
  }
}


/*--footer--*/
footer {	
	background-color: #fff;
	padding: 0 0 5%;
}
.footer {	
	margin-bottom: 140px;
}
@media screen and (max-width: 750px) {
	.footer {	
		margin-bottom: 90px;
	}
}
@media screen and (max-width: 500px) {
	.footer {	
		margin-bottom: 60px;
	}
}
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;
	}
}

/*--TOPへ--*/
#PGtop {
    position: fixed;
    bottom: 140px;
    right: 20px;
    opacity: .8;
    border-radius: 4px;
    background-color: #666;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 999999;
}
#PGtop a {
    position: relative;
    display: table;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center
}
#PGtop a::before {
    font-family: "Font Awesome 5 Free";
    content: '\f062';
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: auto
}


/*--margin--*/
.mg-tb {
	margin: 5% 0 3%;
}
.mg-btm {
	margin-bottom: 5%;
}

.mt {
  margin-top: 5%;
}