@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;
  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 {
  /* line-height: 2em; */
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;

  /* letter-spacing: 0.2em; */
}

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

/******************************************
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: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-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;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  overflow: hidden;
  transition: 0.5s;
}

@media screen and (width <= 930px) {
  .site-header {
    padding: 0 10px;
  }
}

@media screen and (width <= 480px) {
  .site-header {
    height: 50px;
    padding: 5px 10px 0;
  }
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #4061cf;
}

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

.site-logo {
  display: flex;
  margin: auto 0;
}

.site-logo a {
  display: flex;
  font-size: 1.5em;
}

.site-logo a:last-child {
  border-left: solid 2px #666;
  margin-left: 20px;
  padding-left: 20px;
}

.site-logo img {
  width: auto;
  height: 20px;
}

@media screen and (width <=1200px) {
  .site-logo img {
    height: 15px;
  }
}

@media screen and (width <=930px) {
  .site-logo a:last-child {
    margin-left: 10px;
    padding-left: 10px;
  }
}

@media screen and (width <=480px) {
  .site-logo a:last-child {
    border-left: solid 1px #666;
  }

  .site-logo img {
    height: 12px;
  }
}

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

ul.gnav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (width <=930px) {
  ul.gnav__menu {
    gap: 0.5rem;
  }
}

ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
  margin-left: 1.5rem;
}

@media screen and (width <=1200px) {
  ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
    margin-left: 1rem;
  }
}

@media screen and (width <=930px) {
  ul.gnav__menu li.__sp_none:nth-child(3n + 1) {
    margin-left: 0.5rem;
  }
}

.gnav__menu__item {
  display: flex;
  align-items: center;
}

@media screen and (width <=480px) {
  .gnav__menu__item.__sp_none {
    display: none;
  }
}

.gnav__menu__item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gnav__menu__item__link small {
  font-size: 0.625rem;
  color: #001764;
  line-height: 1;
  font-weight: bold;
}

@media screen and (width <=1200px) {
  .gnav__menu__item__link small {
    font-size: 0.5rem;
  }
}

.gnav__menu__item__link img {
  height: 18px;
  margin-bottom: 3px;
  object-fit: contain;
}

@media screen and (width <=1200px) {
  .gnav__menu__item__link img {
    height: 10px;
  }
}

.__login {
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #001764;
}

@media screen and (width <=1200px) {
  .__login {
    padding: 0 6px;
  }
}

.__login:hover {
  background: lightyellow;
}

.__u-login,
.__d-login {
  position: relative;
  font-size: 0.6875rem;
  line-height: 1;
  font-weight: bold;
  padding-right: 25px;
}

@media screen and (width <=1200px) {
  .__u-login,
  .__d-login {
    font-size: 0.5rem;
    padding-right: 15px;
  }
}

.__d-login small {
  display: block;
  font-size: 0.625rem;
  font-weight: bold;
}

@media screen and (width <=1200px) {
  .__d-login small {
    font-size: 0.5rem;
  }
}

.__u-login::after,
.__d-login::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  background: url('../img/icon-login-u.png') no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (width <=1200px) {
  .__u-login::after,
  .__d-login::after {
    width: 10px;
    height: 10px;
  }
}

.__d-login::after {
  background: url('../img/icon-login-d.png') no-repeat center center;
  background-size: contain;
}

.__signup {
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  font-size: 0.75rem;
  color: #fff;
  background: #4061cf;
  border-radius: 10px;
  border: 1px solid #001764;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

@media screen and (width <=1200px) {
  .__signup {
    padding: 0 6px;
    font-size: 0.5rem;
  }
}

.menu_btn {
  font-size: 0.875rem;
  color: #001764;
  font-weight: bold;
  padding-right: 0.5rem;
}

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

.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, #a60, #fc0);
}

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

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

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

.login2 {
  display: none;
}

@media screen and (width <=480px) {
.login2 {
  display: flex;
}
}

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

/****************************************
main_contents
*****************************************/
.hero {
  width: 100%;
}

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

/*** main_section1 ***/
.main_section_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 15%;
  background: url('../img/tfo_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: rgb(0 0 50 / 80%);
  box-shadow: 0 0 8px #003;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.main_section1-1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  background: rgb(0 0 50 / 90%);
  box-shadow: 0 0 8px #003;
}

