@charset "UTF-8";

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

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

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
}

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

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

div.debug{
  display: none;
  width: 100%;
}
/******************************************
normarise
******************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

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

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

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

a:hover {
  opacity: 0.8;
}

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

.clearfix {
  display: inline-table;
}

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

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/****************************************
Layout
*****************************************/
/*flexbox*/
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

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

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

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

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

.col3 {
  width: 30%;
}

.col4 {
  width: 25%;
}

.col5 {
  width: 18.4%;
}

.col6 {
  width: 15%;
}

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

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

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

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

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

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

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

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

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

.gnav__menu__item {
  margin-left: 20px;
  color: #FFF;
  font-size: 16px;
}

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

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

.mnav__menu {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.hero {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: auto;
  margin: 70px auto 5% auto;
  padding: 20px;
  background-image: url(../img/index_hero_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width:1400px) {
  .hero_header img {
    width: 200px;
  }
}

@media screen and (max-width:480px) {
  .hero {
    position: relative;
    justify-content: flex-start;
    gap: 10px;
    height: 380px;/*540px;*/
    margin: 56px auto 5% auto;
  }

  .hero_header img {
    display: none;
  }
}

.hero_header {
  display: flex;
  align-self: stretch;
  justify-content: space-between;
}
@media screen and (max-width:480px) {
  .hero_header {
    order: 2;
    margin-bottom: 0px;
  }
}
.__dealer_banner {
  display: flex;
  align-self: flex-end;
  flex-basis: 450px;
  margin-bottom: 5px;
  padding: 10px;
  border-radius: 5px;
  background-color: #40e0d0;
  box-shadow: 2px 2px 4px #4b0082;
}
@media screen and (max-width:1400px) {
  .__dealer_banner {
    flex-basis: 350px;
    margin-bottom: -5px;
    padding: 5px;
  }
}
@media screen and (max-width:480px) {
  .__dealer_banner {
    margin: 0 auto;
  }
}
.__dealer_banner_inner {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid #5f9ea0;
  border-radius: 5px;
  background-color: #FFd;
}
@media screen and (max-width:1400px) {
  .__dealer_banner_inner {
    gap: 10px;
    padding: 5px;
  }
}
.__dealer_bnr_inr_ttl{
  color: #008b8b;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width:1400px) {
  .__dealer_bnr_inr_ttl{
    font-size: 1rem;
  }
}
.__dealer_bnr_inr_btn{
  display: flex;    align-items: center;
  justify-content: center;        padding: 5px 15px;
  color: #FFF;
  border-radius: 5px;
  background: linear-gradient(180deg, #008080, #2f4f4f);
  box-shadow: 0px 0px 2px #2f4f4f;
  font-size: .8725rem;
  font-weight: 600;
  }
.__dealer_bnr_inr_btn::after{
  content: "\f101";
    padding-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight:900;
}
@media screen and (max-width:1400px) {
  .__dealer_bnr_inr_btn{
    padding: 5px;
    font-size: .8125rem;
  }
}
.hero_menu {
  display: flex;
  justify-content: flex-end;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 480px) {
  .hero_menu {
    position: absolute;
    right: 0;
    bottom: 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;
    padding: 5px 20px;
    background-color: rgba(50, 50, 150, 0.5);
    font-size: 14px;
  }
}

div.hero_body {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  div.hero_body {
    margin-top: 30px;
  }
}
div.hero_text_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  div.hero_text_box {
    justify-content: center;
  }
}

ul.hero_col_left,
ul.hero_col_right {
  display: flex;
  flex:0 0 50%;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  ul.hero_col_left,
  ul.hero_col_right {
    flex:0 0 100%;
    gap: 10px;
  }
}
ul.hero_col_left li {
  margin: auto;
}

p.hero_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFEE;
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 500;
  line-height: clamp(20px, 3vw, 40px);
}
@media screen and (max-width:1400px){
  p.hero_title {
    font-size: clamp(20px, 3vw, 35px);
    line-height: clamp(20px, 3vw, 35px);
  }  
}
span.hero_title_small {
  font-size: clamp(11px, 1.7vw, 17px);
  font-weight: 500;
}
@media screen and (max-width:1400px){
  span.hero_title_small {
    font-size: clamp(11px, 1.3vw, 15px);
  }
}
p.hero_date {
  display: flex;
  align-items: flex-start; /*日程表示時はflex-endに変更*/
  gap: 5px;
  color: #FFFF99;
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(25px, 4vw, 50px);
  font-weight: 500;
  line-height: clamp(25px, 4vw, 50px);
}
@media screen and (max-width:1400px) {
  p.hero_date {
    font-size: clamp(25px, 3.5vw, 35px);
    line-height: clamp(25px, 3.5vw, 35px);
  }
}
@media screen and (max-width: 768px) {
  p.hero_date {
    align-items: center;
  }
}
span.hero_date_mid {
  font-size:1.75rem;
  font-weight: 500;
}
span.hero_date_small {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: clamp(16px, 1.5vw, 32px);
}

span.next_label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 42px;
  margin-right: 30px;
  padding: 10px;
  color: #FFFFEE;
  background: #BB0000;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  line-height: clamp(16px, 1.5vw, 20px);
}
@media screen and (max-width:1400px) {
  span.next_label {
    height: 30px;
    font-size: 16px;
  }
}
@media screen and (max-width:768px) {
  span.next_label {
    height: 20px;
    margin-right: 10px;
    padding: 3px;
    font-size: 12px;
  }
}

span.next_label::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 6px;
  right: -16px;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  background: #BB0000;
}
@media screen and (max-width:1400px) {
  span.next_label::after {
    top: 4px;
    right: -11px;
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width:768px) {
  span.next_label::after {
    top: 3px;
    right: -8px;
    width: 14px;
    height: 14px;
  }
}

ul.hero_col_right li {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width:480px) {
  ul.hero_col_right li {
    gap: 10px;
  }
}
p.hero_lead {
  color: #FFFF33;
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width:1400px) {
  p.hero_lead {
    font-size: clamp(16px, 2vw, 25px);
  }
}
p.hero_sub_lead {
  color: #ffffee;
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}
@media screen and (max-width:1400px) {
  p.hero_sub_lead {
    font-size: clamp(16px, 2vw, 23px);
  }
}

img.hero_img {
  max-width: 1200px;
  width: 100%;
}

div.mov_section {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  background: linear-gradient(180deg, #00000a 0%, rgba(0, 0, 50, 0) 100%);
}

h4.mov_sec_ttl {
  display: flex;
  justify-content: center;
}

h4.mov_sec_ttl img {
  max-width: fit-content;
  width: 100%;
}
.video-container {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比 */
}
.video-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: auto;
}
figure.mov_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

figure.mov_box img {
  max-width: 1000px;
  width: 100%;
}

figure.mov_box figcaption.caption {
  position: relative;
  padding-left: 18px;
  color: #fff;
  font-size: 13px;
}

figure.mov_box figcaption.caption::after {
  content: "※";
  position: absolute;
  left: 0;
}

.login2 {
  display: none;
}

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

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

.index__menu__item {
  margin-left: 50px;
}

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

nav.index_lp_nav {
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  display: flex;
  /*max-width:1400px;*/
  max-width: 1024px;
  justify-content: flex-end;
  width: 100%;
  margin: auto;
}
@media screen and (max-width:1400px) {
  nav.index_lp_nav {
    max-width: 900px;
  }
}
@media screen and (max-width:480px) {
  nav.index_lp_nav {
    top:56px;
    width: 100%;
  }
}
ul.index_lp_nav_list {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 20px 0 0;
  padding: 20px 20px 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgba(50, 50, 150, 0.5);
}
  @media screen and (max-width:768px) {
    ul.index_lp_nav_list {
      margin: 0;
      padding: 10px 20px;
    }
  }
  @media screen and (max-width:480px) {
    ul.index_lp_nav_list {
      justify-content: center;
      gap: 0;
      width: 100%;
      padding: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      background-color: rgba(50, 50, 150, 0.75);
    }
  }
ul.index_lp_nav_list li {
  display: flex;
  flex-basis: auto;
}
  @media screen and (max-width:480px) {
    ul.index_lp_nav_list li {
      display: flex;
      flex-basis: calc(100% / 5);
      border-left: 1px solid #5500aa;
    }
    ul.index_lp_nav_list li:first-child {
      border-left: none;
    }
  }
ul.index_lp_nav_list li a{
  display: flex;
  align-self: center;
  flex: 1 0 0;
  justify-content: center;
  padding: 5px 0;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border-top: 2px solid #fff;
  text-shadow: 2px 2px 2px #220055;
  font-size: 13px;
  line-height: 1.25;
}
  @media screen and (max-width:768px) {
    ul.index_lp_nav_list li a{
      font-size: 12px;
    }
  }
  @media screen and (max-width:480px) {
    ul.index_lp_nav_list li a{
      padding: 10px 0;
      border-top: none;
      font-size: 10px;
    }
  }
.__sp_br{
  display: none;
}
  @media screen and (max-width:480px) {
    .__sp_br{
      display: block;
    }
  }
/****************************************
main_contents
*****************************************/
#main {
  background: url("../img/smo_main_sec1_bg.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

/***main_section1***/
.main_section_wrap {
  display: flex;
  /*max-width:1400px;*/
  max-width: 1024px;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width:1400px) {
  .main_section_wrap {
    max-width: 900px;
  }
}
.main_section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 100, 0.9), rgba(20, 0, 10, 0.9));
  box-shadow: 0 0 8px #000033;
}

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

