@charset "UTF-8";

/****************************************
Resetting
*****************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	font: inherit;
	font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
	/*letter-spacing:.2em;line-height: **/
}

ol,
ul,
li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
	-webkit-box-sizing: content-box;
	box-sizing: border-box;
	cursor: pointer;
	border: none;
	border-radius: 0;

	appearance: button;
	-webkit-appearance: button;
}

/******************************************
normarise
******************************************/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
}

a {
	transition: .5s;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

/******************************************
clearfix
******************************************/
.clearfix:after {
	content: ".";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
}

.clearfix {
	display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-mac */

/****************************************
Layout
*****************************************/
/*flexbox*/
.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex--start {
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex--center {
	-webkit-justify-content: center;
	justify-content: center;
}

.flex--end {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.flex--bet {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.flex--around {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/*col*/
.col2 {
	width: 48%;
}

.col3 {
	width: 30%;
}

.col4 {
	width: 25%;
}

.col5 {
	width: 18.4%;
}

.col6 {
	width: 15%;
}

/****************************************
modal window
*****************************************/
#cover {
	position: fixed;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	display: block;
	min-width: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

#modal {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: block;
	width: 50%;
	height: auto;
	transform: translate(-50%, -50%);
	color: white;
}

@media screen and (max-width:768px) {
	#modal {
		top: 30%;
		width: 70%;
	}
}

@media screen and (max-width:480px) {
	#modal {
		width: 90%;
	}
}

#modal img {
	width: 100%;
	height: auto;
	border: 1px solid cyan;
	border-radius: 10px;
}

/****************************************
header
*****************************************/
.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	display: flex;
	width: 100%;
	height: 70px;
	margin: 0 auto;
	padding: 0 20px;
	transition: .5s;
	border-bottom: 5px solid;
	background-image: url(../img/title_header_bg.jpg);
	background-size: cover;
}
@media screen and (max-width:480px) {
	.site-header {
	  height: 56px;
	}
  }
.site-header::after {
	content: "";
	position: absolute;
	top: 65px;
	left: 0px;
	display: block;
	width: 100%;
	height: 5px;
	/*background:linear-gradient(90deg,#c56aff,#1f9dff);*/
	background: linear-gradient(90deg, #8b008b, #2255ee);
}
@media screen and (max-width:480px) {
	.site-header::after {
	  top: 51px;
	}
  }
.scroll.hide {
	transform: translateY(-70px);
}
@media screen and (max-width:480px) {
	.scroll.hide {
	  transform: translateY(-56px);
	}
  }
.site-logo {
	align-self: center;
	margin: auto 0;
}

.site-logo a {
	color: #333;
	font-size: 1.5em;
}

.site-logo img {
	width: auto;
	height: 55px;
	margin: 5px 0;
}
@media screen and (max-width: 1024px) {
	.site-logo img {
		width: 80%;
		height: auto;
		margin-top: 10px;
	}
}
@media screen and (max-width:480px) {
	.site-logo img {
		width: 58px;
		height: auto;
	}
}
.gnav {
	align-self: center;
	margin: auto 0;
}

.gnav__menu {
	display: flex;
	justify-content: flex-start;
}

.gnav__menu__item {
	margin-left: 20px;
	color: #FFF;
	font-size: 16px;
	font-weight: normal;
		/*1em*/
	;
}

.gnav__menu__item__link {
	color: #FFF;
	font-size: 1em;
	font-weight: normal;
}

.gnav__menu__item__link__name {
	margin-right: 5px;
	color: #333;
}

.mnav__menu {
	overflow: hidden;
}

.mnav__menu2 {
	overflow: hidden;
	margin-top: 5%;
}

.mnav__menu__tittle {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	color: #fff;
	background: -moz-linear-gradient(90deg, #8b008b, #2255ee);
	background: -webkit-linear-gradient(90deg, #8b008b, #2255ee);
	background: -o-linear-gradient(90deg, #8b008b, #2255ee);
	background: -ms-linear-gradient(90deg, #8b008b, #2255ee);
	background: linear-gradient(90deg, #8b008b, #2255ee);
	font-size: 1em;
}

.mnav__menu__tittle2 {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	color: #220055;
	background: #efefef;
	font-size: 1em;
}

.mnav__menu__item {
	display: flex;
	flex-direction: column;
	padding: 10px;
	border-bottom: solid 1px #8b008b;
}

.mnav__menu__item2 {
	display: flex;
	flex-wrap: wrap;
	margin: 2% auto;
	padding: 0;
}

.mnav__menu__item2 input {
	flex-basis: 5%;
	margin-top: 2%;
	margin-left: 1em;
}

.mnav__menu__item2 label {
	flex-basis: 90%;
}

.mnav__menu__item__link {
	padding: 10px;
	color: #220055;
	font-size: 1em;
}

.hero {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 70px auto 5% auto;
	padding: 0;
	text-align: center;
}

.hero img {
	width: 100%;
	vertical-align: bottom;
}

.hero_menu {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	justify-content: flex-end;
	width: 80%;
}

.hero_menu li {
	margin-left: 15px;
}

.hero_menu li a {
	padding-top: 2px;
	color: #fff !important;
	border-top: 2px solid #fff;
	text-shadow: #000 2px 2px 2px;
	font-size: 13px;
}

.hero_menu li a:hover {
	color: dodgerblue !important;
	border-top: 2px solid dodgerblue;
}

@media screen and (max-width:1000px) {
	.hero_menu li a {
		font-size: 12px;
	}
}

@media screen and (max-width:1000px) {
	.hero_menu li a {
		font-size: 11px;
	}
}

@media screen and (max-width:900px) {
	.hero_menu li a {
		font-size: 10px;
	}
}

@media screen and (max-width:854px) {
	.hero_menu li a {
		font-size: 13px;
	}
}

@media screen and (max-width:540px) {
	.hero_menu li {
		margin-left: 10px;
	}

	.hero_menu li a {
		font-size: 10px;
	}
}

@media screen and (max-width:480px) {
	.hero_menu {
		position: absolute;
		top: 275px;
		right: 0;
		left: 0;
		display: block;
		width: 100%;
		margin: 0;
	}

	.hero_menu li {
		display: flex;
		width: 100%;
		height: 40px;
		margin: 0;
	}

	.hero_menu li a {
		align-self: flex-end;
		width: 100%;
		height: 40px;
		margin: 0 auto 5px;
		padding: 5px 20px;
		background-color: rgba(50, 50, 150, .5);
		font-size: 14px;
	}
}

.login2 {
	display: none;
}

.logo_item {
	width: 70%;
	margin: 0 auto;
}

.index__menu {
	width: 100%;
	margin: 100px 0 0 0;
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
	border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
	border-image-slice: 1;
	border-image-slice: 1;
}

.index__menu__item {
	margin-left: 50px;
}

.index__menu__item__link {
	letter-spacing: 0.2em;
	font-size: 16px;
}

/****************************************
main_contents
*****************************************/

/***main_section1***/
.main_section_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0 15%;
	background: url("../img/smo_main_sec1_bg.jpg") no-repeat center;
	background-attachment: fixed;
	background-size: cover;
}

.main_section1 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: linear-gradient(0deg, rgba(0, 0, 100, .9), rgba(20, 0, 10, .9));
	box-shadow: 0 0 8px #000033;
}

.main_section_title {
	width: 100%;
	margin: 0 auto 2% auto;
	text-align: center;
}

.main_section_title span {
	display: block;
}

.main_section_title span.title_sub {
	margin: 0 auto;
	padding-bottom: 5px;
	color: #000066;
	font-size: 2em;
	font-weight: bold;
}

.main_section_title span.title_main {
	margin: 0 auto;
	padding: 20px;
	border-top: 3px solid #c56aff;
	border-bottom: 3px solid #c56aff;
	background: url(../img/title_main_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0;
	background-size: cover;
}

p.point1,
p.point2,
p.point3,
p.point4,
p.point5 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	color: #ffff66;
	text-shadow: 3px 3px 0px #666;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.5em;
}

p.point2 {
	display: inline-block;
	width: 100%;
	height: 96px;
	padding-left: 120px;
	line-height: 90px;
}

p.point3,
p.point4 {
	height: 96px;
	line-height: 90px;
}

@media screen and (max-width:1500px) {
	p.point3 {
		height: auto;
		line-height: 1.5em;
	}
}

p.point1::before,
p.point2::before,
p.point3::before,
p.point4::before,
p.point5::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 96px;
	height: 96px;
	background-repeat: no-repeat;
	background-size: cover;
}

p.point1::before {
	background-image: url(../img/pt1.png);
}

p.point2::before {
	background-image: url(../img/pt2.png);
}

p.point3::before {
	background-image: url(../img/pt3.png);
}

p.point4::before {
	background-image: url(../img/pt4.png);
}

p.point5::before {
	background-image: url(../img/pt5.png);
}

@media screen and (max-width:1300px) {
	p.point2 {
		height: auto;
		line-height: 1.5em;
	}
}

@media screen and (max-width:768px) {

	p.point1,
	p.point2,
	p.point3,
	p.point4,
	p.point5 {
		font-size: 1.5em;
	}

	p.point1::before,
	p.point2::before,
	p.point3::before,
	p.point4::before,
	p.point5::before {
		width: 70px;
		height: 70px;
	}
}

@media screen and (max-width:480px) {
	.main_section_title span.title_main {
		padding: 10px;
	}

	p.point1,
	p.point2,
	p.point3,
	p.point4,
	p.point5 {
		display: inline-block;
		padding-left: 60px;
		font-size: 1em;
	}

	p.point4 {
		height: 50px;
		line-height: 50px;
	}

	p.point1::before,
	p.point2::before,
	p.point3::before,
	p.point4::before,
	p.point5::before {
		width: 50px;
		height: 50px;
	}
}

li.point1_text {
	position: relative;
	z-index: 1;
	text-shadow: white 1px 1px 0px;
}

li.point1_text::after {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -100px;
	width: 250px;
	height: 250px;
	background-image: url(../img/smo_sec2_img1_2.jpg);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 250px;
}

@media screen and (max-width:1270px) {
	li.point1_text::after {
		right: 0;
		bottom: -50px;
		width: 150px;
		height: 150px;
		background-size: 150px;
	}
}

@media screen and (max-width:768px) {
	li.point1_text::after {
		display: none;
	}
}

span.point_line1 {
	flex-basis: 100%;
	max-width: 100%;
	margin-left: 120px;
}

span.point_line2 {
	flex-basis: 100%;
	max-width: 100%;
	margin-left: 120px;
	text-align: right;
}

span.point2_line1 {
	display: inline;
	flex-basis: 100%;
	max-width: 100%;
	margin-left: 0;
}

@media screen and (max-width:768px) {

	span.point_line1,
	span.point_line2 {
		margin-left: 90px;
	}

	span.point2_line1 {
		height: 70px;
		line-height: 70px;
	}
}

@media screen and (max-width:480px) {

	span.point_line1,
	span.point_line2 {
		display: inline;
		margin-left: 0;
	}

	span.point2_line1 {
		height: 50px;
		line-height: 1.5em;
	}
}

.main_section_item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 5%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width:480px) {
	.main_section_item {
		margin: 0;
	}
}

.main_section_item ul.column_main {
	flex-basis: 100%;
	margin: 2%;
}

.main_section_item ul.column_left {
	flex-basis: 52%;
	margin: 0 1% 0 2%;
}

.main_section_item ul.column_right {
	flex-basis: 42%;
	margin: 0 2% 0 1%;
}

ul.column_main li.list_title {
	padding-top: 2%;
	padding-left: -5%;
	color: #003366;
	font-size: 1.2em;
}

ul.column_main li.list_title:first-child {
	padding-top: 0;
}

li {
	list-style: none;
	color: #333;
	font-size: 15px;
	font-weight: normal;
	line-height: 29px;
}

li.list_title {
	padding-top: 2%;
	color: #003366;
	border-bottom: 1px dotted #ccc;
	font-size: 1.2em;
}

li.list_title:first-child {
	padding-top: 0;
}

ul.column_main li.list_txt,
li.list_txt {
	padding-left: 2%;
}

ul.column_main li.sub_txt {
	padding-left: 2%;
	color: #555;
	font-size: .8em;
	font-weight: normal;
	line-height: 1em;
}

.main_section_item li.sub_txt {
	padding-left: 2%;
	color: #555;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
}

.gate_section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 2% auto;
	border-radius: 15px;
}

.dealer_btn {
	z-index: 1;
	flex-basis: 100%;
	margin: 3% auto;
	color: #ffff66;
}

.dealer_btn img {
	display: flex;
	width: 70%;
	height: auto;
	margin: 0 auto;
}

.visitor_guide_area {
	display: flex;
	width: 100%;
	margin: 0 auto 30px auto;
	text-align: center;
}

.visitor_guide_btn {
	position: relative;
	width: 80%;
	margin: auto;
	padding: 20px;
	text-align: center;
	color: #000066 !important;
	border: 1px solid red;
	border-radius: 10px;
	background: rgba(255, 255, 125, 0.9);
	text-shadow: 0px 0px 5px white;
	font-size: 30px;
	font-weight: 700;
}

.visitor_guide_btn::before {
	content: "NEW!";
	position: absolute;
	top: -26px;
	left: -26px;
	width: 42px;
	height: 42px;
	margin: auto;
	padding: 10px;
	text-align: center;
	letter-spacing: 0;
	color: white;
	border-radius: 50px;
	background: red;
	font-size: 16px;
	font-weight: 700;
	line-height: 2.5em;
}

.gate_item {
	flex-basis: 1050px;
	max-width: 1050px;
	margin: auto;
	text-align: center;
}

/*2banerの時はmax-width:50%;padding:10px;*/
.gate_item img {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.gate_item img.baner {
	border: 3px solid #142e96;
	border-radius: 10px;
	box-shadow: #000066 0px 0px 5px;
}

.dealer__btn {
	max-width: 70%;
	margin: 50px auto 0;
}

.gate_item__btn {
	flex-basis: 45%;
	max-width: 45%;
	margin: 20px auto;
	padding: 0;
	text-align: center;
}

@media screen and (max-width:768px) {
	.gate_item__btn {
		margin: 20px auto;
	}
}

@media screen and (max-width:480px) {
	.gate_item__btn {
		flex-basis: 100%;
		max-width: 100%;
	}
}

.gate_item__btn a.vistor {
	display: flex;
	justify-content: center;
	margin: auto;
	padding: 20px 0;
	color: rgb(0 50 150);
	border: #fff solid 5px;
	border-radius: 25px;
	background: url(../img/smo_visitor_btn.jpg);
	background-position: center;
	background-size: cover;
	box-shadow: rgba(0, 0, 0, .5) 2px 2px 2px;
	text-shadow: 1px 1px 0 #fff,
		-1px 1px 0 #fff,
		1px -1px 0 #fff,
		-1px -1px 0 #fff;
	font-size: 30px;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.gate_item__btn a.vistor {
		font-size: 20px;
	}
}

.gate_item__btn a.dealer {
	display: flex;
	justify-content: center;
	margin: auto;
	padding: 20px 0;
	color: #ffff99;
	border: #fff solid 5px;
	border-radius: 25px;
	background: url(../img/smo_dealer_btn.jpg);
	background-color: rgba(250, 7, 209, 0.3);
	background-position: center;
	background-size: cover;
	box-shadow: rgba(0, 0, 0, .5) 2px 2px 2px;
	text-shadow: 1.5px 1.5px 0 rgba(50, 50, 150, .9),
		-1.5px 1.5px 0 rgba(50, 50, 150, .9),
		1.5px -1.5px 0 rgba(50, 50, 150, .9),
		-1.5px -1.5px 0 rgba(50, 50, 150, .9);
	font-size: 30px;
	font-weight: 700;

	background-blend-mode: overlay;
}

@media screen and (max-width:768px) {
	.gate_item__btn a.dealer {
		font-size: 20px;
	}
}


/*ディーラーページ*/
/*.site-header--dealer {
	background:linear-gradient(0deg,#ffffee,#ffffcc 15%,#f9f999 50%,#ffffcc 51%,#ffffee);
}*/

#dealer .main_section_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0 15%;
	background: url("../img/tfo_dealer_main_sec1_bg.jpg") no-repeat center;
	background-attachment: fixed;
	background-size: cover;
}

#dealer .main_section_item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 5% 5% 5%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
}

.main_section_item_dealer {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 5%;
	padding-bottom: 5%;
	border-radius: 10px;
	background: url("../img/dealer_sec1_bg.jpg") top center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

#dealer .main_section1 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: rgba(50, 50, 0, .8);
	box-shadow: 0 0 8px #000033;
}

#dealer .main_section2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 2% auto;
	border: 5px solid #b8860b;
	border-radius: 10px;
	background: rgb(255, 255, 255);
	box-shadow: 0 0 8px #000033;
}