.main_section1-2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  background: rgb(0 0 50 / 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: 3%;
  font-size: 2.5em;
  color: #ff6;
  background: linear-gradient(0deg, rgb(0 0 50), rgb(0 50 150));
  line-height: 1.5em;
  border-bottom: 3px solid #fd0;
  border-top: 3px solid #fd0;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000;
}

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

.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: 1em;
  line-height: 2em;
  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-direction: column; */
  gap: 10px;
  width: 95%;
  margin: 2.5% auto 0;
  padding: 10px;
  background: url('../images/pattern.png');
  border-radius: 15px;
}

@media screen and (width <= 480px) {
  .gate_section {
    flex-direction: column;
  }
}

.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 {
  display: flex;
  flex-direction: column;
  flex-basis: calc(100% / 2 - 7px);
  align-self: stretch;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 3px goldenrod solid;
  max-width: calc(100% / 2 - 7px);

  /* margin: auto;text-align: center; */
}

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

.-bg-gray {
  background: #151515;
}

.-bg-navy {
  background: #003;
}

.gate_item_header {
  display: flex;

  /* justify-content: space-between; */
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media screen and (width <= 480px) {
  .gate_item_header {
    flex-direction: column;
    gap: 10px;
  }
}

.gate_item_header picture {
  display: inline-flex;
}

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

.event_item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid goldenrod;
  padding-top: 10px;
}

.event_item_title {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  max-width: 100%;
}

.event_item_text {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  font-size: 0.75rem;
  color: #ff9;
  text-align: left;
  line-height: 1.5em;
  font-weight: 500;
  max-width: 100%;
  padding-left: 13px;
}

@media screen and (width <= 1024px) {
  .event_item_text {
    font-size: 0.7em;
  }
}

.event_item_col_l,
.event_item_col_r {
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(50% - 5px);
  justify-content: flex-start;
  max-width: calc(50% - 5px);
}