.main_section_title span {
  display: block;
}

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

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

.main_section_title span small {
  display: block;
  font-size: 26px;
}

@media screen and (max-width:480px) {
  .main_section_title span small {
    font-size: 16px;
  }
}

.sp_br {
  display: none;
}

@media screen and (max-width:480px) {
  .sp_br {
    display: block;
  }
}

.sp_none_br {
  display: block;
}

@media screen and (max-width:480px) {
  .sp_none_br {
    display: none;
  }
}

.main_section_item_title {
  width: 100%;
  margin-top: 80px;
  padding: 1rem 0;
  text-align: center;
  letter-spacing: 5px;
  color: #220055;
  border-radius: 75px;
  background: #F5F5FF;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width:1400px) {
  .main_section_item_title {
    font-size: 24px;
  }
}
@media screen and (max-width:480px) {
  .main_section_item_title {
    letter-spacing: 0;
    font-size: 18px;
  }
}

.main_section_item_title.-point4 {
  margin-top: 0;
  letter-spacing: unset;
  background: none;
  line-height: initial;
}

.main_section_item_subtitle {
  position: relative;
  width: 100%;
  margin: 50px 0 10px;
  padding: 0 0 5px 50px;
  color: #3C317B;
  border-bottom: 3px solid #C56AFF;
  background: url("../img/main_section_item_subtitle_icon.png") left 5px top 6px no-repeat;
  font-size: 30px;
}

.main_section_item_subtitle.-purchase {
  background: url("../img/main_section_item_subtitle_icon_purchase.png") left 5px top 6px no-repeat;
}

.main_section_item_subtitle.-exhibit {
  background: url("../img/main_section_item_subtitle_icon_exhibit.png") left 5px top 9px no-repeat;
}

@media screen and (max-width:480px) {
  .main_section_item_subtitle,
  .main_section_item_subtitle.-purchase,
  .main_section_item_subtitle.-exhibit {
    background-position-y: 0px;
    background-size: 26px;
    font-size: 18px;
  }
}

p.point1,
p.point2,
p.point3,
p.point4,
p.point5,
p.point6,
p.point7 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #ffff66;
  text-shadow: 3px 3px 0px #666;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width:1400px) {
  p.point1,
  p.point2,
  p.point3,
  p.point4,
  p.point5,
  p.point6,
  p.point7 {
    font-size: 1.75em;
  }
}
p.point2 {
  display: inline-block;
  width: 100%;
  height: 96px;
  line-height: 90px;
}

p.point3,
p.point4,
p.point5,
p.point7 {
  height: 96px;
  line-height: 90px;
}
@media screen and (max-width: 1500px) {
  p.point3 {
    height: auto;
  }
}

p.point1::before,
p.point2::before,
p.point3::before,
p.point4::before,
p.point5::before,
p.point6::before,
p.point7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 96px;
  height: 96px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:1400px) {
  p.point1::before,
  p.point2::before,
  p.point3::before,
  p.point4::before,
  p.point5::before,
  p.point6::before,
  p.point7::before {
    width: 80px;
    height: 80px;
  }
}
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);
}

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

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

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

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

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

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

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

  p.point3,
  p.point6 {
    width: 100%;
    line-height: normal;
  }

  p.point2,
  p.point4,
  p.point5,
  p.point7 {
    width: 100%;
    line-height: 50px;
  }

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

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

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

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

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

span.point_line1 {
  flex-basis: 100%;
  max-width: 100%;
}