.main_section_item_dealer ul.column_main_dealer {
	flex-basis: 100%;
	margin: 2%;
}

.main_section_item_dealer ul.column_left_dealer {
	flex-basis: 47%;
	margin: 0 1% 0 2%;
}

.main_section_item_dealer ul.column_right_dealer {
	flex-basis: 47%;
	margin: 0 2% 0 1%;
}

.main_section_item_dealer li {
	padding: 1% 0;
	list-style: none;
	text-align: center;
	background: rgba(255, 255, 255, .8);
	font-size: 1.3em;
	font-weight: normal;
	line-height: 2em;
}

.main_section_item_dealer li.list_title_dealer {
	padding-left: -5%;
	color: #fff;
	border: none;
	background: rgba(0, 0, 100, .8);
	font-size: 1.2em;
}

.main_section_item_dealer li.list_txt_dealer {
	margin-bottom: 1%;
	color: #000066;
}

.main_section_item_dealer li.list_txt_dealer span.txt-bold {
	font-size: 20px;
	font-weight: bold;
}

.main_section_item_dealer li.list_txt_dealer span.txt-box {
	padding: 5px;
	color: #fff;
	border-radius: 4px;
	background: #555;
	font-size: 8px;
}

.main_section_item_dealer li.list_txt_dealer span.-is-blue {
	background: #00479d;
}

