/* -------------------------------- 
Basic style
-------------------------------- */

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
	height: 100% !important;
	background-color: #FFFFFF;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    font-size: 1.6em;
	font-weight: 400;
	line-height: 1.8;
	color: #000000;
	position: relative;
}

a {
	color: #000000;
	text-decoration: underline;
}

a:hover{
	color: #999999;
	text-decoration: underline;
}

.sp {
	display: none !important;
	}

.pc {
	display: block !important;
}

.sp_pr {
	display: none !important;
	}

.pc_pr {
	display: block !important;
}


@media screen and (max-width: 750px) {
.sp {
	display: block !important;
	}

.pc {
	display: none !important;
}
}

@media screen and (max-width: 470px) {
.sp_pr {
	display: block !important;
	}

.pc_pr {
	display: none !important;
}
}

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

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

a img.over {
  transition: all 0.3s linear;
}

a img.over:hover {
  opacity: 0.6;
}

/* ------------------------------- 
commmon
-------------------------------- */

.inner{
	max-width: 1020px; /*940*/
    width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1;
}

@media screen and (max-width: 768px) {
.inner{
	padding: 0 20px;
}
}
    
#contents{
    width: 100%;
    /*margin-top: 60px;*/
	position: relative;
	z-index: 3;
}

#contents::before{
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #007c30;
}

#contents::after{
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
	background-color: #c30d23;
}

/*#contents img{
    max-width: 100%;
	height: auto;
}*/

@media screen and (max-width: 768px) {
#contents{
    /*margin-top: 90px;*/
}
}

#contents h3.obi {
	width: 100%;
	font-family: "m-plus-1p", sans-serif;
	font-weight: 300;
	font-size: 34px;
	line-height: 1.4;
    text-align: center;
    padding: 8px;
	background-color: #000000;
	color: #FFFFFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 768px) {
#contents h3.obi {
	font-size: 20px;
}
}

#contents h3.obi span{
	font-size: 19px;
}
@media screen and (max-width: 768px) {
#contents h3.obi span{
	font-size: 14px;
}
}

#contents h3.obi span.cap {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "m-plus-1p", sans-serif;
    font-size: 1.2rem;
    text-align: left;
}
@media screen and (max-width: 768px) {
#contents h3.obi span.cap {
	position: static;
    text-align: right;
}
}


/* ------------------------------- 
header
-------------------------------- */

header{
    width: 100%;
    background-color: #E5FA19;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

header .inner{
    max-width: 1200px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

header h1 {
	float: left;
    text-align: left;
	transition: all 0.5s linear;
}

header h1 img{
    max-width: 100%;
    height: auto;
	vertical-align: middle;
    transition: all 0.5s linear;
}

/*global_nav*/

#global_nav {
	float: right;
	transition: all 0.75s linear;
}

#global_nav ul{
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    padding-top: 8px;
}

#global_nav li a{
    font-size: 1.3rem;
    font-weight: 500;
    color: #1E9BFF;
    margin: 0 25px;
    text-decoration: none;
    transition: all 0.3s linear;
}

#global_nav li a:hover{
    opacity: 0.6;
}

@media screen and (max-width: 840px) {
header .inner{
    padding: 10px 0;
}
header h1 {
	float: none;
    padding-left: 20px;
}
header h1 img{
    max-width: 80%;
    height: auto;
}
#global_nav {
	float: none;
    width: 100%;
}
#global_nav ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
} 
}

@media screen and (max-width: 470px) {
header h1 {
	width: 100%;
    text-align: center;
    padding-left: 0px;
}
header h1 img{
    max-width: 60%;
    height: auto;
}
#global_nav li a{
    font-size: 1.2rem;
    color: #1E9BFF;
    margin: 0 10px;
}
}

/* ------------------------------- 
footer
-------------------------------- */

footer {
    width: 100%;
    background-color: #000000;
    padding: 20px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
	position: relative;
	z-index: 2;
}

footer a{
    color: #FFFFFF;
    text-decoration: underline;
    transition: all 0.3s linear;
}

footer a:hover{
    color: #FFFFFF;
    opacity: 0.6;
}

footer p{
	font-family: "m-plus-1p", sans-serif;
    font-size: 2.3rem;
    color: #FFFFFF;
}
@media screen and (max-width: 470px) {
footer p{
    font-size: 1.6rem;
}
}

footer p.add{
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.0rem;
}
@media screen and (max-width: 470px) {
footer p.add{
    font-size: 1.2rem;
}
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

/* ------------------------------- 
1.main_visual
-------------------------------- */

#main_visual {
	width: 100%;
	z-index: 2;
	position: relative;
	/*background-image: url("../images/mainvisual.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;*/
	padding-top: 80px;
	margin-bottom: 40px;
}