span.point_line2 {
  flex-basis: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*list li 設定*/
li {
  list-style: none;
  color: #220055;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

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

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

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

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

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

div.gate_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 30px auto 0;
  background-image: url(../img/smo_event_bnr_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

h4.gate_sec_ttl {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  justify-content: center;
  gap: 50px;
  padding: 30px;
}

@media screen and (max-width:480px) {
  h4.gate_sec_ttl {
    flex-direction: column;
  }
}

@media screen and (max-width:1400px) {
  h4.gate_sec_ttl img {
    width: 200px;
  }
}

div.gate_sec_ttl_text {
  display: flex;
  flex-direction: column;
}

p.__gate_ttl {
  color: #ffff99;
  font-size: clamp(30px, 5vw, 50px);
  line-height: clamp(30px, 5vw, 50px);
}
@media screen and (max-width:480px) {
  p.__gate_ttl {
    font-size: 26px;
  }
}
span.__gate_ttl_small {
  color: #fff;
  font-size: clamp(11px, 2vw, 20px);
  line-height: clamp(11px, 2vw, 20px);
}

dl.gate_sec_date {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

dl.gate_sec_date dt,
h5.gate_cols_ttl {
  margin-left: -12px;
  color: #fff;
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
}

dl.gate_sec_date dd {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width:480px) {
  dl.gate_sec_date dd {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
}

dl.gate_sec_date dd span.gate_date_title,
dl.gate_sec_date dd span.gate_date_lead {
  text-shadow: #220055 4px 4px 4px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  line-height: clamp(20px, 3vw, 30px);
}
@media screen and (max-width:1400px) {
  dl.gate_sec_date dd span.gate_date_title,
  dl.gate_sec_date dd span.gate_date_lead {
    font-size: clamp(20px, 2.5vw, 25px);
    line-height: clamp(20px, 2.5vw, 25px);
  }
}
dl.gate_sec_date dd span.gate_date_title {
  flex-basis: 40%;
  color: #ffff99;
}
@media screen and (max-width:1400px) {
  dl.gate_sec_date dd span.gate_date_title {
    flex-basis: 35%;
  }
}
dl.gate_sec_date dd span.gate_date_lead {
  flex-basis: 60%;
  color: #fff;
}
@media screen and (max-width:1400px) {
  dl.gate_sec_date dd span.gate_date_lead {
    flex-basis: 65%;
  }
}
dl.gate_sec_date dd span.__text_small {
  font-size: clamp(14px, 2vw, 24px);
  line-height: clamp(25px, 2vw, 35px);
}

dl.gate_sec_date dd.gate_caution {
  flex-basis: 100%;
  justify-content: center;
  padding: 10px;
  color: #bb0000;
  border: 1px solid #bb0000;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  line-height: 1rem;
}
@media screen and (max-width:768px) {
  dl.gate_sec_date dd.gate_caution {
    font-size: .75rem;
  }
}
@media screen and (max-width:480px) {
  dl.gate_sec_date dd.gate_caution {
    position: relative;
    justify-content: flex-start;
    padding-left: 24px;
    font-size: 12px;
  }
}

dl.gate_sec_date dd.gate_caution::before {
  content: "※";
}

@media screen and (max-width:480px) {
  dl.gate_sec_date dd.gate_caution::before {
    position: absolute;
    left: 10px;
  }
}

dl.gate_sec_date dd span.__flex-basis-off {
  flex-basis: auto;
  padding-right: 20px;
}

div.gate_sec_date_2cols {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
}

@media screen and (max-width:480px) {
  div.gate_sec_date_2cols {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

div.gate_cols {
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  color: #fff;
  text-shadow: #220055 4px 4px 4px;
}

p.gate_cols_lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

@media screen and (max-width:480px) {
  p.gate_cols_lead {
    font-size: 16px;
    line-height: 16px;
  }
}

span.gate_cols_caution {
  position: relative;
  display: block;
  padding-left: 1.2rem;
  color: #ffff99;
  font-size: 1rem;
  line-height: 1.5;
}

span.gate_cols_caution::before {
  content: "※";
  position: absolute;
  left: 0;
}

ul.gate_cols_ul {
  display: flex;
  flex-direction: column;
}

ul.gate_cols_ul li {
  list-style: disc;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media screen and (max-width:480px) {
  ul.gate_cols_ul li {
    margin-left: 20px;
  }
}

.gate_item__btn_wrap {
  display: flex;
  flex-basis: 100%;
  max-width: 1050px;
  margin: 30px auto;
}

@media screen and (max-width:480px) {
  .gate_item__btn_wrap {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  background-blend-mode: overlay;
}

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

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

#event_app dl.dl1 {
  margin-top: -5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*DIP先行申し込みボタン*/
/**早見表**/
ul.list_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1050px;
  margin: 0 auto;
  border-top: .5px solid #ccc;
  border-left: .5px solid #ccc;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

div.feature_item {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  gap: 20px;
}

h3.feature_title,
h3.feature_title2 {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  color: #220055;
  border-bottom: #C56AFF solid 3px;
  font-size: 30px;
  font-weight: 500;
}

@media screen and (max-width:480px) {
  h3.feature_title,
  h3.feature_title2 {
    padding-left: 30px;
    font-size: 20px;
  }
}

h3.feature_title::before,
h3.feature_title2::before {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #220055;
  border-radius: 5px;
  font-size: 1rem;
}

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

  h3.feature_title::before,
  h3.feature_title2::before {
    width: 25px;
    height: 25px;
  }
}

h3.feature_title::before {
  content: "1";
}

h3.feature_title2::before {
  content: "2";
}

ul.feature_list,
ul.feature_list2 {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}
ul.feature_list{
  gap: 2px;
}
ul.feature_list2 {
  margin-bottom: 50px;
  background-color: transparent;
  background-image: url(../img/feature_footer_img.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 70%;
}

@media screen and (max-width:768px) {
  ul.feature_list2 {
    background-size: 480px;
  }
}

@media screen and (max-width:480px) {
  ul.feature_list2 {
    margin-bottom: 0px;
    padding: 0 0 20px;
    background-image: none;
  }
}

ul.feature_list li.f-circle {
  display: flex;
  align-items: center;
  align-self: center;
  flex-basis: 300px;
  flex-direction: column;
  gap: 15px;
  height: 300px;
  padding: 20px;
  border: 1px solid #e0e0ff;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5ff 100%);
}
@media screen and (max-width:1400px) {
  ul.feature_list li.f-circle {
    flex-basis: 250px;
    height: 250px;
    padding: 10px;
  }
}
ul.feature_list li.f-circle img.f-list-img {
  align-self: center;
  width: 50px;
}
@media screen and (max-width:1400px) {
  ul.feature_list li.f-circle img.f-list-img {
    width: 40px;
  }
}
ul.feature_list li.f-circle p.f-list-title,
ul.feature_list2 li p.f-list-title {
  color: #8B008B;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
}
@media screen and (max-width:1400px) {
  ul.feature_list li.f-circle p.f-list-title,
  ul.feature_list2 li p.f-list-title {
    font-size: 16px;
  }
}

ul.feature_list li.f-circle p.f-list-sub-title,
ul.feature_list2 li p.f-list-sub-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

@media screen and (max-width:1400px) {
  ul.feature_list li.f-circle p.f-list-sub-title,
  ul.feature_list2 li p.f-list-sub-title {
    font-size: 13px;
  }
}

ul.feature_list li.f-circle span.f-list-lead,
ul.feature_list2 li span.f-list-lead {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}
@media screen and (max-width:1400px) {
  ul.feature_list li.f-circle span.f-list-lead,
  ul.feature_list2 li span.f-list-lead {
    font-size: 13px;
  }
}
ul.feature_list li.sp-news {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid #220055;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5ff 100%);
}

ul.feature_list li.sp-news p.sp-news-lead {
  font-size: 1rem;
  line-height: 24px;
}

ul.feature_list2 li {
  display: flex;
  align-items: center;
  align-self: flex-start;
  flex-basis: calc(100% / 3 - 20px);
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width:1400px) {
  #f-list-5 img{
    width: 200px;
  }
}
@media screen and (max-width:480px) {
  ul.feature_list2 li {
    flex-basis: 100%;
  }

  #f-list-5 {
    display: none;
  }
}

@media screen and (max-width:768px) {
  ul.feature_list2 li img {
    width: 80px;
  }
}

ul.feature_list2 li:nth-child(n+4):nth-child(-n+6) {
  align-self: center;
}

ul.feature_list2 li span.f-list-caution {
  position: relative;
  display: flex;
  padding-top: 10px;
  padding-left: 15px;
  text-align: left;
  color: #8B008B;
  font-size: 13px;
  line-height: 1.75;
}

ul.feature_list2 li span.f-list-caution::before {
  content: "※";
  position: absolute;
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ul.main_sec3_list {
  width: 100%;
  margin: 2% 54px;
  padding: 1% 2%;
  list-style: none;
  border: 1px dotted #3C317B;
  border-radius: 5px;
  background: #F5F5FF;
}

@media screen and (max-width: 480px) {
  ul.main_sec3_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: auto;
    padding: 10px;
  }
}

ul.main_sec3_list li {
  position: relative;
  margin: 2% auto;
  letter-spacing: 0;
  color: #3C317B;
  font-size: 16px;
  line-height: 2;
}
ul.main_sec3_list li:not(:last-child) {
  border-bottom: 1px dotted #3C317B;
}

@media screen and (max-width: 768px) {
  ul.main_sec3_list li {
    margin: 0;
    font-size: 16px;
  }
}

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 54px;
  padding: 1% 0;
  text-indent: 1em;
  font-size: 1em;
  line-height: 1.75;
}

ul.main_sec3_subtext li.list_style_asterlisk {
  position: relative;
  padding-left: 1em;
  text-indent: initial;
  font-size: 16px;
  line-height: 1.333333;
}

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 54px;
  padding: 2% 0;
}

ul.main_sec3_subtext__caution li.list_style_caution {
  position: relative;
  padding-left: 1em;
  color: #8B008B;
  font-size: 16px;
  line-height: 1.333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  i.text_line {
    display: inline;
  }
}

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

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

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

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

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

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

  -ms-background: #fff;
}

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

  -ms-background: #fff;
}

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

  .registration_btn_area span.arrow {
    display: none;
  }

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

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

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

.main_sec3_footer img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.main_section_item_lead {
  width: 100%;
  margin: 20px 0 40px;
  color: #220055;
  font-size: 20px;
}

@media screen and (max-width:480px) {
  .main_section_item_lead {
    font-size: 16px;
  }
}

.main_section_item_text {
  position: relative;
  margin: 20px 0 40px;
  padding: 0 54px;
  color: #220055;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .main_section_item_text {
    padding: 0;
  }
}

.main_section_item_text.-point4 {
  width: 100%;
  margin: 20px auto;
}

.dip_movie {
  position: relative;
  overflow: hidden;
  width: 640px;
  height: 0;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比 */
  cursor: pointer;
  text-align: center;
}

.dip_movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 640px;
  width: 100%;
  height: 100%;
  margin: auto;
}

.dip_movie svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 50px;
  margin: -25px 0 0 -30px;
  cursor: pointer;
}