.main_section_item_dealer li.list_txt_dealer span.-is-red {
	background: #aa0033;
}

.main_section_item_dealer span.sub_txt_dealer {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	font-size: .8em;
	font-weight: normal;
}

.main_section_item_dealer span.sub_txt_dealer2 {
	position: relative;
	display: block;
	margin: 0 auto;
	padding-left: 4%;
	text-align: left;
	font-size: .8em;
	font-weight: normal;
}

.main_section_item_dealer span.sub_txt_dealer2:before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	padding-left: 2%;
	font-size: 1em;
}

.dealer_dl_section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	margin: 2% auto;
	border-radius: 15px;
	background: url("../images/pattern.png");
}

.dealer_dl_section_title {
	flex-basis: 100%;
	margin: 2% auto 0 auto;
	text-align: center;
	color: #FFFF00;
	text-shadow: 2px 2px 2px #333;
	font-size: 1.5em;
	font-weight: 600;
}

ul.dealer_dl_section_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 2% auto;
}

ul.dealer_dl_section_list li {
	flex-basis: 44%;
	margin: 1%;
	padding: 1%;
	transition: box-shadow .1s, transform .1s;
	text-align: center;
	border-radius: 15px;
	background: url("../img/dealer_dl_section_list_bg_hover.jpg") top center;
	background-size: 100%;
	box-shadow: 2px 2px 2px #333;
}

ul.dealer_dl_section_list li:hover {
	transition-duration: .1s;
	transform: translateY(1px);
	background: url("../img/dealer_dl_section_list_bg.jpg") top center;
	background-size: 100%;
}

ul.dealer_dl_section_list li:active {
	transition-duration: .1s;
	transform: translateY(2px);
	background: url("../img/dealer_dl_section_list_bg.jpg") top center;
	background-size: 100%;
}

ul.dealer_dl_section_list li a {
	color: #003366;
	text-shadow: 0px 0px 5px #fff;
	font-weight: 600;
}

.contents_caption {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 3%;
	background: linear-gradient(90deg, rgb(0, 100, 200), rgb(0, 150, 255));
	line-height: 1.4;
}

.contents_caption_txt {
	position: relative;
	color: #ffff66;
	text-shadow: 3px 3px 3px #003366;
	font-size: 1.8em;
	font-weight: 600;
}

.contents_caption_txt2 {
	position: relative;
	color: #ffff66;
	text-shadow: 3px 3px 3px #003366;
	font-size: 1.5em;
	font-weight: 600;
}

.contents_caption_txt2:before,
.contents_caption_txt:before {
	content: "\f14a";
	position: absolute;
	display: inline-block;
	margin-left: -1.3em;
	font-family: "Font Awesome 5 Free";
	line-height: 1.3em;
}

dl.contens_dl {
	margin: 5% 10% 0 10%;
}

dl.contens_dl dt {
	position: relative;
	padding: 0 0 1% 1.5em;
	color: rgb(0, 70, 100);
	border-bottom: 1px double rgb(0, 100, 200);
	border-left: 10px solid rgb(0, 100, 200);
	font-size: 120%;
	font-weight: 600;
}

dl.contens_dl dt:before {
	content: "\025c7";
	position: absolute;
	top: 0;
	left: .5%;
}

dl.contens_dl dd {
	margin-bottom: 5%;
	border: none;
}

dl.contens_dl2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 5% 10%;
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 15px;
	background: #eee;
	box-shadow: 2px 2px 2px #ccc;
}

dl.contens_dl2 dt.caption {
	display: block;
	flex-basis: 50%;
	margin: -5% 10% 1% 0;
	padding: 1%;
	letter-spacing: .3em;
	color: white;
	border: none;
	border-radius: 10px;
	background: #006699;
	font-size: 120%;
	font-weight: 600;
}

dl.contens_dl2 dt.center {
	flex-basis: 100%;
	margin: 0;
	border: none;
}

dl.contens_dl2 dd.list {
	position: relative;
	flex-basis: 45%;
	margin: 1%;
	padding-left: 1em;
	color: #006699;
}

dl.contens_dl2 dd.list:before {
	content: "\02022";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	margin: 0;
}

ul.column_dealer_main {
	flex-basis: 80%;
	margin: 5% 10%;
}

ul.column_dealer_left {
	flex-basis: 49%;
	margin: 0 1% 0 10%;
}

ul.column_dealer_right {
	flex-basis: 39%;
	margin: 0 0 0 1%;
}

div.dealer_update_btn {
	display: flex;
	width: 100%;
}

div.dealer_update_btn a {
	width: 90%;
	margin: 0 auto 5% auto;
	padding: 3% 0;
	text-align: center;
	color: white;
	border-radius: 10px;
	background: linear-gradient(to top, #ff0000, #ee6600);
	box-shadow: 2px 2px 2px #333;
	text-shadow: 2px 2px 2px #000;
	font-size: 180%;
	font-weight: 600;
}

/*ディーラーページ*/

/*event_app*/
#event_app dl {
	flex-wrap: wrap;
	width: 100%;
	padding: 2%;
	background: #fff;
}

/*#event_app dl.dl1 {margin-top: -5%;}*/
#event_app dt.dt_title {
	flex-basis: 100%;
	margin-top: 5%;
	padding: 1% 0;
	text-align: center;
	border: 3px double #ff6633;
	font-size: 150%;
	font-weight: 600;
	line-height: 2em;
}

#event_app dt.dt_subtitle {
	flex-basis: 100%;
	margin-top: 5%;
	margin-bottom: 1%;
	padding-bottom: 1%;
	border-bottom: 1px dotted #666;
	font-size: 120%;
	font-weight: 600;
}

#event_app dt,
dd {
	width: 100%;
}

#event_app dd {
	padding: 0 3%;
	border: none;
	line-height: 2em;
}

#event_app dd.dd_txt {
	border-bottom: 1px dotted #ccc;
}

#event_app dd.dd1 {
	flex-basis: 100%;
	padding: 1% 0 1% 2%;
	color: #FFFFFF;
	background: #003366
}

#event_app dd.dd2 {
	flex-basis: 100%;
	padding-left: 2%;
}

#event_app span.dd_subtxt {
	display: flex;
	color: #666;
	font-size: 90%;
}

.dd_txt_bold {
	text-decoration: underline;
	font-size: 120%;
	font-weight: 600;
}

.dd_info_box {
	margin: 2% auto;
	padding: 2%;
	text-align: center;
	border-radius: 15px;
	background: lightyellow;
	box-shadow: 0 0 5px #ccc;
	font-size: 120%;
	font-weight: 600;
}

.dd_info_box2 {
	margin: 2% auto 0 auto;
	padding: 2%;
	border-radius: 15px;
	background: lightyellow;
	box-shadow: 0 0 5px #ccc;
}

ul.DIP_caution {
	margin: 1%;
	padding: 1em 1em 1em 2em;
	border: 1px solid #ccc;
}

ul.DIP_caution li {
	list-style-type: none;
	text-indent: -1em;
}

ul.DIP_caution li:before {
	content: "※";
	display: inline;
}

.dip_app_btn_area {
	width: 100%;
	margin: 5% auto;
	padding: 1px 0;
	background: url("../img/pattern.png");
}

.dip_app_btn {
	display: block;
	width: 80%;
	margin: 5% auto;
	padding: 2% 0;
	text-align: center;
	color: white !important;
	border-radius: 15px;
	background: orangered;
	box-shadow: 2px 2px 2px #ccc;
	font-size: 150%;
	font-weight: 600;
}

.dip_app_btn:hover {
	transform: translateY(2px);
	box-shadow: none;
}

@media screen and (max-width:480px) {
	.dip_app_btn {
		width: 90%;
		font-size: 100%;
	}
}

/*DIP先行申し込みボタン*/

/**早見表**/
ul.list_table {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 1050px;
	margin: 0 auto;
	border-top: .5px solid #ccc;
	border-left: .5px solid #ccc;
}