@media screen and (width <= 480px) {
  .event_item_col_l,
  .event_item_col_r {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.event_item_day {
  display: block;
  flex-basis: 100%;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1rem;
  max-width: 100%;
}

.event_item_ticket1 {
  display: block;
  flex-basis: 65%;
  font-size: 1.2em;
  text-align: left;
  max-width: 65%;
}

.event_item_ticket2 {
  display: block;
  flex-basis: 35%;
  font-size: 1.2em;
  text-align: left;
  max-width: 35%;
}

@media screen and (width <= 1024px) {
  .event_item_ticket1,
  .event_item_ticket2 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.note-bg-red {
  display: inline-block;
  flex-basis: 95%;
  margin: auto;
  padding: 5px 10px;
  font-size: 0.8em;
  color: #fff;
  background: #f00;
  border-radius: 5px;
  text-align: center;
  line-height: 1.2em;
  max-width: 95%;
}

@media screen and (width <= 1024px) {
  .note-bg-red {
    flex-basis: 100%;
    padding: 3px 6px;
    font-size: 0.8em;
    line-height: 1.5em;
    letter-spacing: 0;
    margin-top: 5px;
    max-width: 100%;
  }
}

.cap-bg-red {
  display: inline-block;
  padding: 3px 6px;
  font-size: 0.7em;
  color: #fff;
  background: #f00;
  border-radius: 5px;
  line-height: 1.1em;
}

@media screen and (width <= 1024px) {
  .cap-bg-red {
    font-size: 0.6em;
    line-height: 1em;
  }
}

.note_asterisk {
  position: relative;
  display: flex;
  flex-basis: 100%;
  font-size: 11px;
  color: #fff;
  line-height: 13px;
  padding-left: 14px;
}

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

@media screen and (width <= 1024px) {
  .note_asterisk {
    font-size: 0.6em;
    line-height: 1em;
  }
}

.event_item_btn {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(0deg, #07f 0%, #00c 25%, #0ce);
  border-radius: 50px;
  border: 2px goldenrod solid;
  font-family: monospace;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.event_item_btn:hover {
  transform: translateY(2px);
}

@media screen and (width <= 768px) {
  .event_item_btn {
    flex-direction: column;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    text-align: center;
    line-height: 2;
  }
}

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

#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%;
  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: 8px solid #b8860b;
}

.main_section_item_dealer ul.column_main_dealer {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: auto;
}

.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 {
  display: flex;
  flex-basis: 20%;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background: rgb(0 0 100 / 80%);
  border-bottom: 1px dotted #fff;
  min-height: 65px;
}

.main_section_item_dealer li.list_txt_dealer {
  flex-basis: 80%;
  padding: 10px;
  font-size: 18px;
  color: #006;
  border-bottom: 1px dotted rgb(0 0 100 / 80%);
}

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

.main_section_item_dealer li.list_txt_dealer span.txt-box {
  height: auto;
  padding: 2px 4px;
  font-size: 8px;
  color: #fff;
  background: #006;
  border-radius: 2px;
  letter-spacing: 0.1rem;
  vertical-align: text-bottom;
}

.main_section_item_dealer li.list_txt_dealer span.-is-weekdays {
  height: auto;
  margin-left: -5px;
  vertical-align: bottom;
}

.main_section_item_dealer li.list_txt_dealer span.-is-blue {
  height: auto;
  background: #00479d;
  margin-left: -5px;
  vertical-align: bottom;
}

.main_section_item_dealer li.list_txt_dealer span.-is-red {
  height: auto;
  background: #a03;
  margin-left: -5px;
  vertical-align: bottom;
}

.main_section_item_dealer li:first-child {
  border-top-left-radius: 10px;
}

.main_section_item_dealer li:nth-child(2) {
  border-top-right-radius: 10px;
}

.main_section_item_dealer li:nth-last-child(2) {
  border-bottom: none;
  border-bottom-left-radius: 10px;
}

.main_section_item_dealer li:last-child {
  border-bottom: none;
  border-bottom-right-radius: 10px;
}

@media screen and (width <= 480px) {
  .main_section_item_dealer li.list_title_dealer {
    flex-basis: 100%;
  }

  .main_section_item_dealer li.list_txt_dealer {
    flex-basis: 100%;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
  }

  .main_section_item_dealer li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .main_section_item_dealer li:nth-child(2) {
    border-top-right-radius: 0;
  }

  .main_section_item_dealer li:nth-last-child(2) {
    border-bottom: 1px dotted #fff;
    border-bottom-left-radius: 0;
  }

  .main_section_item_dealer li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

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

  .main_section_item_dealer li.list_txt_dealer span.txt-box {
    font-size: 0.625rem;
  }
}

.main_section_item_dealer li.list_txt_dealer div.item_center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
}

.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;
  color: #555;
  text-align: left;
  line-height: 1.2em;
  font-weight: normal;
  padding-bottom: 10px;
  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;
  gap: 2rem;
  width: 100%;
  padding: 0 5%;
  margin-bottom: 2rem;
}

@media screen and (width <= 1280px) {
  div.dealer_update_btn {
    flex-direction: column;
    gap: 1rem;
  }
}

div.dealer_update_btn_grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.25fr;
  width: 100%;
  margin: 0 5% 2rem;
  padding: 1rem;
  background: rgb(255 255 255 / 80%);
  border-radius: 10px;
}

@media screen and (width <= 768px) {
  div.dealer_update_btn_grid {
    grid-template-columns: 1fr 1.125fr;
  }
}

@media screen and (width <= 480px) {
  div.dealer_update_btn_grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
}

div.dealer_update_btn_grid span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #006;
  line-height: 1.5;
  font-family: sans-serif;
  font-weight: 500;
  padding-left: 1.75rem;
}

@media screen and (width <= 768px) {
  div.dealer_update_btn_grid span {
    font-size: 0.875rem;
  }
}

@media screen and (width <= 480px) {
  div.dealer_update_btn_grid span:not(:first-of-type) {
    margin-top: 1rem;
  }
}

div.dealer_update_btn_grid span::before {
  content: '\f138';
  position: absolute;
  left: 0;
  font-size: 1.125rem;
  font-family: 'font awesome 5 free';
  font-weight: 900;
}

div.dealer_update_btn_grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  font-size: 1rem;
  color: white;
  background: linear-gradient(to top, #f00, #e60);
  border-radius: 50px;
  box-shadow: 2px 2px 2px #333;
  font-family: sans-serif;
  font-weight: 600;
  text-shadow: 2px 2px 2px #000;
}