.movie {
  position: fixed;
  z-index: 20000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 800px;
  height: 450px;
  margin: auto;
  text-align: center;
}

.movie iframe {
  width: 800px;
  height: 450px;
}

.movie__overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

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

.negotiation_inner {
  width: 100%;
  margin: 0 auto;
  padding: 2% 5%;
}

.negotiation_inner:after {
  content: "";
  display: table;
  clear: both;
}

.negotiation_lead,
.negotiation_subbox {
  position: relative;
  float: right;
  width: 725px;
  margin-bottom: 50px;
  padding: 20px;
  color: #220055;
  border: 1px dotted #3C317B;
  border-radius: 10px;
  background: #F5F5FF;
  font-size: 16px;
}

@media screen and (max-width:1400px) {
  .negotiation_lead,
  .negotiation_subbox {
    max-width: 580px;
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .negotiation_lead,
  .negotiation_subbox {
    width: 480px;
    font-size: 18px;
  }
}
@media screen and (max-width:480px) {
  .negotiation_lead,
  .negotiation_subbox {
    width: 100%;
  }
}

.negotiation_lead:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -220px;
  width: 200px;
  height: 201px;
  background: url("../img/negotiation_lead_bg.png") left top no-repeat;
}

@media screen and (max-width:480px) {
  .negotiation_lead:before {
    display: none;
  }
}

.negotiation_lead em {
  font-weight: bold;
}

.negotiation_box {
  clear: both;
  margin-bottom: 40px;
  padding: 50px 50px 60px;
  color: #220055;
  border: 1px dotted #3C317B;
  border-radius: 10px;
  background: #F5F5FF;
}

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

.negotiation_box_inner {
  padding: 30px 20px 20px;
  border-radius: 10px;
  background: #FFF;
}

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

.negotiation_box_title {
  position: relative;
  margin-bottom: 40px;
  padding: 0 0 8px 70px;
  border-bottom: 1px dotted #3C317B;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  .negotiation_box_title {
    display: flex;
    align-items: center;
    min-height: 60px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.negotiation_box_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 51px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

.negotiation_box_title.-title1:before {
  background-image: url("../img/flag1.png");
}

.negotiation_box_title.-title2:before {
  background-image: url("../img/flag2.png");
}

.negotiation_box_text {
  font-size: 16px;
  line-height: 2;
}

.negotiation_box_text em {
  font-weight: bold;
}

.negotiation_box_img {
  margin: 20px 0;
  text-align: center;
}

.negotiation_box_notice {
  position: relative;
  display: block;
  padding-left: 1em;
  color: #8B008B;
  font-size: 14px;
  line-height: 1.7142;
}

.negotiation_box_notice:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.negotiation_subbox:first-of-type {
  margin-bottom: 30px;
}

.negotiation_subbox:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -220px;
  width: 200px;
  height: 201px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
}

.negotiation_subbox.-subbox1:before {
  background-image: url("../img/negotiation_subbox1_bg.png");
}

.negotiation_subbox.-subbox2:before {
  background-image: url("../img/negotiation_subbox2_bg.png");
}

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

  .negotiation_subbox.-subbox1:before,
  .negotiation_subbox.-subbox2:before {
    display: none;
  }
}

.negotiation_subbox_title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  .negotiation_subbox_title {
    font-size: 18px;
  }
}

.negotiation_subbox_text {
  font-size: 16px;
  line-height: 2;
}

.negotiation_subbox_text em {
  font-weight: bold;
}

.member {
  padding-bottom: 60px;
}

.member_box {
  margin-top: 40px;
}

.member_box_title {
  margin-bottom: 20px;
  text-align: center;
  color: #3C317B;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width:480px) {
  .member_box_title {
    font-size: 20px;
  }
}

.member_box_title span {
  position: relative;
}

.member_box_title span:before,
.member_box_title span:after {
  content: "";
  position: absolute;
  top: 0;
  width: 45px;
  height: 41px;
  background: url("../img/member_box_title_bg.png") left top no-repeat;
}

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

  .member_box_title span:before,
  .member_box_title span:after {
    display: none;
  }
}

.member_box_title span:before {
  left: -65px;
}

.member_box_title span:after {
  right: -55px;
  transform: rotate(90deg);
}

.member_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -20px 0 30px;
}

@media screen and (max-width:480px) {
  .member_list {
    flex-direction: column;
  }
}

.member_item {
  width: 32%;
  margin-top: 20px;
  padding: 140px 20px 20px;
  border: 1px dotted #C56AFF;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-position: center top 25px;
}

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

.member_item:nth-child(1) {
  background-image: url("../img/member_item_bg1.png");
}

.member_item:nth-child(2) {
  background-image: url("../img/member_item_bg2.png");
}

.member_item:nth-child(3) {
  background-image: url("../img/member_item_bg3.png");
}

.member_item:nth-child(4) {
  background-image: url("../img/member_item_bg4.png");
}

.member_item:nth-child(5) {
  background-image: url("../img/member_item_bg5.png");
}

.member_item:nth-child(6) {
  background-image: url("../img/member_item_bg6.png");
}

.member_item:nth-child(7) {
  background-image: url("../img/member_item_bg7.png");
}

.member_item:nth-child(8) {
  background-image: url("../img/member_item_bg8.png");
}

.member_item:nth-child(9) {
  background-image: url("../img/member_item_bg9.png");
}

.member_item:nth-child(10) {
  background-image: url("../img/member_item_bg10.png");
}

.member_item:last-child {
  padding: 55px 20px 20px;
  border: none;
}

@media screen and (max-width:480px) {
  .member_item:last-child {
    padding: 0;
  }
}

.member_item.-w-half {
  width: 49%;
}

@media screen and (max-width:480px) {
  .member_item.-w-half {
    width: 100%;
  }
}

.member_item.-center {
  text-align: center;
}

.member_item_term {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
  color: #3C317B;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.member_item_description {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 35px;
  color: #871587;
  font-size: 16px;
  line-height: 1.75;
}