ul.list_table_fixed {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 1050px;
	margin: 0 auto;
	border-top: .5px solid #ccc;
	border-left: .5px solid #ccc;
}

ul.list_table_fixed .fixed {
	position: fixed;
	z-index: 1;
	top: 0;
}

ul.list_table li,
ul.list_table_fixed li {
	flex-grow: 1;
	padding: 5px;
	border-right: .5px solid #ccc;
	border-bottom: .5px solid #ccc;
}

h2.list_table_title {
	flex-basis: 100%;
	margin-top: 10%;
	text-align: center;
	font-size: 150%;
	font-weight: 600;
}

ul.list_table li.list_table_subtitle {
	text-align: center;
	background: orange;
}

ul.list_table li.cols1 {
	flex-basis: 99%;
	border-left: .5px solid #ccc;
	background: lightyellow;
}

ul.list_table li.cols1-2 {
	flex-basis: 99%;
	background: white;
}

ul.list_table li.cols2 {
	flex-basis: 62%;
	flex-grow: 2;
	padding-right: 3%;
}

ul.list_table li.cols2 {
	flex-basis: 62%;
	flex-grow: 2;
	padding-right: 3%;
}

ul.list_table li.cols3 {
	flex-basis: 31%;
}

ul.list_table li.cols6 {
	display: flex;
	align-items: center;
	flex-basis: 140px;
	flex-grow: 1;
	justify-content: center;
}

ul.list_table li.cols6_lastcol {
	align-items: center;
	flex-basis: 280px;
	flex-shrink: 1;
}

ul.list_table li.border_bottom_none {
	border-bottom: none;
}

ul.list_table li.border_bottom_dot {
	border-bottom: 1px dashed #ccc;
}

ul.list_table li.border_bottom_dot {
	border-bottom: 1px dashed #ccc;
}

span.list_table_info {
	display: flex;
	justify-content: center;
	margin: 1%;
	padding: 1%;
	text-align: center;
	border: 3px solid #ffccaa;
	font-size: 120%;
}

div.keyword_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 1050px;
	margin: 0 auto 20px;
	border: 1px solid #0080ff;
	border-radius: 5px;
}
@media screen and (max-width:1050px) {
	div.keyword_list {
		width: 100%;
	}
}
div.keyword_list a {
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff !important;
	border-radius: 5px;
	background: #0080ff;
	font-size: 0.8em;
}
div.keyword_list a:first-child {
	margin-left: 0px;
}
@media screen and (max-width:480px) {
	div.keyword_list a {
		font-size: 0.6em;
	}
}
p.keyword_list_title {
	display: block;
	width: 100%;
	margin: 0 auto 10px;
	padding: 5px 10px;
	text-align: center;
	color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background: #0080ff;
	font-size: 1.2em;
}
/*DIP_クラス表*/
#DIP_class_table {
	width: 1050px;
	font-size: 1em;
}

table.list_table_wrap {
	display: block;
	width: 100%;
	margin: 2% auto;
	table-layout: fixed;
	border-top: .5px solid #ccc;
	border-right: .5px solid #ccc;
	border-bottom: .5px solid #ccc;
	font-size: 13px;
}

table.list_table_wrap thead {
	display: block;
	width: 100%;
}

table.list_table_wrap tbody {
	display: block;
	width: 100%;
}

table.list_table_wrap thead tr {
	display: table;
	width: 100%;
	background: white !important;
}

table.list_table_wrap tbody tr {
	display: table;
	width: 100%;
	height: 50px;
	background: white !important;
}

table.list_table_wrap thead th {
	border-bottom: .5px solid #ccc;
	border-left: .5px solid #ccc;
	font-size: 12px;
}

#DIP_class_table thead th {
	border-bottom: .5px solid #ccc;
	border-left: .5px solid #ccc;
	font-size: 1em;
}

table.list_table_wrap tbody td {
	border-bottom: .5px solid #ccc;
	border-left: .5px solid #ccc;
}

#DIP_class_table tbody {
	overflow: hidden;
	height: auto;
}

table.list_table_wrap tbody {
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 100%;
}

table.list_table_wrap thead th.list_table_subtitle {
	text-align: center;
	background: orange;
}

.cols6 {
	width: 10%;
	padding: 10px 5px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.5em
}

#DIP_class_table .cols6 {
	width: 15%;
	padding: 10px 5px;
	text-align: center;
	vertical-align: middle;
	line-height: 1.5em
}

th.cols6_lastcol {
	width: 25%;
	padding: 10px 5px;
	vertical-align: middle;
}

td.cols6_lastcol {
	width: 23.7%;
	padding: 10px 20px;
	vertical-align: middle;
	letter-spacing: 0.3em;
}

#DIP_class_table th.cols6_lastcol {
	width: 25%;
	padding: 10px 5px;
	vertical-align: middle;
}

#DIP_class_table td.cols6_lastcol {
	width: 25%;
	padding: 10px 5px;
	vertical-align: middle;
	letter-spacing: 0.3em;
}

td.cols1 {
	flex-grow: 1;
	width: 99%;
	border-left: .5px solid #ccc;
	background: lightyellow;
}

@media screen and (max-width:1050px) {
	table.list_table_wrap {
		width: 100%;
	}

	table.list_table_wrap tr {
		display: flex;
		flex-wrap: wrap;
	}

	th.cols6,
	td.cols6 {
		flex-basis: 13%;
		flex-grow: 1
	}

	th.cols6_lastcol {
		flex-basis: 20%;
		flex-grow: 1
	}

	td.cols6_lastcol {
		flex-basis: 20%;
		flex-grow: 1;
	}

	#DIP_class_table {
		width: 100%;
		font-size: 1em;
	}
}

@media screen and (max-width:480px) {
	table.list_table_wrap {
		font-size: 6px;
		line-height: 18px
	}

	table.list_table_wrap thead {
		display: flex;
		flex-wrap: wrap;
	}

	table.list_table_wrap tbody {
		display: flex;
		overflow: visible;
		flex-wrap: wrap;
		height: auto;
	}

	th.cols6,
	td.cols6 {
		flex-shrink: 1;
		width: 15%;
		padding: 10px 0;
	}

	th.cols6_lastcol,
	td.cols6_lastcol {
		flex-shrink: 1;
		width: 25%;
		padding: 10px 0;
	}
}

/****ボタン２列配置用

.visitor_btn{flex-basis: 44%; text-align: center;color:#ffff66;margin: 2%; padding:1%;border-radius:50px;background:linear-gradient(0deg,#990000,#ff3333);z-index: 1;box-shadow: 2px 2px 2px #666}
.dealer_btn{flex-basis: 44%;text-align: center;color:#ffff66;margin: 2%;padding:1%;border-radius:50px;background:linear-gradient(0deg,#003366,#0099cc);z-index: 1;box-shadow: 2px 2px 2px #666;display: flex;}
***/


/***main_section2***/
.main_section2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 2% auto;
	border: 8px solid rgba(0, 0, 50, 0.8);
	border-radius: 10px;
	background: rgb(255, 255, 255);
	box-shadow: 0 0 8px #000033;
}

.main_section2 ul.column_main {
	flex-basis: 100%;
	margin: 2%;
}

.main_section2 ul.column_left {
	flex-basis: 52%;
	margin: 0 1% 0 2%;
}

.main_section2 ul.column_right {
	flex-basis: 42%;
	margin: 0 2% 0 1%;
}

.main_section_txt {
	width: 100%;
	margin: 0 auto;
	padding: 2% 10%;
	text-indent: 1.2em;
	font-size: 1em;
	font-weight: normal;
	line-height: 2em;
}

.reg_btn {
	display: flex;
	justify-content: center;
	width: 70%;
	margin: 50px auto 20px;
}

.reg_btn img {
	width: 100%;
	height: auto;
}

div.main_sec2_list_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 2%;
	padding: 1%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));
	box-shadow: 2px 2px 2px #333
}

div.main_sec2_list_wrap2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 2%;
	padding: 1%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(210, 210, 155), rgb(255, 255, 200));
	box-shadow: 2px 2px 2px #333
}

ul.main_sec2_list {
	flex-basis: 63%;
	margin: 0 auto;
	padding-right: 2%;
}

ul.main_sec2_list li.style1 {
	position: relative;
	margin: 1% auto;
	padding-left: 1em;
	list-style: none;
	letter-spacing: 0;
	color: #333;
	border-bottom: 1px dotted #ccc;
	font-size: 1em;
	font-weight: normal;
}

ul.main_sec2_list li.style1:before {
	content: "\02610";
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	box-sizing: border-box;
	padding-right: 1%;
}

ul.main_sec2_list li.style2 {
	position: relative;
	margin: 1% auto;
	padding-left: 1em;
	list-style: none;
	letter-spacing: 0;
	color: #cc0000;
	border-bottom: 1px dotted #ccc;
	font-size: 1em;
	font-weight: normal;
}

