@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;
  font-size: 100%;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", 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-collapse: collapse;
  border-spacing: 0;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 0;
  appearance: auto;
  border: none;
  box-sizing: content-box;
  box-sizing: border-box;
  cursor: pointer;
  line-height:normal;
}

/******************************************
normarise
******************************************/
* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  opacity: 0.8;
}

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

.clearfix {
  display: inline-table;
}

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

.clearfix {
  display: block;
}

/* End hide from IE-mac */

/****************************************
Layout
*****************************************/

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

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

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

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

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

.flex--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;
  background: rgb(0 0 0 / 80%);
  min-height: 100%;
  min-width: 100%;
}

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

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

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

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

/****************************************
header
*****************************************/
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  display: flex;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  background-image: url("../img/header_bg.png");
  background-size: cover;
  transition: 0.5s;
}

@media screen and (width <=480px) {
  .site-header {
    height: 56px;
  }
}

.scroll.hide {
  transform: translateY(-70px);
}

@media screen and (width <=480px) {
  .scroll.hide {
    transform: translateY(-56px);
  }
}

.site-logo {
  align-self: center;
  margin: auto 0;
}

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

.site-logo img {
  width: auto;
  height: 55px;
  margin: 5px 0;
}

@media screen and (width <= 1024px) {
  .site-logo img {
    width: 80%;
    height: auto;
  }
}

@media screen and (width <= 768px) {
  .site-logo img {
    width: 150px;
  }
}

.gnav {
  align-self: center;
  margin: auto 0;
}

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

.gnav__menu__item {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  margin-left: 20px;

  /* 1em */
}

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

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

.mnav__menu {
  overflow: hidden;
}

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

.mnav__menu__tittle {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #fff;
  background: linear-gradient(90deg, #f60, #d21626);
}

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

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

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

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

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

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

.hero {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 70px auto 5%;
  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 {
  font-size: 13px;
  color: #fff !important;
  border-top: 2px solid #fff;
  padding-top: 2px;
  text-shadow: #000 2px 2px 2px;
}

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

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

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

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

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

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

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

@media screen and (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;
    font-size: 14px;
    background-color: rgb(50 50 150 / 50%);
  }
}

.login2 {
  display: none;
}

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

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

.index__menu__item {
  margin-left: 50px;
}

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

@media screen and (width <= 854px) {
  .login {
    display: none;
  }

  .login2 {
    display: flex;
  }

  .menu_btn {
    display: none;
  }
}

/****************************************
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;
  background: linear-gradient(0deg, rgb(0 0 100 / 90%), rgb(20 0 10 / 90%));
  box-shadow: 0 0 8px #003;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

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

.main_section_title span {
  display: block;
}

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

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

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

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

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

@media screen and (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 (width <=1300px) {
  p.point2 {
    height: auto;
    line-height: 1.5em;
  }
}

@media screen and (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 (width <=480px) {
  .main_section_title span.title_main {
    padding: 10px;
  }

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

  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 0;
}

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-position: bottom right;
  background-repeat: no-repeat;
  background-size: 250px;
}

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

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

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

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

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

@media screen and (width <=768px) {
  span.point_line1,
  span.point_line2 {
    margin-left: 90px;
  }

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

@media screen and (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%;
  background: rgb(255 255 255 / 90%);
  border-radius: 10px;
}

@media screen and (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 {
  font-size: 1.2em;
  color: #036;
  padding-left: -5%;
  padding-top: 2%;
}

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

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

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

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 {
  font-size: 0.8em;
  color: #555;
  line-height: 1em;
  font-weight: normal;
  padding-left: 2%;
}

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

.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: #ff6;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (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;
  font-size: 30px;
  color: rgb(0 50 150);
  background: url("../img/smo_visitor_btn.jpg");
  border-radius: 25px;
  box-shadow: rgb(0 0 0 / 50%) 2px 2px 2px;
  background-position: center;
  background-size: cover;
  border: #fff solid 5px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

@media screen and (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;
  font-size: 30px;
  color: #ff9;
  background: url("../img/smo_dealer_btn.jpg");
  border-radius: 25px;
  box-shadow: rgb(0 0 0 / 50%) 2px 2px 2px;
  background-blend-mode: overlay;
  background-color: rgb(250 7 209 / 30%);
  background-position: center;
  background-size: cover;
  border: #fff solid 5px;
  font-weight: 700;
  text-shadow: 1.5px 1.5px 0 rgb(50 50 150 / 90%), -1.5px 1.5px 0 rgb(50 50 150 / 90%), 1.5px -1.5px 0 rgb(50 50 150 / 90%), -1.5px -1.5px 0 rgb(50 50 150 / 90%);
}

@media screen and (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%;
  background: rgb(255 255 255 / 90%);
  border-radius: 10px;
}

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

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

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

.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;
  font-size: 1.3em;
  background: rgb(255 255 255 / 80%);
  text-align: center;
  line-height: 2em;
  font-weight: normal;
  list-style: none;
}

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

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

.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;
  font-size: 8px;
  color: #fff;
  background: #555;
  border-radius: 4px;
}

.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: #a03;
}

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

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

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

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

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

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%;
  background: url("../img/dealer_dl_section_list_bg_hover.jpg") top center;
  border-radius: 15px;
  box-shadow: 2px 2px 2px #333;
  text-align: center;
  background-size: 100%;
  transition: box-shadow 0.1s, transform 0.1s;
}

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

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

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

.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;
  font-size: 1.8em;
  color: #ff6;
  font-weight: 600;
  text-shadow: 3px 3px 3px #036;
}

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

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

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

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

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

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

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

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

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

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

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%;
  padding: 3% 0;
  font-size: 180%;
  color: white;
  background: linear-gradient(to top, #f00, #e60);
  border-radius: 10px;
  box-shadow: 2px 2px 2px #333;
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 2px #000;
}

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

/* 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%;
  padding: 1% 0;
  font-size: 150%;
  text-align: center;
  line-height: 2em;
  border: 3px double #f63;
  font-weight: 600;
  margin-top: 5%;
}

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

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

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

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

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

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

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

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

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

.dd_info_box2 {
  margin: 2% auto 0;
  padding: 2%;
  background: lightyellow;
  border-radius: 15px;
  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;
  font-size: 150%;
  color: white !important;
  background: orangered;
  border-radius: 15px;
  box-shadow: 2px 2px 2px #ccc;
  text-align: center;
  font-weight: 600;
}

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

@media screen and (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-left: 0.5px solid #ccc;
  border-top: 0.5px solid #ccc;
}

ul.list_table_fixed {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1050px;
  margin: 0 auto;
  border-left: 0.5px solid #ccc;
  border-top: 0.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-bottom: 0.5px solid #ccc;
  border-right: 0.5px solid #ccc;
}

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

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

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

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

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

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

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

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

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

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%;
  font-size: 120%;
  text-align: center;
  border: 3px solid #fca;
}

div.keyword_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 1050px;
  margin: 0 auto 20px;
  border-radius: 5px;
  border: 1px solid #0080ff;
}

@media screen and (width <=1050px) {
  div.keyword_list {
    width: 100%;
  }
}

div.keyword_list a {
  padding: 5px 10px;
  font-size: 0.8em;
  color: #fff !important;
  background: #0080ff;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 10px;
}

div.keyword_list a:first-child {
  margin-left: 0;
}

@media screen and (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;
  font-size: 1.2em;
  color: #fff;
  background: #0080ff;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* DIP_クラス表 */
#DIP_class_table {
  width: 1050px;
  font-size: 1em;
}

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

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 {
  font-size: 12px;
  border-bottom: 0.5px solid #ccc;
  border-left: 0.5px solid #ccc;
}

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

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

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

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

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

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

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

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

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