@media screen and (max-width: 470px) {
#main_visual{
    padding-top: 40px;
	margin-bottom: 20px;
}
}

#main_visual::after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/mv_shadow.png);
	background-position: center top;
	background-repeat: repeat-x;
	z-index: 5;
	
}

#main_visual h1,
#main_visual h2{
	max-width: 980px; /*900*/
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	padding: 0 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#main_visual .mv{
	max-width: 1366px;
	text-align: center;
    margin: -80px auto 0;
	position: relative;
	z-index: 3;
}
@media screen and (max-width: 768px) {
#main_visual .mv{
	margin: -20px auto 0;
}
}

#main_visual .info{
	text-align: center;
    margin: -120px auto 0;
	position: relative;
	z-index: 7;
	padding: 0 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
#main_visual .info{
	margin: -30px auto 0;
}
}

/* ------------------------------- 
2.message
-------------------------------- */

#message {
    width: 100%;
    position: relative;
    z-index: 2;
}

#message .inner{
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
}
@media screen and (max-width: 470px) {
#message .inner{
    padding-top: 10px;
    padding-bottom: 20px;
}
}

#message h2,
#message h3 {
    font-size: 6.4rem;
	font-weight: 900!important;
	letter-spacing: -0.05em;
	color: #FFFFFF;
	text-align: center;
}
@media screen and (max-width: 470px) {
#message h2,
#message h3 {
    font-size: 3.2rem;
}
}

#message h4 {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 30px;
    color: #1E9BFF;
}
@media screen and (max-width: 750px) {
#message h4 {
    font-size: 2.4rem;
}
}
@media screen and (max-width: 470px) {
#message h4 {
    font-size: 1.9rem;
}
}

#message p.read {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
#message p.read {
    font-size: 1.6rem;
}
}
@media screen and (max-width: 470px) {
#message p.read {
    font-size: 1.3rem;
}
}

/* ------------------------------- 
3.brand
-------------------------------- */

#brand {
    width: 100%;
    position: relative;
    z-index: 3;
	padding-top: 40px;
	padding-bottom: 40px;
}

#brand p.caption {
	position: absolute;
	bottom: 10px;
	right: 40px;
	font-size: 1.2rem;
	text-align: left;
	color: #FFFFFF;
	width: 24%;
	max-width: 220px;
}
@media screen and (max-width: 940px) {
#brand p.caption {
	position: static;
	width: 100%;
	max-width: 100%;
	display: block;
	text-align: right;
}
}

#brand ul {
    width: 100%;
	/*max-width: 1020px;*/
	max-width: 960px;
	margin: 40px auto;
    display: flex;
	flex-wrap: wrap;
	/*justify-content: center;*/
	justify-content: flex-start;
	position: relative;
}
@media screen and (max-width: 768px) {
#brand ul {
    width: 94%;
}
}

#brand li {
    text-align: center;
	width: 24%;
    max-width: 220px;
    margin: 10px;
}

#brand li img{
	width: 100%;
	height: auto;
}

@media screen and (max-width: 470px) {
#brand li {
    width: calc(50% - 10px);
	margin: 5px;
}
}
/*
#brand li a{
    transition: all 0.3s linear;
}

#brand li a:hover{
    opacity: 0.6;
}
*/

/* ------------------------------- 
4.lineup
-------------------------------- 

#lineup {
    width: 100%;
    position: relative;
    z-index: 5;
    background-color: #1E9BFF;
}

#lineup::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center top;
    background-image: url(../images/bg_lineup.png);
    position: absolute;
    z-index: -1;
    top: -15px;
    left: 0;
}

@media screen and (max-width: 470px) {
#lineup::before{
    display: none;
}
}

#lineup .inner{
    max-width: 1195px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}
@media screen and (max-width: 470px) {
#lineup .inner{
    padding-top: 40px;
    padding-bottom: 40px;
}
}

#lineup h3 {
    text-align: center;
    margin-bottom: 30px;
}

#lineup p.read {
    font-size: 1.8rem;
    text-align: center;
    color: #E5FA19;
    margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
#lineup p.read {
    font-size: 1.6rem;
}
}
@media screen and (max-width: 470px) {
#lineup p.read {
    font-size: 1.3rem;
}
}

#lineup h4 {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    color: #696B6E;
    background-color: #E5FA19;
    padding: 8px 16px;
    margin-bottom: 30px;
}
@media screen and (max-width: 470px) {
#lineup h4 {
    font-size: 1.3rem;
}
}

#lineup h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
@media screen and (max-width: 470px) {
#lineup h5 {
    font-size: 1.4rem;
}
}

#lineup p.caption {
    font-size: 1.3rem;
    text-align: justify;
}
@media screen and (max-width: 470px) {
#lineup p.caption {
    font-size: 1.2rem;
}
}

#lineup ul{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#lineup li{
    width: 48.5%;
    background-color: #FFFFFF;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    text-align: left;
    margin-bottom: 30px;
}

@media screen and (max-width: 740px) {
#lineup li{
    display: block;
    margin-bottom: 10px;
}
}

.lu_pht{
    width: 49%;
    max-width: 260px;
}

.lu_txt{
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 25px 20px 20px;
}

@media screen and (max-width: 740px) {
.lu_pht{
    width: 100%;
    max-width: auto;
    max-width: 260px;
}
.lu_txt{
    width: 100%;
}
}
-------------------------------- */