ul.main_sec2_list li.style2:before {
	content: "\02611";
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	box-sizing: border-box;
	padding-right: 1%;
}

ul.main_sec2_list_img {
	align-self: center;
	flex-basis: 35%;
	margin: auto;
}

ul.main_sec2_list_img_bg {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

ul.main_sec2_list_img_bg::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -10px;
	width: 150px;
	height: 150px;
	background-image: url(../img/smo_sec2_img2_2.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 150px;
}

@media screen and (max-width:1430px) {
	ul.main_sec2_list_img_bg::after {
		bottom: -8px;
	}
}

@media screen and (max-width:1430px) {
	ul.main_sec2_list_img_bg::after {
		bottom: -6px;
	}
}

@media screen and (max-width:768px) {
	ul.main_sec2_list_img_bg {
		display: none;
	}
}

ul.main_sec2_list_img img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #ccc
}

ul.main_sec3_list {
	width: 80%;
	margin: 2% auto;
	padding: 2%;
	list-style: none;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));

	-ms-background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));
}

ul.main_sec3_list li {
	position: relative;
	margin: 3% auto;
	letter-spacing: 0;
	color: #006699;
	border-bottom: 1px dotted #ccc;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.5;
}

ul.main_sec3_list li.list_style_circle {
	position: relative;
	padding-left: 18px;
}

ul.main_sec3_list li.list_style_circle::before {
	content: "〇";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

ul.main_sec3_subtext {
	width: 100%;
	margin: 0 auto;
	padding: 2% 10%;
	text-indent: 1em;
	font-size: 1em;
	font-weight: normal;
	line-height: 2em;
}

ul.main_sec3_subtext li.list_style_asterlisk {
	position: relative;
	padding-left: 18px;
	text-indent: initial;
}

ul.main_sec3_subtext li.list_style_asterlisk::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

ul.main_sec3_subtext__caution {
	width: 100%;
	margin: 0 auto;
	padding: 2% 10%;
}

ul.main_sec3_subtext__caution li.list_style_caution {
	position: relative;
	padding-left: 26px;
	color: #666;
	font-size: 13px;
	line-height: 26px;
}

ul.main_sec3_subtext__caution li.list_style_caution::before {
	content: "注：";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

div.main_sec3_list2_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 80%;
	margin: 2% auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));
}

ul.main_sec3_list2 {
	flex-basis: 56%;
	margin: 0 auto;
	padding: 2%;
	list-style: none;
}

ul.main_sec3_list2 li {
	position: relative;
	margin: 5% auto;
	letter-spacing: .5em;
	color: #006699;
	border-bottom: 1px dotted #ccc;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.5;
}

ul.main_sec3_list2_img {
	align-self: center;
	flex-basis: 38%;
	margin: 2% auto;
	padding-right: 2%;
	text-align: right;
}

ul.main_sec3_list2_img img {
	width: 98%;
	height: auto;
	border-radius: 5px;
}

dl.main_sec3_list {
	width: 90%;
	margin: 2% auto;
	padding: 0 2%;
	list-style: none;
	counter-reset: my-counter;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));
}

dl.main_sec3_list_bgnone {
	width: 98%;
	margin: 2% auto;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

dl.main_sec3_list dt,
dl.main_sec3_list dd,
dl.main_sec3_list_bgnone dt,
dl.main_sec3_list_bgnone dd {
	position: relative;
	margin: 1% auto;
	padding-bottom: 1%;
	letter-spacing: .5em;
	color: #333;
	border-bottom: 1px dotted #ccc;
	font-weight: normal;
	line-height: 1.5;
}

dl.main_sec3_list dt {
	font-size: 1em
}

dl.main_sec3_list dt.midashi {
	font-size: 120%;
	font-weight: 700;
}

@media screen and (max-width:480px) {
	dl.main_sec3_list dt.midashi {
		font-size: 100%;
	}
}

dl.main_sec3_list dd,
dl.main_sec3_list_bgnone dd {
	position: relative;
	padding-left: 1.2em;
	font-size: 1em;
}

dl.main_sec3_list dd:last-child {
	border: none;
}

dl.main_sec3_list dd:before,
dl.main_sec3_list_bgnone dd:before {
	content: "\0203B";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	width: 100px;
	height: 100px;
	vertical-align: top;
}

dl.notice_list {
	width: 70%;
	margin: 2% auto;
	padding: 0 2%;
	list-style: none;
	counter-reset: my-counter;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));
}

@media screen and (max-width:480px) {
	dl.notice_list {
		width: 90%;
	}
}

dl.notice_list dt,
dl.notice_list dd {
	position: relative;
	margin: 1% auto;
	padding-bottom: 1%;
	letter-spacing: .5em;
	color: #333;
	border-bottom: 1px dotted #ccc;
	font-weight: normal;
	line-height: 1.5;
}

dl.notice_list dt {
	font-size: 14px
}

dl.notice_list dd,
dl.main_sec3_list_bgnone dd {
	position: relative;
	padding-left: 1.2em;
	font-size: 14px;
}

dl.notice_list dd:last-child {
	border: none;
}

dl.notice_list dd:before {
	content: "\0203B";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	width: 100px;
	height: 100px;
	vertical-align: top;
}

.main_sec3_registration_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 5%;
	padding: 0;
	border-radius: 15px;
	background-image: url("../img/pattern.png");
	box-shadow: 2px 5px 5px #ccc;
}

.main_sec3_registration_title {
	display: flex;
	flex-basis: 80%;
	justify-content: center;
	margin: 2% auto;
	padding-bottom: 2%;
	color: #4169e1;
	border-bottom: double 10px #003366;
	font-size: 2em;
	font-weight: bold;
}

.main_sec3_registration_txt {
	display: block;
	flex-basis: 100%;
	margin: 2% auto;
	padding: 0 2%;
	text-align: center;
	color: #006699;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 2em;
}

.registration_btn_area {
	display: flex;
	flex-basis: 100%;
	max-width: 100%;
	flex-wrap: wrap;
	margin: 2% auto;
}

.registration_btn_area span.text_area {
	display: flex;
	flex-basis: 45%;
	max-width: 45%;
	flex-wrap: wrap;
	margin: 2% auto;
	padding-right: 10px;
	letter-spacing: 0em;
	color: #ff0000;
	font-size: 1.2em;
	font-weight: bold;
}

i.text_line {
	display: inline-block;
	flex-basis: 100%;
	max-width: 100%;
}

@media screen and (max-width:1260px) {
	.registration_btn_area span.text_area {
		display: inline;
	}

	i.text_line {
		display: inline;
	}
}

.registration_btn_area span.arrow {
	position: relative;
	display: inline-block;
	flex-basis: 5%;
	max-width: 5%;
	padding: 0 0 0 16px;
	vertical-align: middle;
	text-decoration: none;
	color: #000;
	font-size: 15px;
}

.arrow::before,
.arrow::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	vertical-align: middle;
}

.registration_btn_area span.arrow:before {
	left: 15px;
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	border: 15px solid transparent;
	border-left: 15px solid #ff0000;
}

.registration_btn_area span.arrow:after {
	left: 1px;
	width: 20px;
	height: 15px;
	border-left: 15px solid #ff0000;
}

.registration_btn_area a {
	display: flex;
	flex-basis: 50%;
	max-width: 50%;
	margin: 2% auto;
}

.registration_btn {
	display: flex;
	flex-basis: 90%;
	justify-content: center;
	margin: auto;
	padding: 2% 1%;
	letter-spacing: .3em;
	color: white;
	border-radius: 50px;
	background: linear-gradient(#ff0000, #990000);
	font-size: 1.2em;
	font-weight: bold;

	-ms-background: #fff;
}

.registration_btn:hover {
	background: linear-gradient(#ff6666, #cc0000);

	-ms-background: #fff;
}

@media screen and (max-width:480px) {
	.registration_btn_area span.text_area {
		display: flex;
		flex-basis: 100%;
		max-width: 100%;
		text-align: center;
	}

	.registration_btn_area span.arrow {
		display: none;
	}

	.registration_btn_area a {
		flex-basis: 100%;
		max-width: 100%;
	}

	.registration_btn {
		flex-basis: 100%;
	}
}

.main_sec3_footer {
	width: 100%;
	min-height: 0%;
	margin: 5% auto 0 auto;
	padding: 0;
}

.main_sec3_footer img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.tiket_wrap {
	width: 80%;
	margin: 2% auto;
	border: 1px dotted #666;
	border-radius: 15px;
	background: url("../images/pattern.png")
}

.pt3_icon1 {
	position: relative;
	width: 75%;
	margin: 5% 10% 0 auto;
}

.pt3_icon1:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -110px;
	display: inline-block;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	vertical-align: top;
	background-image: url("../img/pt3_icon1.jpg");
	background-size: contain;
}

.pt3_icon2 {
	position: relative;
	width: 75%;
	margin: 5% 10% 5% auto;
}

.pt3_icon2:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -110px;
	display: inline-block;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	vertical-align: top;
	background-image: url("../img/pt3_icon2.jpg");
	background-size: contain;
}