#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;
  letter-spacing: 0.3em;
  vertical-align: middle;
}

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

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

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

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

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

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

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

@media screen and (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;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
  }

  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;
  background: rgb(255 255 255);
  border-radius: 10px;
  box-shadow: 0 0 8px #003;
  border: 8px solid rgb(0 0 50 / 80%);
}

.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%;
  font-size: 1em;
  line-height: 2em;
  font-weight: normal;
  text-indent: 1.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%;
  background: linear-gradient(0deg, rgb(240 240 240), rgb(255 255 255));
  border-radius: 5px;
  box-shadow: 2px 2px 2px #333;
  border: 1px solid #ccc;
}

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

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

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

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;
  font-size: 1em;
  color: #c00;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  letter-spacing: 0;
  list-style: none;
  padding-left: 1em;
}

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 {
  flex-basis: 35%;
  align-self: center;
  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-position: right bottom;
  background-repeat: no-repeat;
  background-size: 150px;
}

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

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

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

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

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

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

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%;
  font-size: 1em;
  line-height: 2em;
  font-weight: normal;
  text-indent: 1em;
}

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;
  font-size: 13px;
  color: #666;
  line-height: 26px;
  padding-left: 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;
  background: linear-gradient(0deg, rgb(240 240 240), rgb(255 255 255));
  border-radius: 5px;
  border: 1px solid #ccc;
}

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;
  font-size: 1em;
  color: #069;
  line-height: 1.5;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  letter-spacing: 0.5em;
}

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

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%;
  background: linear-gradient(0deg, rgb(240 240 240), rgb(255 255 255));
  border-radius: 5px;
  border: 1px solid #ccc;
  counter-reset: my-counter;
  list-style: none;
}

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

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;
  color: #333;
  line-height: 1.5;
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  letter-spacing: 0.5em;
  padding-bottom: 1%;
}

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

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

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

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

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;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  vertical-align: top;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (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%;
  padding: 0 0 0 16px;
  font-size: 15px;
  color: #000;
  max-width: 5%;
  text-decoration: none;
  vertical-align: middle;
}

.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;
  width: 15px;
  height: 15px;
  border: 15px solid transparent;
  border-left: 15px solid #f00;
  box-sizing: border-box;
}

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

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

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