/* ------------------------------- 
5.outline
-------------------------------- */

#outline {
    width: 100%;
    position: relative;
    z-index: 6;
}

#outline .inner{
    padding-top: 0px;
    padding-bottom: 100px;
}
@media screen and (max-width: 470px) {
#outline .inner{
    padding-top: 0px;
    padding-bottom: 50px;
} 
}
/*
#outline h3 {
    text-align: center;
    margin-bottom: 20px;
}

#outline h3 span {
    display: block;
    font-size: 1.8rem;
    text-align: center;
    color: #696B6E;
    padding-top: 20px;
}
*/
#outline table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
	background-color: #FFFFFF;
}

#outline table th,
#outline table td{
    font-size: 2.0rem;
    padding: 20px 30px;
    vertical-align: top;
    text-align: left;
    border-bottom: 1px solid #231815;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media screen and (max-width: 470px) {
#outline table th,
#outline table td{
    font-size: 1.3rem;
	padding: 20px;
}
}

#outline table th{
	width: 18%;
	font-weight: 400;
	background-color: #e6e6e6;
	white-space: nowrap;	
}
@media screen and (max-width: 470px) {
#outline table th{
    display: block;
    width: 100%;
}
}

#outline table td{
    border-left: 1px solid #C9CBD0;
}
@media screen and (max-width: 470px) {
#outline table td{
    display: block;
    width: 100%;
    border-left: none;
}
}

#outline tr:last-child th,
#outline tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 470px) {
#outline tr:last-child th {
  border-bottom: 1px solid #C9CBD0;
}
}

#outline ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#outline ul li{
	width: 50%;
	/*margin-right: 40px;*/
}

#outline ul li a{
	text-decoration: none;
}



/* ------------------------------- 
6.access
-------------------------------- */

#access {
    width: 100%;
    position: relative;
	z-index: 2;
}

/*#access::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center top;
    background-image: url(../images/bg_access.png);
    position: absolute;
    z-index: -1;
    top: -15px;
    left: 0;
}
@media screen and (max-width: 470px) {
#access::before{
    display: none;
}
}*/

#access .inner{
    max-width: 940px;
    padding-top: 40px;
    padding-bottom: 80px;
	background-color: #FFFFFF;
	margin-bottom: 80px;
}

@media screen and (max-width: 470px) {
#access .inner{
    padding-top: 20px;
    padding-bottom: 40px;
	margin-bottom: 40px;
}
}

#access h3 {
	font-size: 4.5rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 40px;
}
@media screen and (max-width: 470px) {
#access h3 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
}
#access h3 span {
    display: block;
    font-size: 2.5rem;
}
@media screen and (max-width: 470px) {
#access h3 span {
	font-size: 2.0rem;
}
}

.ggmap {
    overflow: hidden;
    width: 100%;
    height: 398px;
}
 
.ggmap iframe {
    width: 100%;
}

#access ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin-top: 30px;
}

#access ul li{
    width: 100%;
}
/*@media screen and (max-width: 740px) {
#access ul li{
    width: 100%;
}
}*/

#access ul li a.btn_access{
    width: 100%;
    display: block;
    padding: 28px 20px;
    /*background-image: url("../images/icon_maru.png");
    background-position: right 20px center;
    background-repeat: no-repeat;*/
    background-color: #000000;
    font-size: 3.5rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s linear;
    margin-top: 40px;
}

#access ul li a.btn_access img{
    vertical-align: middle;
	margin-left: 20px;
}

@media screen and (max-width: 470px) {
#access ul li a.btn_access{
    padding: 20px 20px;
    font-size: 1.4rem;
		font-weight: 700;
}
#access ul li a.btn_access img{
    max-width: 28px;
	margin-left: 10px;
}
}