.pt3_icon3 {
	position: relative;
	width: 75%;
	margin: 5% 10% 0 auto;
}

.pt3_icon3:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -110px;
	display: inline-block;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	vertical-align: top;
	background-image: url("../img/pt3_icon3.jpg");
	background-size: contain;
}

.step5_h5 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 20px 0;
	text-indent: initial;
	color: #006699;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.5em;
}

@media screen and (max-width:480px) {
	.step5_h5 {
		display: block;
		margin-bottom: 20px;
		font-size: 1em;
	}
}

.step5_h5_line1 {
	display: flex;
	flex-basis: 100%;
	max-width: 100%;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
}

.step5_h5_line2 {
	display: flex;
	flex-basis: 100%;
	max-width: 100%;
	justify-content: flex-end;
}

@media screen and (max-width:480px) {

	.step5_h5_line1,
	.step5_h5_line2 {
		display: inline;
	}
}

/***　画像配置の指定　共通　***/
.gate_section_img {
	display: flex;
	flex-basis: 100%;
	margin: 0 auto;
	margin-top: -30%;
	padding-left: 20%;
}

.gate_section_img img {
	height: 100%;
}

.img_area_sec1 {
	flex-basis: 95%;
	margin: 0 auto;
}

.img_area_sec1 img {
	width: 100%;
	height: auto;
}

.img_area_sec2 {
	flex-basis: 100%;
	margin: 0 2%;
}

.img_area_sec2 img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.img_area {
	width: 70%;
	margin: 0 auto;
}

.img_area img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.img_area2 {
	width: 80%;
	margin: 0 auto;
}

.img_area2 img {
	width: 100%;
	height: auto;
	padding: 3%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: linear-gradient(0deg, rgb(240, 240, 240), rgb(255, 255, 255));

	-ms-background: #fff;
}

.img_area3 {
	width: 100%;
	margin: 0 auto;
}

.img_area3 img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.img_area4 {
	width: 80%;
	margin: 0 auto;
}

.img_area4 img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.img_area5 {
	width: 50%;
	margin: 0 auto;
}

.img_area5 img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.img_area_ship {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

.img_area_ship img {
	flex-basis: 49%;
	max-width: 49%;
	height: auto;
	border: 1px solid #555;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.img_area_ship img.child_3 {
	margin-top: 2%;
}

@media screen and (max-width:480px) {
	.img_area_ship img.child_3 {
		margin-top: 0;
	}

	.img_area_ship img {
		flex-basis: 98%;
		max-width: 98%;
		margin-bottom: 2%;
		margin-left: 1%;
	}
}

.main_section_item ul.column_right img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.main_section2 ul.column_right img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 2px 2px 2px #666;
}

.arrow1 {
	margin: 2% auto;
	text-align: center;
}

.step_title {
	width: 95%;
	margin: 5% auto 0 auto;
}

.step_title img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.ticket_title {
	width: 80%;
	margin: 2% auto;
}

.ticket_title img {
	width: 96%;
	height: auto;
	margin: 2%;
}

.img_area_ship img.smo_sec4_shipping {
	align-self: flex-end;
	max-width: 45%;
	border: none;
	box-shadow: none;
}

.step6_img {
	width: 60%;
	margin: 0 auto 5%;
}

.step6_img img {
	width: 100%;
	height: auto;
}

.point5_img {
	width: 100%;
	margin: auto;
	text-align: center;
}

.point5_img img {
	width: 90%;
	height: auto;
}

/***　文字装飾　共通　***/
.txt1 {
	display: block;
	align-self: center;
	margin: auto;
	font-size: 2em;
}

.txt2 {
	font-size: 1.5em;
}

.txt3 {
	font-size: 120%;
	font-weight: bold;
}

.text_midashi1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 5% auto;
	font-size: 180%;
	font-weight: bold;
}

.text_center {
	text-align: center;
}

.red {
	color: #ff0000;
}

.blue {
	color: #006699;
}

.darkblue {
	color: #000066;
}

.main_section_txt_border_top1 {
	width: 100%;
	margin: 0 auto;
	padding: 2% 10%;
	text-indent: 1em;
	border-top: 1px dotted #999;
	font-size: 1em;
	font-weight: normal;
	line-height: 2em;
}

.expiration_date_title {
	display: flex;
	justify-content: center;
	padding: 5% 0;
	letter-spacing: 1em;
	color: #006699;
	font-size: 30px;
	font-weight: bold;
}

/***　文字サイズ調整％　共通　***/
.font_reduction_10 {
	font-size: 10%
}

.font_reduction_20 {
	font-size: 20%
}

.font_reduction_30 {
	font-size: 30%
}

.font_reduction_40 {
	font-size: 40%
}

.font_reduction_50 {
	font-size: 50%
}

.font_reduction_60 {
	font-size: 60%
}

.font_reduction_70 {
	font-size: 70%
}

.font_reduction_80 {
	font-size: 80%
}

.font_reduction_90 {
	font-size: 90%
}

.font_expansion_110 {
	font-size: 110%
}

.font_expansion_120 {
	font-size: 120%
}

.font_expansion_130 {
	font-size: 130%
}

.font_expansion_140 {
	font-size: 140%
}

.font_expansion_150 {
	font-size: 150%
}

.font_expansion_160 {
	font-size: 160%
}

.font_expansion_170 {
	font-size: 170%
}

.font_expansion_180 {
	font-size: 180%
}

.font_expansion_190 {
	font-size: 190%
}

.font_expansion_200 {
	font-size: 200%
}

/***リストの飾りマーク***/
.count1,
.count2,
.count3,
.count4,
.count5,
.count6,
.count7,
.count8,
.count9 {
	position: relative;
	padding-left: 1.5em;
	font-size: 1em;
}