.member_item_term:before,
.member_item_description:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.member_item:last-child .member_item_term:before,
.member_item:last-child .member_item_description:before {
  content: none;
}

.member_item_term:before {
  width: 25px;
  height: 26px;
  background: url("../img/member_item_term_bg.png") left top no-repeat;
}

.member_item_description:before {
  width: 24px;
  height: 25px;
  background: url("../img/member_item_description_bg.png") left top no-repeat;
}

.member_item_term.-nopd {
  padding: 0;
}

.member_notice {
  padding: 20px 0;
  text-align: center;
  color: #E33535;
  border: 5px solid #E38282;
  border-radius: 15px;
  background: #FFF5F5;
  box-shadow: -1px 5px #D2CCE6;
  font-size: 19px;
}

@media screen and (max-width:480px) {
  .member_notice {
    font-size: 16px;
  }
}

.member_item_description_notice {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.member_item_description_notice::before {
  content: "※";
  position: absolute;
  left: 0;
}

.member_item_description.-notice {
  margin-left: 48px;
  padding-left: 0;
  text-align: left;
}

@media screen and (max-width:480px) {
  .member_item_description.-notice {
    margin-left: 18px;
  }
}

.member_item_description.-notice::before {
  content: "※" !important;
  position: absolute;
  left: -1.5em;
  margin: 0;
  background: none;
}

@media screen and (max-width:480px) {
  .member_item_description.-notice::before {
    left: -16px;
  }
}

.member_notice em {
  font-weight: bold;
}

.member_item_link {
  margin-top: 10px;
}

.member_item_link a {
  display: block;
  width: 100%;
  margin: auto;
  padding: 10px;
  text-align: center;
  color: #FFF;
  border-radius: 10px;
  background: #741474;
  background: linear-gradient(0deg, #741474 0%, #0c32a4 100%);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.member_item_link a small {
  font-size: 16px;
}

.premiumday_img {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.premiumday_box {
  width: 100%;
  margin: 0 5% 5%;
  padding: 20px;
  border: 1px solid #A59ACA;
  border-radius: 10px;
}

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

.premiumday_box_calendar {
  width: 102%;
  margin: 0 0 10px -0.8%;
  border-spacing: 10px;
  border-collapse: separate;
}

@media screen and (max-width:480px) {
  .premiumday_box_calendar {
    width: 100%;
    margin: 0;
    border-spacing: 5px;
  }
}

.premiumday_box_calendar th,
.premiumday_box_calendar td {
  text-align: center;
  vertical-align: middle;
  color: #220055;
}

.premiumday_box_calendar th {
  padding: 3px 0;
  font-size: 14px;
}

@media screen and (max-width:480px) {
  .premiumday_box_calendar th {
    font-size: 12px;
  }
}

.premiumday_box_calendar th.-sat {
  color: #05F;
}

.premiumday_box_calendar th.-sun {
  color: #F00;
}

.premiumday_box_calendar td {
  font-size: 12px;
}

@media screen and (max-width:480px) {
  .premiumday_box_calendar td {
    font-size: 10px;
  }
}

.premiumday_box_calendar th big,
.premiumday_box_calendar td big {
  font-size: 20px;
}

@media screen and (max-width:480px) {
  .premiumday_box_calendar th big,
  .premiumday_box_calendar td big {
    font-size: 12px;
  }
}

.premiumday_box_calendar .premium {
  background: #FF9;
}

.premiumday_box_calendar .main {
  background: #EDF;
}

.premiumday_box_calendar span {
  display: block;
}

.premiumday_box_calendar span.-height-half {
  padding: 10px 0;
}
@media screen and (max-width:768px) {
  .premiumday_box_calendar span.-height-half {
    min-height: 124px;
  }
}
.premiumday_box_calendar span.-pd-50 {
  padding: 50px 0;
}
@media screen and (max-width:768px) {
  .premiumday_box_calendar span.-pd-50 {
    min-height: 172px;
  }
}
.premiumday_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.premiumday_item {
  padding: 5px 0 10px;
  text-align: center;
  font-size: 12px;
}

.premiumday_item_title {
  font-size: 14px;
}

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

.premiumday_item_text {
  line-height: 1.75;
}

.premiumday_item.-main {
  width: 49%;
  color: #220055;
  border: 1px solid #A59ACA;
}

.premiumday_item:not(.-main) {
  width: 24%;
  margin: 7px 0;
  color: #C00;
  border: 1px solid #FFDA71;
}

.premiumday_notice {
  padding: 10px 0;
  text-align: center;
  color: #B00;
  border: 1px solid #C00;
  background: #FFF5F5;
  font-size: 16px;
  line-height: 1.75;
}

@media screen and (max-width:480px) {
  .premiumday_notice {
    font-size: 14px;
  }
}

.premiumday_notice em {
  font-weight: bold;
}

.summary_inner {
  width: 100%;
  padding: 60px;
}

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

.summary_main {
  margin-bottom: 100px;
  color: #220055;
  background: #fffaee;
  background: linear-gradient(0deg, #fffaee 0%, #ffffff 100%);
  box-shadow: 0 0 10px #220055;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;

  font-optical-sizing: auto;
}

.summary_main_inner {
  padding: 120px 120px 70px;
  background: url("../img/summary_main_bg.jpg") center top no-repeat;
}
@media screen and (max-width:1400px) {
  .summary_main_inner {
    padding: 120px 60px 60px;
  }
}
@media screen and (max-width:480px) {
  .summary_main_inner {
    padding: 120px 10px 10px;
  }
}

.summary_main_title {
  margin-bottom: 80px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.75;
}

@media screen and (max-width:768px) {
  .summary_main_title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}

.summary_main_text {
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
  background-image: linear-gradient(180deg, #ccc 1px, transparent 1px); /* 罫線の色と太さ  */
  background-size: 100% 2.5em; /* 行の高さ */
  font-size: 20px;
  font-weight: normal;
  line-height: 2.5em; /* 文字の高さ */
}

@media screen and (max-width:768px) {
  .summary_main_text {
    font-size: 16px;
  }
}

.summary_main_text em {
  font-weight: 600;
}

.summary_title {
  margin-bottom: 50px;
  text-align: center;
  color: #220055;
  border-bottom: 3px solid #C56AFF;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width:480px) {
  .summary_title {
    font-size: 20px;
  }
}

.summary_merit {
  margin-bottom: 100px;
}

.summary_merit_list {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width:768px) {
  .summary_merit_list {
    flex-direction: column;
    gap: 10px;
  }
}

.summary_merit_item {
  width: 375px;
  padding: 136px 0 280px;
  border: 1px dotted #6E5AE1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

@media screen and (max-width:768px) {
  .summary_merit_item {
    width: 100%;
  }
}

.summary_merit_item:nth-child(1) {
  background: url("../img/summary_merit_item_bg1.png") center top 15px no-repeat;
}

.summary_merit_item:nth-child(2) {
  background: url("../img/summary_merit_item_bg2.png") center top 15px no-repeat;
}

.summary_merit_item:nth-child(3) {
  background: url("../img/summary_merit_item_bg3.png") center top 15px no-repeat;
}

.summary_merit_item_term {
  margin-bottom: 20px;
  text-align: center;
  color: #8B008B;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width:1400px) {
  .summary_merit_item_term {
    margin-bottom: 0px;
  }
}
.summary_merit_sublist {
  margin: 0 22px;
}

.summary_merit_sublist.-pdt {
  padding-top: 20px;
}

.summary_merit_subitem {
  padding-left: 30px;
  color: #220055;
  background: url("../img/summary_merit_subitem_bg.png") left top 4px no-repeat;
  font-size: 15px;
  line-height: 1.66667;
}
@media screen and (max-width:1400px) {
  .summary_merit_subitem {
    font-size: 14px;
    line-height: 1.5;
  }
}
.summary_merit_subitem:not(:last-child) {
  margin-bottom: 10px;
}

.summary_benefits_text {
  padding: 0 54px;
  color: #220055;
  font-size: 16px;
  line-height: 2;
}

.summary_benefits_text em {
  color: #8B008B;
}

.summary_benefits_text em.-fwb {
  font-weight: bold;
}

.summary_benefits_text.-mgt {
  margin-top: 50px;
}

.summary_benefits_box {
  margin-top: 50px;
  padding: 105px 20px 20px;
  border: 1px dotted #6E5AE1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.summary_benefits_box.-box1 {
  background: url("../img/summary_benefits_box_bg1.png") center top 20px no-repeat #F5F5FF;
}

.summary_benefits_box.-box2 {
  background: url("../img/summary_benefits_box_bg2.png") center top 20px no-repeat #F5F5FF;
}

.summary_benefits_box.-box3 {
  background: url("../img/summary_benefits_box_bg3.png") center top 20px no-repeat #F5F5FF;
}

.summary_benefits_box.-box4 {
  background: url("../img/summary_benefits_box_bg4.png") center top 20px no-repeat #F5F5FF;
}

.summary_benefits_box.-box5 {
  background: url("../img/summary_benefits_box_bg5.png") center top 20px no-repeat #F5F5FF;
}

@media screen and (max-width:768px) {
  .summary_benefits_box.-box1,
  .summary_benefits_box.-box2,
  .summary_benefits_box.-box3,
  .summary_benefits_box.-box4,
  .summary_benefits_box.-box5 {
    background-size: 150px;
  }
}

.summary_benefits_box_title {
  margin-bottom: 40px;
  padding-top: 10px;
  text-align: center;
  color: #8B008B;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width:1400px) {
  .summary_benefits_box_title {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .summary_benefits_box_title {
    font-size: 24px;
  }
}
@media screen and (max-width:480px) {
  .summary_benefits_box_title {
    font-size: 18px;
  }
}

.summary_benefits_box_title small {
  display: block;
  color: #8B008B;
  font-size: 26px;
  line-height: 1.38462;
}

@media screen and (max-width:480px) {
  .summary_benefits_box_title small {
    font-size: 16px;
  }
}

.summary_benefits_box_item {
  position: relative;
  padding-left: 34px;
  background: url("../img/summary_merit_subitem_bg.png") left top 5px no-repeat;
  font-size: 16px;
  line-height: 1.75;
}

.summary_benefits_box_item em {
  color: #8B008B;
}

.summary_benefits_box_item em.-fwb {
  font-weight: bold;
}

.summary_benefits_box_item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

ul.summary_benefits_box_list li span.-notice {
  position: relative;
  padding-left: 16px;
  color: #8B008B;
  font-size: 14px;
}

ul.summary_benefits_box_list li span.-notice::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.75;
}

.summary_benefits_entry {
  margin: 50px 0;
  padding: 50px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: url("../img/summary_benefits_entry_bg.png") center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-box-shadow: 4px 4px 4px #CCC;
  -moz-box-shadow: 4px 4px 4px #CCC;
  box-shadow: 4px 4px 4px #CCC;
}

@media screen and (max-width:480px) {
  .summary_benefits_entry {
    margin: 20px 0;
    padding: 10px;
  }
}

.summary_benefits_entry_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: auto;
  padding: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(210, 204, 230, 0.85) 100%);
}

@media screen and (max-width:480px) {
  .summary_benefits_entry_inner {
    gap: 10px;
    padding: 10px;
  }
}

.summary_benefits_entry_title,
.summary_benefits_entry_btn {
  margin-bottom: 20px;
}

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

  .summary_benefits_entry_title,
  .summary_benefits_entry_btn {
    margin-bottom: 0;
  }
}

.summary_benefits_entry_title {
  text-align: center;
  color: #220055;
  text-shadow: 2px 2px 4px #fff, 2px -2px 4px #fff, -2px 2px 4px #fff, -2px -2px 4px #fff;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width:1400px) {
  .summary_benefits_entry_title {
    font-size: 35px;
  }
}
@media screen and (max-width:768px) {
  .summary_benefits_entry_title {
    font-size: 30px;
  }
}
@media screen and (max-width:480px) {
  .summary_benefits_entry_title {
    font-size: 20px;
  }
}

.summary_benefits_entry_title em {
  color: #8B008B;
}

.summary_benefits_entry_btn {
  align-self: center;
  padding: 25px 50px;
  border-radius: 10px;
  background: linear-gradient(0deg, #741474, #0C32A4);
  box-shadow: #D2CCE6 0 5px 0;
}

@media screen and (max-width:480px) {
  .summary_benefits_entry_btn {
    padding: 15px 20px;
  }
}

._entry_btn_text {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  ._entry_btn_text {
    font-size: 24px;
  }
}
@media screen and (max-width:480px) {
  ._entry_btn_text {
    font-size: 20px;
  }
}

._entry_btn_text::after {
  content: "\f101";
  padding-left: 10px;
  color: #D2CCE6;
  font-family: "Font Awesome 5 Free";
  font-size: 40px;
  font-weight: 900;
}

@media screen and (max-width:480px) {
  ._entry_btn_text::after {
    font-size: 25px;
  }
}

.summary_benefits_entry_text {
  width: 482px;
  margin: auto;
  padding: 20px;
  color: #220055;
  border: 1px dotted #6E5AE1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #FFF;
  font-size: 16px;
  font-weight: bold;
}

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

.summary_benefits_entry_text2 {
  display: inline-block;
  margin-left: 15px;
}

.summary_benefits_entry_text2 em {
  color: #8B008B;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width:480px) {
  .summary_benefits_entry_text2 em {
    font-size: 18px;
  }
}

.summary_benefits_entry_notice {
  position: relative;
  display: block;
  margin-top: 10px;
  padding: 10px 10px 10px 30px;
  text-align: left;
  color: #8B008B;
  border: 1px solid #8B008B;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.28571;
}

.summary_benefits_entry_notice:before {
  content: "※";
  position: absolute;
  top: 10px;
  left: 10px;
}

.summary_benefits_faq {
  margin-top: 70px;
}

.summary_benefits_faq_title {
  margin-bottom: 40px;
  text-align: center;
  color: #7663B5;
  font-size: 36px;
  font-weight: bold;
}
.__faq_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .__faq_list{
    flex-direction: column;
    gap: 20px;
  }
}
.__faq_list li{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px;
  border-radius: 150px;
  background-color: #F5F5FF;
}
@media screen and (max-width:1400px) {
  .__faq_list li{
    border-radius: 50px;
  }
}
.__faq_list li:nth-child(1),
.__faq_list li:nth-child(2){
  flex-basis:46%;
}
.__faq_list li:nth-child(3),
.__faq_list li:nth-child(5){
  flex-basis: 40%;
}
.__faq_list li:nth-child(6){
  flex-basis: 80%;
}
@media screen and (max-width:768px) {
  .__faq_list li{
    border-radius: 50px;
  }
}
.__faq_list li.__faq_list_img{
  flex-basis:auto;
  padding: 20px 0;
  background-color: unset;
}
@media screen and (max-width:1400px) {
  .__faq_list li.__faq_list_img{
    width: 50px;
  }
}
@media screen and (max-width:768px) {
  .__faq_list li.__faq_list_img{
    display: none;
  }
}
span.__faq_question,
span.__faq_answer {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
span.__faq_question{
color: #6E5AE1;
}
span.__faq_answer{
  color: #0088bb;
}
span.__faq_question::before,
span.__faq_answer::before {
  position: absolute;
  left: 0;
  display: flex;
  width: 30px;
  height: 30px;
}
span.__faq_question::before{
  content: url(../img/faq-q.png);
}
span.__faq_answer::before {
  content: url(../img/faq-a.png);
}
.summary_benefits_faq_img {
  text-align: center;
}

.summary_benefits_faq_img img {
  width: 100%;
}

.last_lead {
  margin: 20px 0 0;
}

.last_lead img {
  width: 100%;
}

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

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

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

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

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

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

.gate_section_img img {
  height: 100%;
}

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

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

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

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

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

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

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

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

  -ms-background: #fff;
}

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

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

.img_area4 {
  margin: 0 auto;
}

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

.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_center {
  width: 100%;
  text-align: center;
}

.img_area_point4 {
  width: 100%;
  text-align: right;
}

.img_area_point4 img {
  width: 260px;
  margin-right: 80px;
}
@media screen and (max-width:480px){
  .img_area_point4 img {
    width: 80px;
    margin-right: 10px;
  }
}

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

.img_area_ship img {
  width: 440px;
  height: auto;
  margin: auto;
}
@media screen and (max-width:1400px) {
  .img_area_ship img {
    width: 390px;
  }
}
.img_area_ship img.child_3 {
  margin-top: 2%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.txt2 {
  font-size: 1.5em;
}

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

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

.text_center {
  text-align: center;
}

.red {
  color: #ff0000;
}

.purple {
  color: #8B008B;
  font-weight: 600;
}

.blue {
  color: #006699;
}

.darkblue {
  color: #000066;
}

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

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

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

.font_reduction_20 {
  font-size: 20%;
}

.font_reduction_30 {
  font-size: 30%;
}

.font_reduction_40 {
  font-size: 40%;
}

.font_reduction_50 {
  font-size: 50%;
}

.font_reduction_60 {
  font-size: 60%;
}

.font_reduction_70 {
  font-size: 70%;
}

.font_reduction_80 {
  font-size: 80%;
}

.font_reduction_90 {
  font-size: 90%;
}

.font_expansion_110 {
  font-size: 110%;
}

.font_expansion_120 {
  font-size: 120%;
}

.font_expansion_130 {
  font-size: 130%;
}

.font_expansion_140 {
  font-size: 140%;
}

.font_expansion_150 {
  font-size: 150%;
}

.font_expansion_160 {
  font-size: 160%;
}

.font_expansion_170 {
  font-size: 170%;
}

.font_expansion_180 {
  font-size: 180%;
}

.font_expansion_190 {
  font-size: 190%;
}

.font_expansion_200 {
  font-size: 200%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dip_app_select_item {
  font-weight: 600;
}

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

.dip_app_hr {
  margin-bottom: 5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

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

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

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

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

/*topに戻るボタン*/
.pagetop {
  position: fixed;
  z-index: 1;
  bottom: 5vh;
  left: 5vw;
  width: 50px;
  height: 50px;
  /*opacity: 0.6;*/
  border-radius: 50%;
  background: linear-gradient(0deg, #8B008B, #5577ff);
}
@media screen and (max-width:480px){
  .pagetop {
    bottom: 25%;
  }
}
.pagetop a {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 20px 0 0 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-decoration: none;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}

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

/****************************************
tablet_1024
*****************************************/
@media screen and (max-width: 1024px) {
    .site-logo a {
    font-size: 1em;
  }

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

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

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

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

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

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

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

  .index__menu__item {
    margin: 0 20px;
  }

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

  .contents_caption_txt {
    font-size: 1.2em;
  }

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

  #dealer .main_section_wrap {
    padding: 0;
  }

  .txt1 {
    font-size: 1.5em;
  }

  .txt2 {
    font-size: 1em;
  }

  .login {
    display: none;
  }

  .login2 {
    display: flex;
  }

  .main_section_txt {
    padding: 2% 5%;
  }

  .main_section_txt_border_top1 {
    padding: 2% 5%;
  }

  ul.main_sec3_list {
    width: 90%;
  }

  ul.main_sec3_list2 {
    width: 90%;
  }

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

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

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

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

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

  .tiket_wrap {
    width: 90%;
  }

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

  .main_sec3_registration_txt {
    font-size: 1em;
  }

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

  .registration_btn {
    font-size: 1.2em;
  }

  .img_area4 {
    width: 90%;
  }

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

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

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

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

  .dealer_dl_section_title {
    font-size: 1.2em;
  }

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

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

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

  .contents_caption_txt {
    font-size: 1em;
  }

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

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

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

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

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

  dl.contens_dl dt {
    border-left: 5px solid #0064c8;
    font-size: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .index__menu__item {
    margin: 20px 0;
  }

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

  .gate_section {
    width: 90%;
  }

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

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

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

  .txt1 {
    font-size: 1em;
  }

  .txt2 {
    font-size: 1em;
  }

  .txt3 {
    font-size: 1em;
  }

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

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

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

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

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

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

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

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

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

  div.main_sec3_list2_wrap {
    width: 90%;
  }

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

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

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

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

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

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

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

  .registration_btn_area span.arrow {
    display: none;
  }

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

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

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

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

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

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

  .arrow1 img {
    width: 50%;
  }

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {
  section.footer_navi dl.footer_navi_list {
    flex-basis: calc(100% / 3 - 7px);
    max-width: calc(100% / 3 - 7px);
  }
}

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

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

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

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

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

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

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

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

dl.footer_navi_list dd a {
  color: white;
}

dl.footer_navi_list dd a:hover {
  color: yellow;
}
/*******floating_banner*******/
#floating_banner_dealer {
  position: fixed;
  z-index: 1000;
  right: -250px;
  bottom: 330px;
  transition: ease .5s;
}
#floating_banner {
  position: fixed;
  z-index: 1000;
  right: -250px;
  bottom: 0;
  transition: ease .5s;
}
@media screen and (max-width:1400px) {
  #floating_banner_dealer,
  #floating_banner {
    right: -230px;
  }
}
@media screen and (max-width:768px) {
  #floating_banner_dealer,
  #floating_banner {
    right: -379px;
    bottom: 0;
  }
  #floating_banner_dealer {
    right: -210px;
    bottom: 220px;
  }
}
@media screen and (max-width:480px) {
  #floating_banner {
    right: -394px;
    width:100%;
  }
}
#floating_banner_dealer.show,
#floating_banner.show {
  right: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#toggle-button_dealer,
#toggle-button {
  position: absolute;
  display: none;
}
#toggle-button_dealer.show,
#toggle-button.show {
  display: block;
}
@media screen and (max-width:480px) {
  #floating_banner.show {
    gap: 0;
  }
}
.close,
.close_dealer,
.open,
.open_dealer {
  width: 30px;
  height: 30px;
  transition: ease .1s;
  background-color: rgba(50, 20, 0, .8);
}