@media screen and (width <= 768px) {
  div.dealer_update_btn_grid a {
    font-size: 0.875rem;
  }
}

@media screen and (width <= 480px) {
  div.dealer_update_btn_grid a {
    padding: 0.625rem 0;
  }
}

div.dealer_update_btn_grid a.app {
  background: linear-gradient(to top, #366, #099);
}

div.dealer_update_btn_grid a.update {
  position: relative;
  background: linear-gradient(to top, #6c40eb, purple);
}

div.dealer_update_btn_grid a.update::before {
  content: 'NEW';
  position: absolute;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
  color: #ff0;
  background: rgb(50 0 100 / 100%);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-shadow: 2px 2px 2px #000;
}

@media screen and (width <= 480px) {
  div.dealer_update_btn_grid a.update::before {
    width: 35px;
    height: 35px;
    font-size: 0.75rem;
  }
}

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

/* event_app */
#event_app dl {
  display: flex;
  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-top: 20px;
  padding-bottom: 5px;
}

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

#event_app dd {
  padding: 0 10px;
  line-height: 2em;
  border: none;
  letter-spacing: 0;
  margin-top: 10px;
}

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

#event_app dd.dd1 {
  flex-basis: 20%;
  padding: 10px;
  color: #fff;
  background: #036;
  border-bottom: 1px dotted #fff;
  margin-top: 0;
}

#event_app dd.dd2 {
  flex-basis: 80%;
  padding: 10px;
  border-bottom: 1px dotted #036;
  margin-top: 0;
}

@media screen and (width <= 480px) {
  #event_app dd.dd1,
  #event_app dd.dd2 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

#event_app .dd_subtxt {
  position: relative;
  display: block;
  font-size: 14px;
  color: #666;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 16px;
}

#event_app .dd_subtxt::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

#event_app .dd_list-circle {
  position: relative;
  display: block;
  line-height: normal;
  letter-spacing: 0;
  padding-left: 18px;
}

#event_app .dd_list-circle::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

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

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

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: 10px 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: #f0f8ff;
  text-align: center;
}

ul.list_table li.cols1 {
  flex-basis: 99%;
  background: #87cefa;
  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%;
}

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

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

.notes {
  position: relative;
  display: block;
  width: 100%;
  margin: 5px auto 0;
  padding: 5px;
  font-size: 13px;
  color: #b00;
  background: #efefef;
  border-radius: 4px;
  line-height: 18px;
  border: 1px solid #fbb;
  padding-left: 18px;
}

.notes::before {
  content: '※';
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
}

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: 5% auto;
}

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

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

.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('../images/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;
}

.registration_btn_area span {
  display: flex;
  flex-basis: 38%;
  align-self: center;
  justify-content: flex-end;
  margin: 2% auto;
  font-size: 2em;
  color: #f00;
  font-weight: bold;
}

.registration_btn_area span.arrow {
  position: relative;
  display: inline-block;
  flex-basis: 2%;
  padding: 0 0 0 16px;
  font-size: 15px;
  color: #000;
  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: 0;
  width: 20px;
  height: 15px;
  border-left: 15px solid #f00;
}

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

.registration_btn {
  display: flex;
  flex-basis: 90%;
  justify-content: center;
  margin: auto;
  padding: 2% 1%;
  font-size: 1.5em;
  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);
}

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

/*** 　画像配置の指定　共通　                      ***/
.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: 80%;
  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;
}

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

@media screen and (width <= 480px) {
  .item_xscroll {
    display: block;
    width: 100%;
    height: auto;
    overflow-x: scroll;
  }

  .item_xscroll img {
    width: 1000px;
    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 !important;
}

.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: 10px 20px;
  font-size: 0.8125rem;
  color: white !important;
  background: dodgerblue;
  border-radius: 5px;
  border: 1px solid white;
  margin-left: 10px;
  margin-top: 20px;
}

.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;
  z-index: 1;
  top: 100px;
  right: 0;
  width: auto;
  height: 70vh;
  border-radius: 10px;
  overflow: auto;
}

@media screen and (width <= 1250px) {
  .twitter {
    width: 200px;
  }
}

.twitter::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.twitter::-webkit-scrollbar-track {
  background-color: rgb(0 0 0 / 50%);
}

.twitter::-webkit-scrollbar-thumb {
  background-color: #0080ff;
}