.count1:before {
	content: "\02460";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count2:before {
	content: "\02461";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count3:before {
	content: "\02462";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count4:before {
	content: "\02463";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count5:before {
	content: "\02464";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count6:before {
	content: "\02465";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count7:before {
	content: "\02466";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count8:before {
	content: "\02467";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.count9:before {
	content: "\02468";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
}

.clock {
	position: relative;
	display: inline-flex;
	align-content: flex-start;
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	padding: 0;
	border: 3px solid #39a9d6;
	border-radius: 100%;
	font-size: 30px;
}

/* 長針 */
.clock::before {
	content: "";
	position: absolute;
	top: 0.1em;
	left: 0.35em;
	width: 0.1em;
	height: 0.4em;
	background-color: #39a9d6;
}

/* 短針 */
.clock::after {
	content: "";
	position: absolute;
	top: 0.4em;
	left: 0.35em;
	width: 0.35em;
	height: 0.1em;
	background-color: #39a9d6;
}

/*アコーディオンメニュー*/
.acd-check {
	display: none;
}

.acd-label {
	position: relative;
	display: block;
	margin-bottom: 1px;
	padding: 10px;
	text-align: center;
	color: #fff;
	background: dodgerblue;
}

.acd-label:after {
	content: '\f107';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	box-sizing: border-box;
	height: 52px;
	padding: 10px 20px;
	background: #00479d;
	font-family: "Font Awesome 5 Free";
	font-size: 2em;
	font-weight: 900;
}

.acd-content {
	display: block;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	padding: 0 10px;
	transition: .5s;
	transition: .5s ease-out;
	opacity: 0;
	border: 1px solid #333;
}

.acd-check:checked+.acd-label:after {
	content: '\f106';
}

.acd-check:checked+.acd-label+.acd-content {
	visibility: visible;
	height: auto;
	padding: 10px;
	transition: .5s ease-out;
	opacity: 1;
}

@media screen and (max-width:480px) {
	.acd-label {
		display: flex;
		flex-direction: column;
		padding-right: 55px;
	}

	.acd-label:after {
		height: 100%;
		padding: 30px 15px;
	}
}

/*仮申請フォーム用*/
.adult_app_subtxt {
	margin: 5px 0 10px 0;
	font-size: 80%;
}

.adult_app_subtxt span.adaptxt {
	position: relative;
	display: block;
	padding-left: 1em;
	line-height: 1.5em;
}

.adult_app_subtxt span.adaptxt:before {
	content: "\0203B";
	position: absolute;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
}

.honshinsei_btn {
	display: inline-block;
	margin-top: 2%;
	margin-left: 20px;
	padding: 1% 2%;
	color: white !important;
	border: 1px solid white;
	border-radius: 5px;
	background: dodgerblue;
}

.honshinsei_btn:hover {
	border: 1px solid dodgerblue;
	background: white;
}

@media screen and (max-width:768px) {
	.honshinsei_btn {
		display: inline-block;
		margin: 1% 0 2% 0;
		padding: 15px;
		text-align: center;
		line-height: 1.2em;
	}
}

@media screen and (max-width:480px) {
	.honshinsei_btn {
		padding: 10px;
		font-size: 12px;
	}
}

/*仮申請フォーム用*/
ul.honshinsei_subtext_wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 2%;
	line-height: 24px;
}

li.honshinsei_subtext_title {
	flex-basis: 100%;
	margin-top: 2%;
	font-size: 14px;
	font-weight: 600;
}

li.honshinsei_subtext {
	position: relative;
	display: flex;
	flex-basis: 100%;
	padding-left: 14px;
	font-size: 12px;
}

li.honshinsei_subtext:before {
	content: "・";
	position: absolute;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
}

li.honshinsei_subtext_asterisk {
	position: relative;
	display: flex;
	flex-basis: 100%;
	padding-left: 14px;
	color: red;
	font-size: 12px;
}

li.honshinsei_subtext_asterisk:before {
	content: "\0203B";
	position: absolute;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
}

/*ディーラーマイページ本申請エリア用*/
.honshinsei_text_area {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: auto;
}

.honshinsei_asterisk {
	flex-basis: 100%;
	width: 100%;
	color: red;
	font-size: 13px;
}

.honshinsei_asterisk li {
	position: relative;
	display: flex;
	flex-basis: 100%;
	padding-left: 14px;
	font-size: 12px;
}

.honshinsei_asterisk li:before {
	content: "\0203B";
	position: absolute;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
}

.honshinsei_seat_btn_area {
	display: block;
	flex-basis: 100%;
	width: 100%;
	margin: auto;
	text-align: center;
}

/*DIP申し込みフォーム*/
.dip_app_subtitle {
	margin-top: 5%;
	text-align: center;
	color: dodgerblue;
	font-size: 120%;
	font-weight: 600;
}

ul.dip_app_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 2% 0;
	padding: 1%;
	border: 1px solid dodgerblue;
	border-radius: 4px;
}

ul.dip_app_list li {
	display: flex;
	align-content: center;
	margin: 1% auto 0 auto;
	padding: 0;
}

ul.dip_app_list li.colspan2 {
	flex-basis: 100%;
	border-bottom: 1px dotted #ccc;
}

ul.dip_app_list li.column_left {
	flex-basis: 23%;
	flex-grow: 1;
	padding: 1%;
	background: #e0ffff;
}

ul.dip_app_list li.column_right {
	display: flex;
	align-self: center;
	flex-basis: 73%;
	flex-direction: column;
	padding: 1%;
}

.dip_app_select_item {
	font-weight: 600;
}

.dip_app_select_item_subtxt {
	display: block;
	margin-top: -5px;
	margin-bottom: 10px;
	padding-left: 2em;
	color: #777;
	border-bottom: 1px dotted #ccc;
	font-size: 90%;
}

.dip_app_hr {
	margin-bottom: 5%;
}

.mypage_back_area {
	width: 65%;
	margin-top: 64px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (max-width:768px) {
	.mypage_back_area {
		font-size: 50%;
	}
}

/*ディーラーマイページTOP*/
.event_data {
	padding: 1%;
	border: 1px solid #ccc;
	border-radius: 4px;
}

ul.event_list_wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

ul.event_list_wrap li {
	display: flex;
	flex-basis: 45%;
	justify-content: center;
	margin: 0 auto;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: #ccc;
}

ul.event_list_wrap li.active {
	z-index: 10;
	margin-bottom: -1px;
	background: white;
}

ul.event_list_wrap li img {
	width: 80% !important;
	height: auto;
	margin: 0 auto;
	padding: 2% 0;
	vertical-align: bottom;
}

/*
ul.event_list_wrap li a{margin:auto;padding: 2%; text-align: center;display: block;color:white !important;background: dodgerblue;border-radius:4px;border: 1px solid dodgerblue;}
ul.event_list_wrap li a:hover{color:;dodgerblue;background: white;border: 1px solid dodgerblue}
*/

/*twitter*/
.twitter {
	position: fixed;
	top: 100px;
	right: 0;
	overflow-y: scroll;
	width: 200px;
	height: 70vh;
}

.twitter_label img {
	display: flex;
	align-items: center;
	width: 60%;
	height: 60%;
	margin: auto;
}

.twitter_label {
	position: fixed;
	z-index: 1;
	top: 100px;
	right: 0;
	display: flex;
	width: 50px;
	height: 50px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #000;
	box-shadow: #0077ff 0px 0px 5px;
}


/****************************************
footer
*****************************************/

/* More info */
.copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 5vh;
	margin: auto;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #000;
	font-weight: lighter;
}

.footer_banner {
	margin-bottom: 0px;
	padding-top: 60px;
	padding-bottom: 60PX;
	background-color: #006699;
	background-repeat: repeat;
}

.hidden {
	display: none;
}

/*scroll_buttom*/
.demo a {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	display: inline-block;
	transition: opacity .3s;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
	letter-spacing: .1em;
	color: #000;
	font: normal 400 20px/1 'Josefin Sans', sans-serif;
}

.demo a:hover {
	opacity: .5;
}

#section01 a {
	padding-top: 60px;
}

#section01 a span {
	position: absolute;
	top: 0;
	left: 50%;
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
}

/*topに戻るボタン*/
.pagetop {
	position: fixed;
	right: 1vw;
	bottom: 2vh;
	width: 40px;
	height: 40px;
	opacity: 0.6;
	background: #fff;
}

.pagetop a {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	margin: 15px 0 0 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	text-decoration: none;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
}

/*ボタンリンク無効*/
.no_link {
	pointer-events: none;
}

/****************************************
tablet_1280
*****************************************/
@media screen and (max-width:1280px) {

	.site-logo a {
		font-size: 1em;
	}

	.site-logo {
		margin-top: 0;
	}

	.gnav__menu__item__link {
		font-size: .8em;
	}

	.logo_item {
		display: inline-block;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.logo_item1 {
		height: 200px;
		margin: 0;
		padding-right: 100px;
	}

	.logo_item2 {
		height: 198px;
		margin: 0;
		padding-left: 100px;
	}

	.logo_item img {
		display: inline-block;
		margin-bottom: 30px;
		vertical-align: top;
	}

	.index__menu {
		width: 100%;
		margin: 0;
		padding: 20px 0;
		text-align: center;
		border-top: 1px solid;
		border-bottom: 1px solid;
		border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
		border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
		border-image-slice: 1;
		border-image-slice: 1;
	}

	.index__menu__item {
		margin: 0 20px;
	}

	.index__menu__item__link {
		letter-spacing: 0.2em;
		font-size: 1em;
	}

	.contents_caption_txt {
		font-size: 1.2em;
	}

	.contents_caption_txt2 {
		font-size: 1em;
	}
}

/****************************************
tablet max-width:854px
*****************************************/
@media screen and (max-width:854px) {
	.main_section_wrap {
		padding: 0;
	}

	#dealer .main_section_wrap {
		padding: 0;
	}

	.txt1 {
		font-size: 1.5em;
	}

	.txt2 {
		font-size: 1em;
	}

	.login {
		display: none;
	}

	.login2 {
		display: flex;
	}

	.main_section_txt {
		padding: 2% 5%;
	}

	.main_section_txt_border_top1 {
		padding: 2% 5%;
	}

	ul.main_sec3_list {
		width: 90%;
	}

	ul.main_sec3_list2 {
		width: 90%;
	}

	.reg_btn {
		width: 70%;
		margin: 0 auto;
	}

	ul.main_sec2_list {
		flex-basis: 100%;
		padding-right: 0;
	}

	ul.main_sec2_list li.style1 {
		font-size: 1em;
	}

	ul.main_sec2_list li.style2 {
		font-size: 1em;
	}

	ul.main_sec2_list_img {
		flex-basis: 100%;
	}

	.tiket_wrap {
		width: 90%;
	}

	.main_sec3_registration_title {
		flex-basis: 90%;
		font-size: 1.5em;
	}

	.main_sec3_registration_txt {
		font-size: 1em;
	}

	.registration_btn_area span {
		font-size: 1.5em;
	}

	.registration_btn {
		font-size: 1.2em;
	}

	.img_area4 {
		width: 90%;
	}

	.main_section_item ul.column_left {
		flex-basis: 100%;
		margin: 0;
	}

	.main_section_item ul.column_right {
		flex-basis: 100%;
		margin: 0;
	}

	.main_section2 ul.column_left {
		flex-basis: 100%;
		margin: 0 2%;
	}

	.main_section2 ul.column_right {
		flex-basis: 100%;
		margin: 0 2%;
	}

	.dealer_dl_section_title {
		font-size: 1.2em;
	}

	.main_section_item_dealer li {
		font-size: 1em;
	}

	.main_section_item_dealer li.list_title_dealer {
		font-size: 1em;
	}

	ul.dealer_dl_section_list li {
		flex-basis: 90%;
	}

	.contents_caption_txt {
		font-size: 1em;
	}

	.contents_caption_txt2 {
		font-size: .9em;
	}

	.contents_caption_txt:before,
	.contents_caption_txt2:before {
		content: none;
		margin-left: 0;
	}

	.main_section_item_dealer ul.column_left_dealer {
		flex-basis: 100%;
		margin: 0 2% 1% 2%;
	}

	.main_section_item_dealer ul.column_right_dealer {
		flex-basis: 100%;
		margin: 0 2%;
	}

	dl.contens_dl {
		margin: 5% 5% 0 5%;
	}

	dl.contens_dl dt {
		border-left: 5px solid rgb(0, 100, 200);
		font-size: 100%;
	}

	dl.contens_dl2 {
		margin: 5% 5% 0 5%;
	}

	dl.contens_dl2 dt.caption {
		flex-basis: 100%;
		margin: -6% auto 2% auto;
		text-align: center;
	}

	dl.contens_dl2 dd.list {
		flex-basis: 95%;
	}

	ul.column_dealer_main {
		flex-basis: 90%;
		margin: 5%;
	}

	ul.column_dealer_left {
		flex-basis: 95%;
		margin-left: 5%;
	}

	ul.column_dealer_right {
		flex-basis: 60%;
		margin: 10% auto 0 auto;
	}

	.expiration_date_title {
		font-size: 120%;
	}
}

/****************************************
mobile max-width:480px
*****************************************/
@media screen and (max-width : 480px) {
	.main_section_wrap {
		background: none
	}

	/*PC用の背景はオフ*/
	body#index::before {
		content: "";
		position: fixed;
		z-index: -1;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100vh;
		background: url(../img/smo_main_sec1_bg.jpg) center/cover no-repeat;
		/*fixedをトル！*/
		-webkit-background-size: cover;
		/*Android4*/
		background-size: cover;
	}

	#dealer .main_section_wrap {
		background: none
	}

	/*PC用の背景はオフ*/
	body#dealer::before {
		content: "";
		position: fixed;
		z-index: -1;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100vh;
		background: url(../img/tfo_dealer_main_sec1_bg.jpg) center/cover no-repeat;
		/*fixedをトル！*/
		-webkit-background-size: cover;
		/*Android4*/
		background-size: cover;
	}

	.logo_item {
		display: inline-block;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.logo_item1 {
		width: auto;
		height: 120px;
		padding-right: 3em;
	}

	.logo_item2 {
		width: auto;
		height: 118px;
		padding: 0;
	}

	.logo_item img {
		display: inline-block;
		margin: 50px 0;
		vertical-align: top;
	}

	.index__menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 20px 0;
		padding: 20px 0;
		text-align: center;
		border-top: 1px solid;
		border-bottom: 1px solid;
		border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
		border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
		border-image-slice: 1;
		border-image-slice: 1;
	}

	.index__menu__item {
		margin: 20px 0;
	}

	.index__menu__item__link {
		letter-spacing: 0.2em;
		font-size: 16px;
	}

	.gate_section {
		width: 90%;
	}

	.dealer_btn {
		flex-basis: 92%;
		margin: 2%;
		padding: 2%;
		border-radius: 20px;
	}

	.reg_btn {
		width: 90%;
		margin: 0 auto;
	}

	.reg_btn img {
		display: flex;
		width: 80%;
		height: auto;
		margin: 5% auto;
	}

	.txt1 {
		font-size: 1em;
	}

	.txt2 {
		font-size: 1em;
	}

	.txt3 {
		font-size: 1em;
	}

	.text_midashi1 {
		display: flex;
		flex-direction: column;
		font-size: 80%;
	}

	.pt3_icon1 {
		width: 90%;
		margin: auto;
	}

	.pt3_icon1:before {
		background-image: none;
	}

	.pt3_icon2 {
		width: 90%;
		margin: auto;
	}

	.pt3_icon2:before {
		background-image: none;
	}

	.pt3_icon3 {
		width: 90%;
		margin: auto;
	}

	.pt3_icon3:before {
		background-image: none;
	}

	.img_area2 {
		width: 90%;
		margin: 0 auto;
	}

	.img_area3 {
		width: 90%;
		margin: 0 auto;
	}

	div.main_sec3_list2_wrap {
		width: 90%;
	}

	ul.main_sec3_list2 {
		flex-basis: 100%;
	}

	ul.main_sec3_list2_img {
		align-self: center;
		flex-basis: 90%;
		margin: 2% auto;
		padding-right: 0;
		text-align: center;
	}

	ul.main_sec3_list2_img img {
		width: 100%;
		height: auto;
		border-radius: 5px;
	}

	.ticket_title {
		width: 90%;
		margin: 2% auto;
	}

	.main_sec3_registration_title {
		flex-basis: 90%;
		font-size: 1em;
	}

	.main_sec3_registration_txt {
		font-size: .8em;
	}

	.registration_btn_area span {
		flex-basis: 100%;
		justify-content: center;
		font-size: 1em;
	}

	.registration_btn_area span.arrow {
		display: none;
	}

	.registration_btn_area a {
		display: flex;
		flex-basis: 100%;
		margin: 2% auto;
	}

	.registration_btn {
		padding: 3% 0;
		font-size: 1em;
	}

	ul.main_sec2_list li.style1 {
		font-size: 1em;
	}

	ul.main_sec2_list li.style2 {
		font-size: 1em;
	}

	dl.main_sec3_list dt,
	dl.main_sec3_list dd {
		font-size: 1em;
	}

	.copyright {
		font-size: .7em;
	}

	.arrow1 img {
		width: 50%;
	}

	.count1,
	.count2,
	.count3,
	.count4,
	.count5,
	.count6,
	.count7,
	.count8,
	.count9 {
		padding-left: 1.5em;
	}

	dl.main_sec3_list dd {
		padding-left: 1.5em;
	}

	div.dealer_update_btn a {
		font-size: 100%;
	}

	/**早見表**/
	ul.list_table {
		width: 100%;
		margin: auto;
		background: #fff;
	}

	h2.list_table_title {
		margin-top: 20%;
		padding: 5% 0;
		text-align: center;
		background: #fff;
		font-size: 100%;
	}
}

/*規約*/
.kiyaku_content {
	width: 80%;
	margin: 5% 10%;
}

.kiyaku_title {
	margin-top: 5%;
	font-size: 110%;
	font-weight: 600;
}

/*footer_navi*/
section.footer_navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	margin: 0 auto;
	padding: 10px 15%;
	border-top: rgba(0, 0, 100, .8) 3px solid;
	border-bottom: rgba(0, 0, 100, .8) 3px solid;
	background-image: url(../img/title_main_bg.jpg);
	background-repeat: none;
	background-size: cover;
}