.close,
.close_dealer {
  top: -30px;
  right: 0;
  border: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.close::before,
.close_dealer::before {
  content: "×";
  margin: auto;
  color: white;
  font-size: 25px;
  line-height: 25px;
}

.open {
  left: -30px;
  height: auto;
  height: max-content;
  padding: 10px 0;
  letter-spacing: 2px;
  border: 1px solid #cccc00;
  border-right: none;
  border-radius: 2px;
  background-color: #FFFF99;

  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width:768px) {
  .open {
    bottom: 0;
  }
}
.open::before {
  content: "\f100";
  color: #F15A24;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
}
.open::after {
  content: "無料登録を詳しく見る";
  color: #F15A24;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.open_dealer {
  left: -30px;
  height: auto;
  height: max-content;
  padding: 10px 0;
  letter-spacing: 2px;
  border: 1px solid #6E5AE1;
  border-right: none;
  border-radius: 2px;
  background-color: #A59ACA;

  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width:768px) {
  .open_dealer {
    bottom: 0px;
  }
}
.open_dealer::before {
  content: "\f100";
  color: #220055;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
}
.open_dealer::after {
  content: "もう一度開く";
  color: #220055;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

#floating_banner a:hover {
  opacity: 1;
}

.floating_banner {
  display: flex;
  width: 250px;
  padding: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #FFFF99;
  box-shadow: #CCC 0px 2px 3px;
}
.__bnr_dealer{
  background: #A59ACA;
}
@media screen and (max-width:1400px){
  .floating_banner {
    width: 230px;
    padding: 5px;
  }
}
@media screen and (max-width:768px){
  .floating_banner {
    width: 100%;
    padding: 5px;
    border-radius: 0;
  }
}
.floating_banner_inner {
  display: flex;
  flex: 1 0 0;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid #FFDA71;
  border-radius: 5px;
  background: linear-gradient(0deg, #FFFFEE, #FFF);
}
.__bnr_in_dealer{
  border: 1px solid #6E5AE1;
  background: linear-gradient(0deg, #eeffff, #FFF);
}
.plus__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.plus__box::before {
  content: "\f055";
  color: #551a8b;
  font-family: "Font Awesome 6 Free";
  font-size: 1.25rem;
  font-weight: 900;
}
.__inner_wrap {
  display: flex;
  flex-basis: auto;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width:768px){
  .__inner_wrap {
    flex-basis: calc(50% - 10px);
  }
}
.__inner_wrap img {
  flex-basis: 60px;
  height: fit-content;
}
@media screen and (max-width:1400px){
  .__inner_wrap img {
    flex-basis: 50px;
    width: 50px;
    margin: auto;
  }
}
.__inner_title {
  flex-basis: 100%;
  padding: 10px;
  text-align: center;
  color: #FFF;
  border-radius: 5px;
  background: linear-gradient(180deg, #F15A24, #E33535);
  box-shadow: 0px 0px 2px #550000;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width:1400px){
  .__inner_title {
    font-size: 13px;
  }
}
@media screen and (max-width:768px){
  .__inner_title {
    order: 3;
  }
}
.__inner_title::after {
  content: "\f101";
  padding-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.__inner_title_dealer{
  flex-basis: 100%;
  padding: 10px;
  text-align: center;
  color: #FFF;
  border-radius: 5px;
  background: linear-gradient(90deg,#741474, #6E5AE1, #00479d);
  box-shadow: 0px 0px 2px #6E5AE1;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width:1400px){
  .__inner_title_dealer {
    font-size: 15px;
  }
}
.__inner_title_dealer::after {
  content: "\f101";
  padding-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.__inner_text {
  flex-basis: auto;
  margin: auto;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width:768px){
  .__inner_text {
    font-size: 11px;
  }
}
.__inner_text em {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width:768px){
  .__inner_text em {
    font-size: 12px;
  }
}
.__P_box {
  display: flex;
  width: 100%;
  padding: 5px 5px 0 50px;
  color: #ffff99;
  border-radius: 4px;
  background-image: url(../img/floating_img2_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width:768px){
  .__P_box {
    flex-basis: 50%;
    padding: 0px 5px 0 50px;
    background-position-x: 20%;
  }
}
@media screen and (max-width:480px){
  .__P_box {
    width: 50%;
    background-origin: border-box;
  }
}
.__inner_P_text {
  position: relative;
  padding: 5px 0;
  color: #ffff66;
  text-shadow: 2px 2px black;
  line-height: 1.5;
}
@media screen and (max-width:768px){
  .__inner_P_text {
    padding: 0;
    line-height: 1.75;
  }
}
.balloon {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width:768px){
  .balloon {
    margin-top: 0px;
  }
}
.balloon:after {
  content: "さらに！";
  position: absolute;
  top: -9px;
  left: 37%;
  padding: 0 5px;
  color: #8b008b;
  border: 1px solid #8B008B;
  border-radius: 4px;
  background-color: #fff;
  text-shadow: none;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (max-width:768px){
  .balloon:after {
      display: none;
  }
}
.img_outline{
  max-width: 640px;
  border: 1px solid #220055;
  border-radius: 10px;
  box-shadow:#220055 2px 2px 4px;
}
.deco_border{
  display: flex;
  flex:1 0 0;
  justify-content: center;
  margin: 100px 0;
}
.deco_border img{
  width: 100%;
}
/*******floating_new_banner*******/
.floating_new_banner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
  padding: 10px;
  border: 1px solid #FFDA71;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: linear-gradient(0deg, #FFFFEE, #FFF);
  box-shadow: #CCC 0px 2px 3px;
}
@media screen and (max-width:1400px){
  .floating_new_banner {
    width: 230px;
    padding: 5px;
  }
}
@media screen and (max-width:768px){
  .floating_new_banner {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    border-radius: 0;
  }
}
.__present{
  border: 1px solid #2255ee;
  background-image: url(../img/floating_img2_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.new_banner_item{
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.new_banner_item:not(:first-child){
  padding-top: 10px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width:768px){
  .new_banner_item:not(:first-child){
    padding-top: 0;
    border-top: 0;
  }
}
@media screen and (max-width:768px){
  .__column_row {
    flex-direction: row;
    gap: 15px;
    margin: auto;
  }
}
.__nb_ttl,
.__nb_ttl2,
.__nb_ttl3 {
  color: #bb3300;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width:768px){
  .__nb_ttl,
  .__nb_ttl2,
  .__nb_ttl3 {
    font-size: .875rem;
  }
}
.__nb_ttl2{
  color: #2f4f4f;
}
.__nb_ttl3{
  color: #FFF;
  line-height: 1.25;
}
@media screen and (max-width:768px){
  .__nb_ttl3{
    word-break: keep-all;
  }
}
.__nb_txt,
.__nb_txt2{
  align-self: center;
  padding: 2px 4px;
  color: #442200;
  border-radius: 2px;
  background-color: #ffffdd;
  font-size: .75rem;
  line-height: 1;
}
.__nb_txt2{
  color: #2f4f4f;
  background-color: #f0fff0;
}
.__nb_btn,
.__nb_btn2,
.__nb_btn3{
  flex-basis: 100%;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  word-break: keep-all;
  color: #FFF;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #F15A24, #E33535);
  box-shadow: 0px 0px 2px #550000;
  font-family: "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: .8125rem;
  font-weight: 600;
}
.__nb_btn2{
  background: linear-gradient(90deg, #008080, #2f4f4f);
  box-shadow: 0px 0px 2px #2f4f4f;
}
.__nb_btn3{
  background: linear-gradient(90deg, #8b008b, #2255ee);
  box-shadow: 0px 0px 2px #8b008b;
}
@media screen and (max-width:768px){
  .__nb_btn,
  .__nb_btn2,
  .__nb_btn3 {
    padding: 5px;
    word-break: keep-all;
    font-size: .7rem;
  }
}
.__asterisk {
  position: relative;
  display: block;
  padding-left: 1rem;
  font-size: .75rem;
  font-weight: normal;
  line-height: 1.5;
}

.__asterisk:before {
  content: "\0203B";
  position: absolute;
  left: 0;
  display: inline-block;
}