.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;
  background: #000;
  box-shadow: #07f 0 0 5px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

@media screen and (width <= 480px) {
  .twitter_label {
    top: 200px;
  }
}

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

.footer {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem;
  background: #fff;
}

@media screen and (width<=480px) {
  .footer {
    gap: 2rem;
  }
}

.footer img {
  align-self: center;
}

@media screen and (width<=480px) {
  .footer img {
    width: 70%;
  }
}

.footer-list {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  border-top: 2px solid #ccc;
  max-width: 1280px;
  padding-top: 2rem;
}

@media screen and (width<=480px) {
  .footer-list {
    gap: 0.75rem;
    padding-top: 1rem;
  }
}

.footer-list li {
  font-size: 1rem;
  border-left: 1px solid #ccc;
  padding-left: 2rem;
}

@media screen and (width<=480px) {
  .footer-list li {
    font-size: 0.75rem;
    padding-left: 0.75rem;
  }
}

.footer-list li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer p {
  align-self: center;
  color: #444;
  text-align: center;
}

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

.hidden {
  display: none;
}

/* topに戻るボタン */
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 2vh;
  width: 40px;
  height: 40px;
  background: linear-gradient(0deg, #f60 50%, #f40);
  border-radius: 50px;
}

.pagetop a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: 15px 0 0 10px;
  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) {
  .gnav__menu__item__link {
    font-size: 0.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-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;
  }

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

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

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

/* メッセージ受信通知メール欄 */
.msg_send_flg {
  display: inline-block;
  width: 100%;
  padding: 5px;
  font-size: 12px;
  color: red;
  background: #fffaf0;
  border-radius: 5px;
  line-height: 16px;
  border: 1px solid red;
}

/****************************************
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/tfo_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: 100%;
    background: none;
  }

  .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: 0.825rem;
  }

  /** 早見表 **/
  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: 0;
  }
}

/* 5th anniversary */
#event_app dl.campaign {
  display: flex;
  align-self: stretch;
  padding: 10px;
  background: #fff5f5;
  border: 1px solid #b00;
  margin-top: 10px;
}

#event_app dl.campaign dt {
  font-size: 16px;
  color: #b00;
  font-weight: bold;
}

#event_app dl.campaign dd {
  font-size: 14px;
}

#event_app dl.campaign dd h2 {
  border-bottom: 1px dotted #999;
  font-weight: bold;
  margin-bottom: 10px;
}

#event_app dl.campaign dd p {
  font-size: 15px;
}

dl.anniv_dl {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 20px;
}

dl.-is-border {
  align-self: stretch;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #777;
}

dl.-is-border dt,
dl.-is-border dd {
  text-align: center;
}

dl.anniv_dl dt {
  padding: 5px 0;
  font-size: 1rem;
  color: #eee;
  line-height: 1;
  border-bottom: 1px dotted #ccc;
  font-weight: 600;
  margin-top: 10px;
}

dl.anniv_dl dd {
  font-size: 12px;
  color: #ff9;
  line-height: 22px;
}

dl.anniv_dl dd span.txt-box,
dl.anniv_dl dd span.time-box {
  align-self: start;
  height: auto;
  padding: 2px 4px;
  font-size: 10px;
  color: #ff9;
  border-radius: 2px;
  border: 1px solid #995;
  letter-spacing: 0.1rem;
  vertical-align: bottom;
}

dl.anniv_dl dd span.-is-blue,
dl.anniv_dl dd span.-is-red,
dl.anniv_dl dd span.-is-weekdays {
  height: auto;
  color: #ff9;
  border: none;
  margin-left: -5px;
}

dl.anniv_dl dd span.-is-blue {
  background: #00479d;
}

dl.anniv_dl dd span.-is-red {
  background: #a03;
}

dl.anniv_dl dd span.-is-weekdays {
  background: #555;
}

dl.anniv_dl dd span.txt-bold {
  font-size: 23px;
  font-weight: bold;
}

ul.entrance_fee_wrap {
  display: flex;
  gap: 50px;
}

@media screen and (width <= 1110px) {
  ul.entrance_fee_wrap {
    /* flex-direction: column; */
    gap: 10px;
  }
}

ul.entrance_fee_wrap li {
  display: flex;
  flex-direction: column;
}