@media screen and (max-width:768px) {
	section.footer_navi {
		padding: 0;
	}
}

section.footer_navi dl.footer_navi_list {
	align-self: flex-start;
	flex-basis: 33%;
	max-width: 33%;
	height: 100%;
	margin: 0 auto;
	padding: 10px;
	background-color: rgba(0, 0, 50, 0.8);
}

@media screen and (max-width:768px) {
	section.footer_navi dl.footer_navi_list {
		height: auto;
	}
}

@media screen and (max-width:480px) {
	section.footer_navi dl.footer_navi_list {
		flex-basis: 100%;
		max-width: 100%;
		height: auto;
	}
}

section.footer_navi dl.footer_navi_list dt,
section.footer_navi dl.footer_navi_list dd {
	letter-spacing: .3em;
	color: white;
	text-shadow: 2px 2px 1px #000066;
	font-size: 14px;
	line-height: 36px;
}

@media screen and (max-width:768px) {

	section.footer_navi dl.footer_navi_list dt,
	section.footer_navi dl.footer_navi_list dd {
		letter-spacing: 0em;
	}
}

section.footer_navi dl.footer_navi_list dt {
	position: relative;
	padding-left: 18px;
}

section.footer_navi dl.footer_navi_list dd {
	position: relative;
	margin-left: 18px;
	padding-left: 18px;
}

@media screen and (max-width:768px) {
	section.footer_navi dl.footer_navi_list dd {
		margin-left: 0px;
	}
}

section.footer_navi dl.footer_navi_list dt::before {
	content: "■";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

section.footer_navi dl.footer_navi_list dd::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

dl.footer_navi_list dd a {
	color: white;
}

dl.footer_navi_list dd a:hover {
	color: yellow;
}