.registration_btn:hover {
  -ms-background: #fff;
  background: linear-gradient(#f66, #c00);
}

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

  .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%;
  margin: 5% auto 0;
  padding: 0;
  min-height: 0%;
}

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

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

.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;
  background-image: url("../img/pt3_icon1.jpg");
  background-size: contain;
  vertical-align: top;
}

.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;
  background-image: url("../img/pt3_icon2.jpg");
  background-size: contain;
  vertical-align: top;
}

.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;
  background-image: url("../img/pt3_icon3.jpg");
  background-size: contain;
  vertical-align: top;
}

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

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

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

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

@media screen and (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%;
  -ms-background: #fff;
  background: linear-gradient(0deg, rgb(240 240 240), rgb(255 255 255));
  border-radius: 5px;
  border: 1px solid #ccc;
}

.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-radius: 5px;
  box-shadow: 2px 2px 2px #666;
  border: 1px solid #ccc;
}

.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%;
  height: auto;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #666;
  border: 1px solid #555;
  max-width: 49%;
}

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

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

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

.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;
}

.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;
  box-shadow: none;
  border: none;
  max-width: 45%;
}

.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: #f00;
}

.blue {
  color: #069;
}

.darkblue {
  color: #006;
}

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

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

/*** 　文字サイズ調整％　共通　                   ***/
.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;
  font-size: 1em;
  padding-left: 1.5em;
}

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

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

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

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

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

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

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

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

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

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

/* 長針 */
.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;
  padding: 10px;
  color: #fff;
  background: dodgerblue;
  text-align: center;
  margin-bottom: 1px;
}

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

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

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

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

@media screen and (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;
  font-size: 80%;
}

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

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

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

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

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

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

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

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

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

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%;
  font-size: 12px;
  color: red;
  padding-left: 14px;
}

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%;
  font-size: 13px;
  color: red;
}

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

.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 {
  font-size: 120%;
  color: dodgerblue;
  text-align: center;
  font-weight: 600;
  margin-top: 5%;
}

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

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

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

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

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

.dip_app_select_item {
  font-weight: 600;
}

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

.dip_app_hr {
  margin-bottom: 5%;
}

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

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

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

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;
  background: #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

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

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
*****************************************/

.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: auto;
  padding: 40px 0;
  background: url("../img/header_bg.png") no-repeat center top;
  background-size: cover;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.copyright p {
  align-self: center;
  font-size: 0.875rem;
}

@media screen and (width <= 480px) {
  .copyright p {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.copyright ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.copyright ul li a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 2px #333;
}

@media screen and (width <= 480px) {
  .copyright ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .copyright ul li {
    position: relative;
    flex-basis: calc((100% - 10px) / 2);
    padding-left: 1.75rem;
  }

  .copyright ul li::before {
    content: "■";
    position: absolute;
    left: 5px;
    display: block;
  }

  .copyright ul li a {
    font-size: 0.75rem;
  }
}

.copyright ul li a:hover {
  color: #ff9;
  opacity: 1;
}

.hidden {
  display: none;
}

/* topに戻るボタン */
.pagetop {
  position: fixed;
  z-index: 1;
  bottom: 5vh;
  left: 5vw;
  width: 50px;
  height: 50px;
  background: linear-gradient(0deg, #f60, #d21626);

  /* opacity: 0.6; */
  border-radius: 50%;
}

@media screen and (width <=480px) {
  .pagetop {
    bottom: 1%;
    left: 1%;
  }
}

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

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

/****************************************
tablet_1280
*****************************************/
@media screen and (width <=1280px) {
  .site-logo a {
    font-size: 1em;
  }

  .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-bottom: 1px solid;
    border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
    border-image-slice: 1;
    border-top: 1px solid;
  }

  .index__menu__item {
    margin: 0 20px;
  }

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

  .contents_caption_txt {
    font-size: 1.2em;
  }

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

/****************************************
tablet max-width:854px
*****************************************/
@media screen and (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: 0.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%;
  }

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

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

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

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

  dl.contens_dl2 dt.caption {
    flex-basis: 100%;
    margin: -6% auto 2%;
    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;
  }

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

/****************************************
mobile max-width:480px
*****************************************/
@media screen and (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-bottom: 1px solid;
    border-image: linear-gradient(to right, #000 20%, #fff 50%, #000 80%);
    border-image-slice: 1;
    border-top: 1px solid;
  }

  .index__menu__item {
    margin: 20px 0;
  }

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

  .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 {
    flex-basis: 90%;
    align-self: center;
    margin: 2% auto;
    text-align: center;
    padding-right: 0;
  }

  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: 0.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: 0.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 {
    padding: 5% 0;
    font-size: 100%;
    background: #fff;
    text-align: center;
    margin-top: 20%;
  }
}

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

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

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

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

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

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

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

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

@media screen and (width <=768px) {
  section.footer_navi dl.footer_navi_list dt,
  section.footer_navi dl.footer_navi_list dd {
    letter-spacing: 0;
  }
}

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 (width <=768px) {
  section.footer_navi dl.footer_navi_list dd {
    margin-left: 0;
  }
}

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;
}