#access ul li a.btn_access:hover{
    opacity: 0.6;
}

#access p.name{
    font-size: 2.8rem;
    font-weight: 500;
}
@media screen and (max-width: 470px) {
#access p.name{
    font-size: 1.6rem;
}
}
#access p.name em{
    font-size: 5.0rem;
	font-style: normal;
}
@media screen and (max-width: 470px) {
#access p.name em{
    font-size: 2.0rem;
}
}
#access p{
    text-align: center;
    font-size: 2.5rem;
}
@media screen and (max-width: 470px) {
#access p{
    font-size: 1.4rem;
}
}

.event_wrap{
    width: 100%;
    margin-top: 100px;
}
@media screen and (max-width: 470px) {
.event_wrap{
    margin-top: 40px;
}
}


/* 第二弾 */

/* slider_wrap
===================================*/

.slider_wrap{
    width: 100%;
    margin-bottom: 120px;
}

.slider_wrap ul{
    /*max-width: 1920px;*/
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.slider li{
    max-width: 375px; /*355px*/
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.slider img{
    margin: 0 auto;
}

.slider p.name{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #696B6E;
    border-left: 3px solid #1E9BFF;
    padding-left: 10px;
    margin-top: 20px;
}

@media screen and (max-width: 740px) {
.slider p.name{
    font-size: 1.4rem;
}
}

/* bnr_wrap
===================================*/

.bnr_wrap{
    width: 100%;
    margin-bottom: 120px;
}

.bnr_wrap ul{
    max-width: 1115px;
    margin: 0 auto;
}

.bnr_wrap ul li{
    padding: 0;
}

.bnr_wrap ul.wbnr{
    max-width: 780px;
    margin: 60px auto;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bnr_wrap ul.wbnr li{
    max-width: 312px;
}

.bnr_wrap ul.wbnr li p.name{
    font-size: 2.3rem;
    font-weight: 700;
    color: #D44143;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
    display: inline-block;
}

.bnr_wrap ul.wbnr li p.name span{
    color: #696B6E;
}

.bnr_wrap ul.wbnr li p.name a{
    color: #D44143;
    text-decoration: none;
    transition: all 0.3s linear;
}

.bnr_wrap ul.wbnr li p.name a span{
    color: #696B6E;
}

.bnr_wrap ul.wbnr li p.name a:hover{
    opacity: 0.6;
}

.bnr_wrap ul.wbnr li p.capt{
    font-size: 1.3rem;
    color: #696B6E;
}

@media screen and (max-width: 470px) {
.bnr_wrap ul.wbnr{
    max-width: 75%;
    margin: 30px auto;
}
.bnr_wrap ul.wbnr li{
    width: 100%;
     margin-bottom: 30px;
}
.bnr_wrap ul.wbnr li:last-child{
    margin-bottom: 0;
}
.bnr_wrap ul.wbnr li p.name{
    font-size: 2.0rem;
}
    
    
}





/* ------------------------------- 
dealer
-------------------------------- */

#dealer {
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    z-index: 5;
}

#dealer::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center top;
    background-image: url(../images/bg_message.png);
    position: absolute;
    z-index: -1;
    top: -15px;
    left: 0;
}
@media screen and (max-width: 470px) {
#dealer::before{
    display: none;
}
}

#dealer .inner{
    max-width: 1005px; /*925px*/
    padding-top: 80px;
    padding-bottom: 120px;
}
@media screen and (max-width: 470px) {
#dealer .inner{
    padding-top: 40px;
    padding-bottom: 60px;
} 
}

#dealer h3 {
    text-align: center;
    margin-bottom: 20px;
}

#dealer h3 span {
    display: block;
    font-size: 1.8rem;
    text-align: center;
    color: #696B6E;
    padding-top: 20px;
}

#dealer table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#dealer table th,
#dealer table td{
    font-size: 1.5rem;
    padding: 20px 40px;
    vertical-align: top;
    text-align: left;
    background-color: #F8FBFD;
    border-bottom: solid 6px #FFF;
}

@media screen and (max-width: 470px) {
#dealer table th,
#dealer table td{
    font-size: 1.3rem;
	padding: 10px;
}
}

#dealer table th{
    /*width: 20%;*/
    font-weight: 400;
    white-space: nowrap;    
}
@media screen and (max-width: 470px) {
/*#dealer table th{
    display: block;
    width: 100%;
}*/
}

#dealer table td{
}

#dealer table td p{ 
    position: relative;
    padding-left: 40px;
}
@media screen and (max-width: 470px) {
#dealer table td p{ 
    padding-left: 20px;
}   
}
#dealer table td p:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-left: solid 1px #C9CBD0;
}
