@charset "UTF-8";

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

main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: rgb(0 30 70 / 30%);
}

a.anchor {
  z-index: -1;
  display: block;
  width: 100%;
  margin-top: -150px;
  padding-top: 150px;
}

/* style reset */
#contaner {
  width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#contaner a,
#contaner a:hover {
  color: unset;
}

.container_center {
  padding: 0;
}

.content_title {
  padding: 0;
}

.content_main_list {
  margin: 0;
  padding: 0;
}

.content_title {
  display: none;
}

.site-header.hide {
  top: 0;
}

/* コンテンツ　ヘッダー */
.user_guide_header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  background: white;
  margin-top: 70px;
  max-width: 100%;
}

@media screen and (width<=480px) {
  .user_guide_header {
    margin-top: 50px;
  }
}

#user_guide_header_navi_wrapper {
  position: relative;
  z-index: 1;

  /* top:-400px; */
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: center;

  /* padding-bottom:20px ; */
  padding: 20px 0;
  background: rgb(0 30 70 / 90%);
  margin-top:
        /*-200px*/ 0;
  max-width: 100%;
}

@media screen and (width <=768px) {
  #user_guide_header_navi_wrapper {
    margin-top: -700px;
    transition: all 0.2s ease-out;
  }
}

.user_guide_btn {
  display: none;
}

.user_guide_btn_area {
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  height:
        /*50px*/ 0;
  margin: auto;
}

.user_guide_btn_navi-icon {
  position: fixed;
  top: 70px;
  right: 0;
  left: 0;
  display: flex;
  width: 170px;
  height: 40px;
  margin: 0 auto;
  color: #fff;
  place-content: center center;
}

.user_guide_btn_navi-icon::before {
  content: '\f107';
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 25px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.user_guide_btn_navi-icon::after {
  content: 'ガイドメニュー';
  position: absolute;
  top: 10px;
  right: 0;
  left: 30px;
  margin: auto;
  font-size: 16px;
  font-weight: lighter;
}

.change::before {
  content: '\f106';
}

.user_guide_btn:checked + #user_guide_header_navi_wrapper {
  position: fixed;
  top: 0;
  margin-top: 120px;
  transition: all 0.2s ease;
  transition: all 0.2s ease-in;
}

.user_guide_header_navi {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1050px;
  justify-content: center;
  margin: auto;
  padding: 0;
  max-width: 1050px;
}

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

.user_guide_header_navi li {
  position: relative;
  flex-basis: 20%;
  margin: auto;
  padding: 10px 20px;
  box-shadow: cyan 0 0 5px 0 inset;
  text-align: center;
  border-bottom: 1px solid cyan;
  border-left: 1px solid cyan;
}

.user_guide_header_navi li:nth-child(5),
.user_guide_header_navi li:nth-child(10) {
  border-right: 1px solid cyan;
}

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

.user_guide_header_navi li a {
  color: cyan !important;
  text-shadow: 0 0 5px cyan;
}

.navi_acd-check {
  display: none;
}

.navi_acd-label {
  position: relative;
  width: 100%;
  color: cyan;
}

.navi_acd-content {
  position: absolute;
  z-index: 1;
  top: 53px;
  left: 0;
  width: 100%;
  height: 0;
  padding: 0;
  color: cyan;
  background: #036;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

@media screen and (width <=768px) {
  .navi_acd-content {
    position: unset;
  }
}

.navi_acd-check:checked + .navi_acd-label + .navi_acd-content {
  height: auto;
  padding: 0;
  opacity: 1;
  visibility: visible;
}

.navi_acd-check:checked + .navi_acd-label::after {
  content: '\f068';
}

.navi_acd-label::after {
  content: '\f067';
  position: absolute;
  top: -5px;
  right: -30px;
  display: block;
  font-size: 1.25em;
  box-sizing: border-box;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

h3.user_guide_header_title {
  width: 100%;
  margin-top: 20px;
}

/* メニューここから */
#sidebar {
  position: fixed;
  z-index: 1;
  width: 200px;
  height: 100%;
  font-size: 15px;
  color: #fafafa;
  background: #036;
  padding-top: 10px;
}

@media screen and (width <=1350px) {
  #sidebar {
    width: 100%;
    height: 80px;
  }

  #sidebar::after {
    content: '';
    position: absolute;
    top: -100px;
    width: 100%;
    height: 100px;
    background: #036;
  }

  .user_guide_header > aside.hide {
    top: 70px;
    transition: 0.3s ease;
  }
}

@media screen and (width <=480px) {
  #sidebar {
    display: none;
  }
}

#-sp-nav {
  display: none;
}

#global-nav img {
  height: auto;
  max-width: 180px;
}

#global-nav ul {
  list-style: none;
  padding-top: 15px;
}

.-sp-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (width <=1350px) {
  .-sp-nav-wrapper {
    position: relative;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .-sp-nav-wrapper::before {
    content: 'クリックしてメニューを開く▼';
    position: absolute;
    left: 200px;
    display: inline-block;
    font-size: 0.8125rem;
    color: #fafafa;
  }

  #-sp-nav-ul {
    position: relative;
    z-index: 2;
    display: none;
    width: 230px;
    margin-left: -10px;
    margin-top: 9px;
    transform: translateY(-1000px);
    transition: 0.3s ease;
  }

  #-sp-nav-ul::after {
    content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 30 70 / 90%);
    transition: 0.3s ease;
  }

  #-sp-nav-unshow {
    position: fixed;
    z-index: 1;
    top: 150px;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-1500px);
    transition: 0.3s ease;
  }

  section.user_guide_header > aside.hide > nav#global-nav > label#-sp-nav-unshow {
    transform: translateY(-70px);
  }

  #-sp-nav:checked ~ #-sp-nav-unshow,
  #-sp-nav:checked ~ #-sp-nav-ul {
    display: block;
    min-height: 1000px;
    transform: translateY(0);
  }

  #-sp-nav:checked ~ .-sp-nav-wrapper::before {
    content: 'クリックしてメニューを閉じる▲';
  }
}

#global-nav > ul > li {
  position: relative;
}

#global-nav a {
  display: block;
  padding: 15px;
  font-size: 0.875rem;
  color: #fafafa;
  cursor: pointer;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 0.3s linear;
}

#global-nav .sub-menu.is-active > a,
#global-nav a:hover {
  color: #036;
  background: #fafafa;
}

#global-nav .sub-menu-nav a,
#global-nav .sub-menu:hover .sub-menu-nav,
#global-nav .sub-menu:hover .sub-menu-nav::after {
  width: 250px;
}

/* sub-menu icon */
#global-nav .sub-menu > a {
  position: relative;
  cursor: pointer;
}

#global-nav .sub-menu > a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 1px solid #fafafa;
  border-top: 1px solid #fafafa;
  transform: rotate(45deg);
  vertical-align: middle;
}

/* sub-menu */
#global-nav .sub-menu-nav {
  position: absolute;
  top: -60px;
  left: 200px;
  width: 0;
  height: 100%;
  color: #036;
  min-height: 500px;
  overflow: hidden;
  transition: width 0.2s ease-out;
}

nav#global-nav > ul#-sp-nav-ul > li {
  padding-left: 5px;
}

nav#global-nav > ul#-sp-nav-ul > li:nth-child(9) > ul.sub-menu-nav {
  top: -360px;
}

nav#global-nav > ul#-sp-nav-ul > li:last-child > ul.sub-menu-nav {
  top: -210px;
}

#global-nav .sub-menu-nav::after {
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #fafafa;
  transition: width 0.2s ease-out;
}

#global-nav .sub-menu.is-active > a::after,
#global-nav .sub-menu > a:hover::after {
  border-color: #036;
}

#global-nav .sub-menu-nav a {
  position: relative;
  color: #036;
  line-height: 1.25rem;
  padding-left: 25px;
}

#global-nav .sub-menu-nav a:hover {
  color: #fafafa;
  background: #036;
}

#global-nav .sub-menu-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 1px solid #036;
  border-top: 1px solid #036;
  transform: rotate(45deg);
  vertical-align: middle;
}

@media screen and (width <=1350px) {
  #global-nav .sub-menu-nav {
    left: 230px;
  }
}

/* パンくずstart */
.user_guide_topic_path {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1050px;
  margin: 10px auto 0;
  border-bottom: 1px solid #ccc;
  max-width: 1050px;
  padding-bottom: 10px;
}

@media screen and (width <=1350px) {
  .user_guide_topic_path {
    margin: 90px auto 0;
  }
}

@media screen and (width <=480px) {
  .user_guide_topic_path {
    margin: 10px auto 0;
  }
}

.user_guide_topic_path li {
  position: relative;
  padding-right: 30px;
}

.user_guide_topic_path li::after {
  content: '\f054';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.user_guide_topic_path li:last-child::after {
  content: '';
}

.user_guide_topic_path li:nth-child(n + 2) {
  padding-left: 10px;
}

/* パンくずend */
.user_guide_header_main_wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1050px;
  margin: 10px auto 0;
  max-width: 1050px;
}

@media screen and (width <=1350px) {
  .user_guide_header_main_wrapper {
    margin: 80px auto 0;
  }
}

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

@media screen and (width <=480px) {
  .user_guide_header_main_wrapper {
    margin: 10px auto 0;
  }
}

.cols_left {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 55%;
  max-width: 55%;
}

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

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

.cols_right {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 45%;
  max-width: 45%;
}

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

.cols_right img {
  width: 100%;
  height: auto;
  padding-top: 10px;
}

.user_guide_header h3 {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: center;
  padding: 20px 0;
  font-size: 30px;
  color: #069;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  .user_guide_header h3 {
    font-size: 150%;
  }
}

.user_guide_text_small {
  flex-basis: 100%;
  margin: auto;
  font-size: 16px;
  text-align: center;
  font-weight: lighter;
  letter-spacing: 0;
  max-width: 100%;
}

@media screen and (width <=1300px) {
  .user_guide_text_small {
    font-size: 13px;
  }
}

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

.user_guide_header_button {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
}

.user_guide_header_button a {
  display: flex;
  padding: 10px 20px;
  font-size: 16px;
  color: cyan !important;
  background: rgb(0 30 70 / 90%);
  border-radius: 10px;
  border: 1px solid cyan;
  font-weight: medium;
  margin-bottom: 10px;
  text-shadow: 0 0 5px cyan;
}

.user_guide_header_button a:hover {
  color: cyan !important;
}

/* コンテンツ　メイン */
.entrance_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1050px;
  margin: 10px auto;
  max-width: 1050px;
}

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

@media screen and (width <=480px) {
  .entrance_wrap {
    padding: 0 10px;
  }
}

.hero {
  margin-bottom: 0;
}

section.info_item_contain {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 80%;
  margin: 50px auto 0;
  padding: 0;
  background: white;
  border-radius: 5px;
  border: 3px solid #036;
  max-width: 80%;
}

@media screen and (width <=1300px) {
  section.info_item_contain {
    flex-basis: 98%;
    max-width: 98%;
  }
}

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

section.info_item_contain h4 {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  height: auto;
  margin: auto;
  padding: 10px;
  font-size: 1.8rem;
  color: white;
  background: #036;
  font-weight: 700;
  max-width: 100%;
  padding-bottom: 1rem;
}

@media screen and (width <=480px) {
  section.info_item_contain h4 {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
  }
}

section.info_item_contain p {
  font-size: 1em;
  line-height: 2rem;
  letter-spacing: 0;
  padding-top: 2rem;
}

ul.info_item_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  height: 200px;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: 2rem;
  max-width: 100%;
  overflow: scroll;
}

@media screen and (width <=480px) {
  ul.info_item_list {
    padding: 1rem;
  }
}

ul.info_item_list li {
  flex-basis: 100%;
  max-width: 100%;
}

ul.info_item_list li a {
  text-decoration: underline;
}

ul.update_info_item_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: 2rem;
  margin-top: 20px;
  max-width: 100%;
}

ul.update_info_item_list li {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  align-self: flex-start;
  border-bottom: 1px dotted #ccc;
  list-style: circle;
  max-width: 100%;
}

ul.update_info_item_list li p {
  display: block;
  width: 100%;
  padding: 5px 0;
  line-height: 1.5em;
  text-decoration: underline;
}

span.status_01 {
  margin: auto;
  padding: 5px;
  font-size: 12px;
  color: white;
  background: #f30;
  border-radius: 5px;
  text-align: center;
}

section.item_contain {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 50px auto 0;
  padding: 3.125rem;
  background: white;
  border-radius: 5px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  section.item_contain {
    padding: 1rem;
  }
}

section.item_contain h4 {
  display: flex;
  height: auto;
  margin: auto;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #036;
  line-height: 1.25;
  border-bottom: #036 solid 4px;
  font-weight: 700;
  padding-bottom: 1rem;
}

@media screen and (width <=480px) {
  section.item_contain h4 {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
}

section.item_contain p {
  flex-basis: 100%;
  padding: 2rem 0;
  font-size: 1em;
  line-height: 2rem;
  letter-spacing: 0;
  max-width: 100%;
}

@media screen and (width <=480px) {
  section.item_contain p {
    padding: 1rem 0;
    font-size: 0.875rem;
  }
}

dl.item_dl_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: 2rem;
  margin-top: 20px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.item_dl_list {
    padding: 0.5rem;
  }
}

dl.item_dl_list dt {
  flex-basis: 100%;
  font-size: 1.25em;
  border-left: 5px solid #036;
  font-weight: 700;
  margin-bottom: 10px;
  max-width: 100%;
  padding-left: 10px;
}

dl.item_dl_list dd {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
  padding: 10px;
  max-width: 50%;
}

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

dl.item_dl_list dd a {
  position: relative;
  flex-basis: 100%;
  margin: auto;
  padding: 10px 10px 10px 30px;
  border-radius: 5px;
  text-align: center;
  border: #036 2px solid;
  border-bottom: #036 4px solid;
  max-width: 100%;
}

dl.item_dl_list dd a::before {
  content: '\f15b';
  position: absolute;
  top: 20%;
  left: 2%;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: red;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

dl.counter-list {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  counter-reset: mycounter;
}

dl.counter-list dt {
  position: relative;
  font-size: 1.25rem;
  background: #fff;
  font-weight: 600;
  padding-left: 2.5rem;
}

@media screen and (width <=480px) {
  dl.counter-list dt {
    font-size: 1rem;
  }
}

dl.counter-list dt::before {
  content: '■' counter(mycounter);
  position: absolute;
  left: 0;
  counter-increment: mycounter;
}

dl.counter-list dd {
  border-bottom: 1px dotted #999;
  padding-bottom: 1rem;
}

dl.counter-list dd p {
  padding: 0;
}

dl.counter-list dd p.dot,
dl.counter-list dd p.down-arrow {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 1.5rem;
}

@media screen and (width <=480px) {
  dl.counter-list dd p.dot,
  dl.counter-list dd p.down-arrow {
    font-size: 0.875rem;
  }
}

dl.counter-list dd p.dot::before {
  content: '・';
  position: absolute;
  left: 0;
}

dl.counter-list dd p.down-arrow {
  margin-bottom: 1rem;
}

dl.counter-list dd p.down-arrow::after {
  content: '↓';
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
}

.qanda_acd_item {
  flex-basis: 100%;
  padding: 10px;
  border: 1px solid #036;
  border-bottom: none;
  max-width: 100%;
}

.qanda_acd_item:last-child {
  border-bottom: 1px solid #036;
}

.qanda_acd-check {
  display: none;
}

.qanda_acd-label {
  position: relative;
  display: block;
  padding: 10px;
  color: #036;
  background: white;
  margin-bottom: 1px;
  padding-left: 35px;
  word-break: keep-all;
}

@media screen and (width <=480px) {
  .qanda_acd-label {
    word-break: unset;
  }
}

.qanda_acd-label::before {
  content: 'Q:';
  position: absolute;
  top: 10px;
  left: 10px;
}

.qanda_acd-content {
  position: relative;
  height: 0;
  padding: 0 10px;
  color: #25c;
  background: white;
  opacity: 0;
  padding-left: 35px;
  transition: 0.5s;
  visibility: hidden;
}

.qanda_acd-content::before {
  content: 'A:';
  position: absolute;
  top: 10px;
  left: 10px;
}

.qanda_acd-check:checked + .qanda_acd-label + .qanda_acd-content {
  height: auto;
  padding: 10px;
  opacity: 1;
  padding-left: 35px;
  visibility: visible;
}

.qanda_acd-check:checked + .qanda_acd-label::after {
  content: '\f068';
}

.qanda_acd-label::after {
  content: '\f067';
  position: absolute;
  top: 0;
  right: -25px;
  display: block;
  height: 52px;
  padding: 10px 20px;
  font-size: 1.25em;
  color: #036;
  box-sizing: border-box;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.info_form {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  max-width: 100%;
}

.info_form li {
  display: flex;
  flex-basis: 100%;
  padding: 10px;
  max-width: 100%;
}

.info_form a {
  margin: auto;
  padding: 20px 40px;
  color: #036 !important;
  background: #00ced1;
  border-radius: 5px;
  text-align: center;
  border: #036 2px solid;
  border-bottom: #036 4px solid;
  font-weight: 700;
}

.info_form a:hover {
  color: #00ced1;
  background: white;
}

.info_form_subtxt {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px solid #036;
  letter-spacing: 0;
  margin-top: 20px;
}

/* footer_navi */
.footer_navi_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 1050px;
  margin: 20px auto;
  padding: 20px 0;
}

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

@media screen and (width <=480px) {
  .footer_navi_wrap {
    margin: 0;
  }
}

.footer_navi {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid #069;
  border-top: 1px solid #069;
  max-width: 100%;
}

.footer_navi_item {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: center;
  color: #069;
  max-width: 100%;
}

.footer_navi_item a {
  padding: 0 10px;
  color: #069;
  border-left: 1px dotted #6cf;
  letter-spacing: 0;
}

.footer_navi_item a:first-child {
  border-left: none;
}

@media screen and (width <=768px) {
  .footer_navi_item a {
    flex-basis: 100%;
    padding: 10px;
    border-bottom: 1px dotted #6cf;
    border-left: none;
    max-width: 100%;
  }
}

.footer_page_navi {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 100%;
}

.footer_page_navi_item {
  flex-basis: 45%;
  margin: auto;
  padding: 10px;
  color: white !important;
  background: dodgerblue;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  max-width: 45%;
}

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

  .footer_page_navi_item:nth-child(1) {
    order: 2;
  }

  .footer_page_navi_item:nth-child(2) {
    margin-bottom: 20px;
    order: 1;
  }
}

.footer_page_navi_item a {
  color: white !important;
}

/* リスト用制御 */
ul.number_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

ul.number_list li {
  position: relative;
  flex-basis: 100%;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
  max-width: 100%;
  padding-left: 20px;
}

ul.number_list li:first-child::before {
  content: '➀';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(2)::before {
  content: '➁';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(3)::before {
  content: '➂';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(4)::before {
  content: '➃';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(5)::before {
  content: '➄';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(6)::before {
  content: '➅';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(7)::before {
  content: '➆';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(8)::before {
  content: '➇';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(9)::before {
  content: '➈';
  position: absolute;
  top: 0;
  left: 0;
}

ul.number_list li:nth-child(10)::before {
  content: '➉';
  position: absolute;
  top: 0;
  left: 0;
}

.caution_box {
  padding: 1px 5px;
  color: white;
  background: #b00;
  border-radius: 5px;
  margin-left: 5px;
}

/* 目次 */
ul.guide_toc_wrap_header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: white;
  background: #069;
  border: 1px solid #036;
  border-bottom: none;
  border-left: none;
}

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

ul.guide_toc_wrap_header li {
  padding: 10px;
  border-left: 1px solid #036;
}

ul.guide_toc_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #036;
  border-bottom: none;
  border-left: none;
}

ul.guide_toc_wrap:nth-child(odd) {
  background: #cff;
}

ul.guide_toc_wrap:last-child {
  border-bottom: 1px solid #036;
}

ul.guide_toc_wrap li {
  padding: 10px;
  border-left: 1px solid #036;
}

ul.guide_toc_wrap li a {
  display: block;
  width: 100%;
}

li.guide_toc_item1 {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 33%;
  width: 33%;
}

li.guide_toc_item2 {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 33%;
  width: 33%;
}

li.guide_toc_item3 {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-basis: 33%;
  width: 33%;
}

@media screen and (width <=480px) {
  li.guide_toc_item1,
  li.guide_toc_item2,
  li.guide_toc_item3 {
    flex-basis: 100%;
    width: 100%;
  }
}

.under_line {
  border-bottom: 1px solid #036;
}

/* user_guide_1 */
div.caution_box {
  width: 100%;
  margin: 30px auto 0;
  padding: 10px;
  font-size: 20px !important;
  color: #036;
  background: rgb(255 225 225 / 100%);
  border-radius: 5px;
  text-align: center;
  border: #036 4px solid;
  border-bottom: #036 8px solid;
  font-weight: 700;
  letter-spacing: 0.2;
}

dl.user_guide_event_info {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border: 1px solid #036;
  border-bottom: none;
  margin-top: 20px;
  max-width: 100%;
}

dl.user_guide_event_info dt {
  flex-basis: 20%;
  margin: 0 auto;
  padding: 10px;
  background: rgb(0 30 70 / 30%);
  text-align: center;
  border-bottom: 1px solid #036;
  border-right: 1px solid #036;
  max-width: 20%;
}

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

dl.user_guide_event_info dd {
  flex-basis: 80%;
  padding: 10px;
  border-bottom: 1px solid #036;
  max-width: 80%;
}

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

.event_info_caution_txt {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background: rgb(255 0 0 / 20%);
  border-radius: 5px;
  border: #036 2px solid;
  border-bottom: #036 4px solid;
  letter-spacing: 0;
}

@media screen and (width <=480px) {
  .event_title {
    display: block;
    width: 100%;
  }
}

dl.user_guide_next_event_info {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin-top: 20px;
  max-width: 100%;
}

dl.user_guide_next_event_info dt {
  flex-basis: 100%;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

dl.user_guide_next_event_info dd {
  flex-basis: 100%;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

.schedule_icon {
  margin: 0 10px;
  padding: 5px 10px;
  color: white;
  background: #b00;
  border-radius: 4px;
}

dl.about_preopen_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 1rem 2rem;
  font-size: 1em;
  line-height: 2rem;
  margin-top: 20px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.about_preopen_list {
    padding: 0.5rem;
  }
}

dl.about_preopen_list dt {
  flex-basis: 100%;
  margin: 10px 0;
  font-size: 1.25em;
  border-left: 5px solid #036;
  font-weight: 700;
  max-width: 100%;
  padding-left: 10px;
}

dl.about_preopen_list dd {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  max-width: 100%;
}

dl.about_preopen_list dd a.link_btn {
  margin: auto;
  padding: 20px 40px;
  color: #fff;
  background: #afeeee;
  border-radius: 5px;
  text-align: center;
  border: #036 2px solid;
  border-bottom: #036 4px solid;
  font-weight: 700;
}

dl.about_preopen_list dd a.link_btn:hover {
  color: #00ced1;
  background: white;
}

dl.about_preopen_list dd a {
  color: dodgerblue !important;
  text-decoration-line: underline;
}

.nmb_list,
.nmb_list2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 25px !important;
}

.nmb_list2 {
  padding-bottom: 10px;
}

.nmb_list2:first-child {
  padding-top: 20px !important;
}

.nmb_list2:last-child {
  padding-bottom: 20px;
  padding-left: 35px !important;
}

.nmb_list::before,
.nmb_list2::before {
  position: absolute;
  left: 0;
}

.nmb_list:nth-of-type(1)::before {
  content: '➀';
}

.nmb_list:nth-of-type(2)::before {
  content: '➁';
}

.nmb_list:nth-of-type(3)::before {
  content: '➂';
}

.nmb_list:nth-of-type(4)::before {
  content: '➃';
}

.nmb_list:nth-of-type(5)::before {
  content: '➄';
}

.nmb_list:nth-of-type(6)::before {
  content: '➅';
}

.nmb_list:nth-of-type(7)::before {
  content: '➆';
}

.nmb_list:nth-of-type(8)::before {
  content: '➇';
}

.nmb_list:nth-of-type(9)::before {
  content: '➈';
}

.nmb_list:nth-of-type(10)::before {
  content: '➉';
}

.nmb_list2:nth-of-type(1)::before {
  content: '1)';
}

.nmb_list2:nth-of-type(2)::before {
  content: '2)';
}

.nmb_list2:nth-of-type(3)::before {
  content: '3)';
}

.nmb_list2:nth-of-type(4)::before {
  content: '4)';
}

.nmb_list2:nth-of-type(5)::before {
  content: '5)';
}

.nmb_list2:nth-of-type(6)::before {
  content: '6)';
}

.nmb_list2:nth-of-type(7)::before {
  content: '7)';
}

.nmb_list2:nth-of-type(8)::before {
  content: '8)';
}

.nmb_list2:nth-of-type(9)::before {
  content: '9)';
}

.nmb_list2:nth-of-type(10)::before {
  content: '10)';
}

.list_cols_left {
  position: relative;
  flex-basis: 20%;
}

.list_cols_left::after {
  content: '…';
  position: absolute;
  top: -5px;
  right: 10px;
}

.list_cols_right {
  flex-basis: 80%;
}

.preopen_list_ok li {
  position: relative;
  line-height: 3rem;
  padding-left: 30px;
}

.preopen_list_ok li::before {
  content: '\f4fc';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: #069;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
}

.preopen_list_ng li {
  position: relative;
  line-height: 3rem;
  padding-left: 30px;
}

.preopen_list_ng li::before {
  content: '\f235';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: #b00;
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
}

/* user_guide_2 */
ul.important_list {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: #036 4px solid;
  border-bottom: #036 8px solid;
  letter-spacing: 0;
}

ul.important_list li {
  line-height: 3rem;
}

.important_list_text {
  position: relative;
  padding-left: 30px;
}

.important_list_text::before {
  content: '･･･';
  position: absolute;
  top: -60%;
  left: 0;
}

@media screen and (width <=768px) {
  .important_list_text {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 10px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }

  .important_list_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
  }
}

ul.flow_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-end;
  max-width: 100%;
}

ul.flow_list::before {
  content: '';
  position: absolute;
  top: 70px;
  bottom: 10px;
  left: 70px;
  width: 2px;
  border-left: 2px solid #666;
  box-sizing: border-box;
}

ul.flow_list::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 61px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  box-sizing: border-box;
  transform: rotate(-45deg);
}

@media screen and (width <=480px) {
  ul.flow_list::before,
  ul.flow_list::after {
    display: none;
  }
}

ul.flow_list2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-end;
  max-width: 100%;
}

ul.flow_list li.sublist {
  position: relative;
  flex-basis: 70%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 30px;
  max-width: 70%;
}

ul.flow_list li.sublist::after {
  content: '\f107';
  position: absolute;
  bottom: -30px;
  left: 50%;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

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

li.flow_list_nmb1 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb1::after {
  content: '1';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb2 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb2::after {
  content: '2';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb3 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb3::after {
  content: '3';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb3-1 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 90px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb3-1::after {
  content: '3-1';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb3-2 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 90px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb3-2::after {
  content: '3-2';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb4 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb4::after {
  content: '4';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb5 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb5::after {
  content: '5';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb6 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb6::after {
  content: '6';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb7 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb7::after {
  content: '7';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb8 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb8::after {
  content: '8';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb9 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb9::after {
  content: '9';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.flow_list_nmb10 {
  position: relative;
  flex-basis: 100%;
  padding: 10px 10px 10px 50px;
  background: rgb(0 30 70 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

li.flow_list_nmb10::after {
  content: '10';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: white;
  background: rgb(0 30 70 / 90%);
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

ul.flow_list_end_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-end;
  max-width: 100%;
}

li.flow_list_end {
  position: relative;
  flex-basis: 100%;
  padding: 10px;
  background: rgb(255 0 0 / 20%);
  border-radius: 10px;
  border: 1px solid #666;
  margin-bottom: 20px;
  max-width: 100%;
}

.list_type_ticket {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border-radius: 10px;
  border: 1px solid #036;
  max-width: 100%;
}

.list_type_ticket li {
  flex-basis: 100%;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

.list_type_ticket li:last-child {
  border: none;
}

.parental-consent_img {
  width: 100%;
  margin: auto;
}

.parental-consent_img img {
  width: 100%;
  height: auto;
  margin: auto;
}

.list_guest_form {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  background: white;
  border-radius: 10px;
  border: 1px solid #036;
  max-width: 100%;
}

.list_guest_form li {
  flex-basis: 100%;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

.list_style_number {
  position: relative;
  padding: 1px 0 0 35px !important;
}

.list_style_number:nth-child(2)::after {
  content: '\02460';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(3)::after {
  content: '\02461';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(4)::after {
  content: '\02462';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(5)::after {
  content: '\02463';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(6)::after {
  content: '\02464';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(7)::after {
  content: '\02465';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.list_style_number:nth-child(8)::after {
  content: '\02466';
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
}

.example_title {
  position: relative;
}

.example_title::before {
  content: '[例文]';
  position: relative;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background: #ececec;
  border-top-left-radius: 10px;
}

table.status_table {
  display: table;
  width: 100%;
  border: 1px solid #666;
}

table.status_table tr {
  border-bottom: 1px solid #666;
}

table.status_table td {
  padding: 10px;
  border-right: 1px solid #666;
}

table.status_table td.title {
  font-size: 1.5em;
  background: #ccc;
  font-weight: 700;
}

table.status_table td.status_table_item1 {
  width: 30%;
}

table.status_table td.status_table_item2 {
  width: 10%;
  font-size: 1.5em;
  text-align: center;
  vertical-align: middle;
}

table.status_table td.status_table_item3 {
  width: 60%;
}

/* user_guide_3 */
.mypage_sample_img_wrapper {
  width: 100%;
  margin: 20px auto 0;
}

.mypage_sample_img_wrapper img {
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 5px;
  border: 1px solid #069;
}

.mypage_info_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: center;
  margin: auto;
  max-width: 100%;
}

.mypage_info_list li {
  position: relative;
  flex-basis: 80%;
  padding: 10px 10px 10px 50px;
  border-radius: 10px;
  border: 4px solid #036;
  border-bottom: 8px solid #036;
  margin-bottom: 30px;
  max-width: 80%;
}

.mypage_info_list li:nth-child(1)::before {
  content: '1';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  background: #036;
  border-radius: 50px;
  line-height: 1.5em;
}

.mypage_info_list li:nth-child(2)::before {
  content: '2';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  background: #036;
  border-radius: 50px;
  line-height: 1.4em;
}

.mypage_info_list li:nth-child(3)::before {
  content: '3';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  background: #036;
  border-radius: 50px;
  line-height: 1.4em;
}

.mypage_info_list li:nth-child(4)::before {
  content: '4';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  background: #036;
  border-radius: 50px;
  line-height: 1.4em;
}

.mypage_info_list li:last-child::after {
  content: '';
}

.mypage_info_list li::after {
  content: '\f107';
  position: absolute;
  bottom: -40px;
  left: 50%;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.mypage_info_list_link {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px auto;
}

.mypage_info_list_link a {
  margin: auto;
  padding: 20px 40px;
  color: #fff;
  background: #00ced1;
  border-radius: 5px;
  text-align: center;
  border: #036 2px solid;
  border-bottom: #036 4px solid;
  font-weight: 700;
}

.mypage_info_list_link a:hover {
  color: #00ced1;
  background: white;
}

.mypage_info_list_subtxt {
  font-size: 13px;
  letter-spacing: 0;
}

.mypage_info_caution_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 4px solid #036;
  border-bottom: 8px solid #036;
  margin-top: 50px;
  max-width: 100%;
}

.mypage_info_caution_list dt {
  flex-basis: 100%;
  margin: auto;
  font-size: 20px;
  color: #b00;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  max-width: 100%;
}

.mypage_info_caution_list dd {
  flex-basis: 100%;
  font-size: 1em;
  max-width: 100%;
}

.mypage_info_sublist {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 10px 0;
  max-width: 100%;
}

.mypage_info_sublist li {
  flex-basis: 100%;
  padding: 10px 0;
  background: rgb(255 0 0 / 20%);
  margin-bottom: 10px;
  max-width: 100%;
}

.sample_ticket_container {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-between;
  margin: 10px 0;
  max-width: 100%;
}

.sample_ticket_container li {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 48%;
  max-width: 48%;
}

.sample_ticket_container li p.text {
  margin: auto;
  padding: 10px;
  font-size: 14px;
  background: rgb(0 30 255 / 20%);
  text-align: center;
  border: #036 1px solid;
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  letter-spacing: 0;
}

.sample_ticket_container li img {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 10px 0;
  border: #036 1px solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.mypage_btn_sample_wrapper {
  padding: 10px;
  border: 1px solid #ccc;
}

.mypage_btn_sample_wrapper:nth-child(odd) {
  margin: 10px 0;
}

.mypage_btn_sample {
  align-content: center;
  padding: 10px;
  font-size: 12px;
  color: white;
  background: #2f95c9;
  border-radius: 4px;
  text-align: center;
  margin-top: 10px;
}

/* user_guide_4 */
.search_img_wrapper {
  width: 100%;
  margin: 20px auto 0;
}

.search_img_wrapper img {
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 5px;
  border: 1px solid #069;
}

/* user_guide_7 */
ul.buy_flow_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  max-width: 100%;
}

ul.buy_flow_list li.buy_flow_list_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  margin-bottom: 30px;
  max-width: 100%;
}

ul.buy_flow_list li.buy_flow_list_item::after {
  content: '\f107';
  position: absolute;
  bottom: -30px;
  left: 20%;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

ul.buy_flow_list li.buy_flow_list_item:last-child::after {
  content: '';
}

@media screen and (width <=480px) {
  ul.buy_flow_list li.buy_flow_list_item::after {
    left: 50%;
  }
}

.buy_flow_list_item_figure1,
.buy_flow_list_item_figure2,
.buy_flow_list_item_figure3,
.buy_flow_list_item_figure4,
.buy_flow_list_item_figure5 {
  flex-basis: 40%;

  /* height:86px;margin:auto; */
  padding: 10px;
  text-align: center;
  border: 1px dotted #ccc;
  border-bottom-left-radius: 10px;
  border-right: none;
  border-top-left-radius: 10px;
  max-width: 40%;
}

.buy_flow_list_item_figure1 {
  background-color: #f5f5f5;
}

.buy_flow_list_item_figure2 {
  background-color: #ffefd5;
}

.buy_flow_list_item_figure3 {
  background-color: #ffe4b5;
}

.buy_flow_list_item_figure4 {
  background-color: #ffe4e1;
}

.buy_flow_list_item_figure5 {
  background-color: #ffa07a;
}

@media screen and (width <=480px) {
  .buy_flow_list_item_figure1,
  .buy_flow_list_item_figure2,
  .buy_flow_list_item_figure3,
  .buy_flow_list_item_figure4,
  .buy_flow_list_item_figure5 {
    flex-basis: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px dotted #ccc;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 100%;
  }
}

.buy_flow_list_item_text {
  flex-basis: 60%;

  /* height:86px; */
  padding: 10px;
  border: 1px dotted #ccc;
  border-bottom-right-radius: 10px;
  border-left: none;
  border-top-right-radius: 10px;
  letter-spacing: 0;
  max-width: 60%;
}

@media screen and (width <=480px) {
  .buy_flow_list_item_text {
    flex-basis: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px dotted #ccc;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: 100%;
  }
}

ul.buy_flow_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-between;
  max-width: 100%;
}

ul.buy_flow_list li.buy_flow_list_item2 {
  position: relative;
  flex-basis: 24%;
  padding: 10px;
  letter-spacing: 0;
  margin-top: 20px;
  max-width: 24%;
}

ul.buy_flow_list li.buy_flow_list_item2::after {
  content: '\f054';
  position: absolute;
  top: 25%;
  right: -5%;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

ul.buy_flow_list li.buy_flow_list_item2:last-child::after {
  content: '';
}

@media screen and (width <=480px) {
  ul.buy_flow_list li.buy_flow_list_item2 {
    flex-basis: 100%;
    margin-bottom: 10px;
    max-width: 100%;
  }

  ul.buy_flow_list li.buy_flow_list_item2::after {
    content: '\f107';
    position: absolute;
    inset: 100% 0 -10px 50%;
  }
}

.buy_flow_list_item_figure2-1 {
  width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #f5f5f5;
}

.buy_flow_list_item_figure2-2 {
  width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffefd5;
}

.buy_flow_list_item_figure2-3 {
  width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffe4b5;
}

.buy_flow_list_item_figure2-4 {
  width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffe4e1;
}

ul.cart_guide_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  max-width: 100%;
}

li.cart_guide_list_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  border-radius: 10px;
  border: #036 1px solid;
  margin-bottom: 30px;
  max-width: 100%;
}

li.cart_guide_list_item::after {
  content: '\f107';
  position: absolute;
  bottom: -30px;
  left: 50%;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

li.cart_guide_list_item:last-child::after {
  content: '';
}

.spacer {
  margin-top: 20px;
}

dl.user_guid_other_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border: 1px solid #036;
  border-bottom: none;
  margin-top: 20px;
  max-width: 100%;
}

dl.user_guid_other_list dt {
  flex-basis: 30%;
  margin: 0 auto;
  padding: 10px;
  background: rgb(0 30 70 / 30%);
  text-align: center;
  border-bottom: 1px solid #036;
  border-right: 1px solid #036;
  max-width: 30%;
}

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

dl.user_guid_other_list dd {
  flex-basis: 70%;
  padding: 10px;
  border-bottom: 1px solid #036;
  max-width: 70%;
}

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

.user_guid_other_list_box {
  padding: 5px;
  background: rgb(255 255 255 / 50%);
  border-radius: 5px;
  margin-top: 5px;
}

/* 重要なお知らせ */
ul.circle_number_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  background: #efefef;
  border-radius: 5px;
  padding-bottom: 20px;
}

ul.circle_number_list li {
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
  padding-bottom: 10px;
  padding-left: 20px;
}

ul.circle_number_list li:last-child {
  padding-bottom: 0;
}

ul.circle_number_list li:first-child::before {
  content: '\02460';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(2)::before {
  content: '\02461';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(3)::before {
  content: '\02462';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(4)::before {
  content: '\02463';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(5)::before {
  content: '\02464';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(6)::before {
  content: '\02465';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(7)::before {
  content: '\02466';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(8)::before {
  content: '\02467';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(9)::before {
  content: '\02468';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(10)::before {
  content: '\02469';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(11)::before {
  content: '⑪';
  position: absolute;
  top: 0;
  left: 0;
}

ul.circle_number_list li:nth-child(12)::before {
  content: '⑫';
  position: absolute;
  top: 0;
  left: 0;
}

ul.normal-list {
  margin-left: 3rem;
}

ul.normal-list li {
  list-style: circle;
}

@media screen and (width <=480px) {
  ul.normal-list {
    margin-left: 2rem;
  }

  ul.normal-list li {
    font-size: 0.875rem;
  }
}

time.timeline {
  width: 100%;
  margin: 20px auto 0;
  font-size: 1rem;
  color: dodgerblue;
  text-align: right;
}

/* index schedule */
.index_schedule__content {
  width: 100%;
  margin: auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  border: 1px solid #036;
}

@media screen and (width <=480px) {
  .index_schedule__content {
    padding: 10px;
  }
}

.index_schedule__info_item {
  width: 100%;
  padding: 0 20px 20px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

.index_schedule__main_title {
  font-size: 20px;
  text-align: center;
  border-bottom: 2px solid #036;
  font-weight: 700;
  padding-bottom: 10px;
}

@media screen and (width <=480px) {
  .index_schedule__main_title {
    font-size: 1rem;
    word-break: keep-all;
  }
}

.index_schedule__subtitle {
  width: 100%;
  margin: 20px auto;
  font-size: 1.2em;
  color: #036;
  text-align: center;
  font-weight: 700;
}

.index_schedule__title {
  margin: 20px auto 10px;
  font-size: 16px;
  border-left: 5px solid #036;
  font-weight: 700;
  padding-left: 10px;
}

@media screen and (width <=480px) {
  .index_schedule__title {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.index_schedule__text {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
}

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

.index_schedule__text2 {
  width: 100%;
  font-size: 1em;
  padding-left: 20px;
}

@media screen and (width <=480px) {
  .index_schedule__text2 {
    font-size: 13px;
  }
}

.index_schedule__text span {
  border: #dcdcdc 1px solid;
}

.index_schedule__text span.column_left {
  flex-basis: 30%;
  padding: 10px;
  background: #f5f5f5;
  max-width: 30%;
}

.index_schedule__text span.column_right {
  flex-basis: 70%;
  padding: 10px;
  background: white;
  border-left: #dcdcdc 1px solid;
  max-width: 70%;
}

@media screen and (width <=480px) {
  .index_schedule__text span.column_left,
  .index_schedule__text span.column_right {
    flex-basis: 100%;
    letter-spacing: 0;
    max-width: 100%;
  }
}

ul.index_schedule__list {
  width: 100%;
}

ul.index_schedule__list li {
  font-size: 1em;
  list-style: disc;
  list-style-position: inside;
  padding-left: 20px;
}

ul.index_schedule__sub_text {
  width: 100%;
}

ul.index_schedule__sub_text li {
  position: relative;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 10px;
  padding-left: 1.2em;
  white-space: normal;
}

ul.index_schedule__sub_text li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
}

.note {
  display: inline-block;
  width: fit-content;
  padding: 0 5px;
  font-size: 0.8em;
  color: #b00;
  background: #ffe4e1;
  border-radius: 5px;
  border: #b00 1px solid;
  margin-bottom: 5px;
}

/* index_user_guide */
.index_user_guide_wrap {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 95%;
  margin: 2.5% auto;
  background: #f8f8ff;
  border-radius: 10px;
  max-width: 95%;
}

@media screen and (width <=1265px) {
  .index_user_guide_wrap {
    margin: 10px auto;
  }
}

@media screen and (width <=480px) {
  .index_user_guide_wrap {
    padding: 10px;
  }
}

.overflow_wrap {
  /* height:600px;overflow-y:scroll; */
  margin: 0 auto 2.5%;
}

.index_user_guide_header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  height: 88px;
  background: #f8f8ff;
  border-radius: 10px;
  max-width: 100%;
}

@media screen and (width <=768px) {
  .index_user_guide_header {
    height: 74px;
  }
}

@media screen and (width <=480px) {
  .index_user_guide_header {
    height: 152px;
  }
}

.index_user_guide_header h3 {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: center;
  padding: 20px 0;
  font-size: 30px;
  color: #069;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  max-width: 100%;
}

@media screen and (width <=1200px) {
  .index_user_guide_header h3 a {
    font-size: 20px;
  }
}

@media screen and (width <=480px) {
  .index_user_guide_header h3 {
    padding: 0;
    font-size: 150%;
    margin-bottom: 0;
  }
}

.index_cols_left {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 55%;
  max-width: 55%;
  padding-left: 50px;
}

@media screen and (width <=1300px) {
  .index_cols_left {
    padding-left: 0;
  }
}

@media screen and (width <=768px) {
  .index_cols_left {
    flex-basis: 60%;
    max-width: 60%;
  }
}

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

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

.index_cols_right {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 45%;
  max-width: 45%;
  padding-left: 10px;
}

@media screen and (width <=768px) {
  .index_cols_right {
    flex-basis: 40%;
    max-width: 40%;
    padding-left: 0;
  }
}

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

.index_cols_right img {
  width: 100%;
  height: auto;
  padding-top: 10px;
}

@media screen and (width <=768px) {
  .index_cols_right img {
    width: 90%;
  }
}

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

section.index_info_item_contain {
  margin: 20px auto;
}

@media screen and (width <=768px) {
  section.index_info_item_contain {
    flex-basis: 95%;
    max-width: 95%;
  }
}

.list_circle {
  position: relative;
  display: block;
  padding-left: 20px;
}

.list_circle::before {
  content: '〇';
  position: absolute;
  top: 0;
  left: 0;
}

table.pmember_table {
  display: table;
  width: 100%;
}

table.pmember_table tr {
  background: none !important;
}

table.pmember_table th {
  background: #ccc;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
  border-top: 1px solid #666;
}

table.pmember_table th,
table.pmember_table td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

table.pmb_st {
  display: table;
  width: 100%;
  border: 1px solid #666;
}

table.pmb_st tr {
  border-bottom: 1px solid #666;
}

table.pmb_st tr:nth-child(even) {
  background: #f5f5f5;
}

table.pmb_st td {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  line-height: 21px;
  border-left: 1px solid #666;
  vertical-align: middle;
}

table.pmb_st td:first-child {
  border-left: none;
}

table.pmb_st td.bikou {
  font-size: 12px;
  color: #555;
  background: #f0f8ff;
  line-height: 18px;
}

table.pmb_st td.bg_pink {
  background: #fee;
}

table.pmember_table_noborder {
  display: table;
  width: 100%;
}

table.pmember_table_noborder tr {
  display: table;
  width: 100%;
  background: none !important;
}

table.pmember_table_noborder tr.under_arrow {
  position: relative;
  margin-bottom: 50px;
}

table.pmember_table_noborder tr.under_arrow::after {
  content: '⇩';
  position: absolute;
  top: 100%;
  left: 30%;
}

table.pmember_table_noborder th,
table.pmember_table_noborder td {
  text-align: center;
  vertical-align: middle;
}

table.pmember_table_noborder th,
table.pmember_table_noborder td.box1 {
  width: 60%;
}

table.pmember_table_noborder th,
table.pmember_table_noborder td.box2 {
  width: 10%;
}

table.pmember_table_noborder th,
table.pmember_table_noborder td.box3 {
  width: 30%;
}

table.rr_table {
  display: table;
  width: 100%;
}

table.rr_table tr {
  display: table;
  width: 100%;
  background: none !important;
}

table.rr_table tr.rr_under_arrow {
  position: relative;
  margin-bottom: 50px;
}

table.rr_table tr.rr_under_arrow::after {
  content: '\f358';
  position: absolute;
  bottom: -40px;
  left: 25%;
  font-size: 30px;
  color: #bce1df;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

table.rr_table tr.rr_under_arrow:last-child::after {
  content: '';
}

table.rr_table td.box-cols-left {
  width: 50%;
  padding: 10px;
  font-size: 14px;
  color: #036;
  border-radius: 5px;
  line-height: 28px;
  background-color: #f5fbfc;
  border: 5px solid #bce1df;
}

span.box-cols-left-ttl {
  display: block;
  width: 100%;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #036;
  margin-bottom: 10px;
}

table.rr_table td.box-cols-right {
  width: 50%;
}

div.rr_caution_box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  color: #00a29a;
  border-radius: 5px;
  border: 2px solid #00a29a;
  margin-left: 15px;
}

div.rr_caution_box::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  margin-top: -12px;
}

div.rr_caution_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -28px;
  border: 14px solid transparent;
  border-right: 14px solid #00a29a;
  margin-top: -14px;
}

a.cbox_btn {
  display: block;
  width: 50%;
  margin: 20px auto;
  padding: 10px;
  font-size: 1rem;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #25c;
  font-weight: normal;
}

ul.list_pmember {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

ul.list_pmember li {
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px dotted #ccc;
  letter-spacing: 0.2em;
  margin-top: 20px;
  padding-bottom: 20px;
}

li.list_pmember__cols1 {
  position: relative;
  flex-basis: 30%;
  padding: 0 20px;
  max-width: 30%;
}

li.list_pmember__cols1::before {
  content: '■';
  position: absolute;
  top: 0;
  left: 0;
}

li.list_pmember__cols2 {
  flex-basis: 70%;
  max-width: 70%;
}

.box__bg_orange1 {
  background-color: #eee8aa;
  border: 1px solid #555;
}

.box__bg_orange2 {
  background-color: #ffd700;
  border: 1px solid #555;
}

.box__bg_orange3 {
  background-color: #ff8c00;
  border: 1px solid #555;
}

.box__bg_white {
  background-color: #fff;
  border: 1px solid #555;
}

.box__bg_pink {
  background-color: #ffc0cb;
}

.box__bg_pink2 {
  background-color: #ffc0cb;
  border: 1px solid #555;
}

.box__bg_pink3 {
  background-color: #ee82ee;
  border: 1px solid #555;
}

.rr_box {
  border: 1px solid #555;
}

.rr-box__bg_violet {
  background-color: #ee82ee;
}

.rr-box__bg_pink {
  background-color: #ffb6c1;
}

.rr-box__bg_orange1 {
  background-color: #ff8c00;
}

.rr-box__bg_orange2 {
  background-color: #eee8aa;
}

.rr-box__bg_beige {
  background-color: #faebd7;
}

.rr-box__bg_pink2 {
  background-color: #f08080;
}

.list_example {
  position: relative;
  display: table-cell;
  font-size: 14px;
  color: darkblue;
  line-height: 21px;
  padding-left: 30px;
  word-break: keep-all;
}

.list_example::before {
  content: '例）';
  position: absolute;
  top: 0;
  left: 0;
}

.list_dot {
  position: relative;
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 21px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.list_dot::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.list_asterisk,
.asterisk {
  position: relative;
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 21px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.list_asterisk::before,
.asterisk::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

table.list_pmember__subtable {
  margin: 20px 0;
}

table.list_pmember__subtable tr {
  background: none !important;
}

table.list_pmember__subtable tr td {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0.2em;
  vertical-align: middle;
}

table.event_timeline_wrap {
  display: table;
  width: 100%;
  font-size: 14px;
  overflow-x: scroll;
}

@media screen and (width <=1024px) {
  table.event_timeline_wrap {
    display: block;
    width: 655px;
  }
}

@media screen and (width <=768px) {
  table.event_timeline_wrap {
    display: block;
    width: 710px;
  }
}

@media screen and (width <=480px) {
  table.event_timeline_wrap {
    width: 350px;
  }
}

table.event_timeline_wrap thead td {
  padding: 10px 0 0;
  text-align: center;
  line-height: 1.5em;
  vertical-align: bottom;
}

table.event_timeline_wrap tbody td {
  padding: 10px;
  text-align: center;
  line-height: 1.5em;
  margin-right: 1%;
  vertical-align: middle;
}

tbody.event_timeline {
  width: 100%;
  border: 2px solid #999;
}

td.maintenance_day {
  position: relative;
  z-index: 0;
}

td.maintenance_day::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1%;
  width: 48%;
  height: 100%;
  background: #b8cfe6;
}

td.maintenance_day::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1%;
  width: 48%;
  height: 100%;
  background: #b8cfe6;
}

td.preopen_day {
  position: relative;
  z-index: 0;
}

td.preopen_day::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1%;
  width: 48%;
  height: 100%;
  background: #ff9;
}

td.preopen_day::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1%;
  width: 48%;
  height: 100%;
  background: #ff9;
}

td.open_day {
  position: relative;
  z-index: 0;
  width: 400px;
}

td.open_day::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1%;
  width: 48%;
  height: 100%;
  background: #deb8e6;
}

td.open_day::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1%;
  width: 48%;
  height: 100%;
  background: #deb8e6;
}

td.ticket_day {
  background: #ff9;
}

.-ticket-btn {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  color: #148fcc;
  border-radius: 4px;
  border: #148fcc 1px solid;
  margin-top: 5px;
}

.-ticket-btn:hover {
  color: #fcfcfc;
  background: #148fcc;
}

.evtl_item_title {
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 10px;
  text-shadow: 2px 0 2px #fff, 0 2px 2px #fff, -2px 0 2px #fff, 0 -2px 2px #fff;
}

@media screen and (width <=480px) {
  .evtl_item_title {
    font-size: 14px;
  }
}

.evtl_item_list {
  display: block;
  width: 100%;
  margin: auto;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  letter-spacing: 0;
}

.-is-gray {
  color: #555;
}

.-is-fs-xl {
  font-size: 150%;
}

.-is-fs-l {
  font-size: 125%;
}

.-is-fs-s {
  font-size: 75%;
}

.-border-top {
  border-top: 1px dotted #999;
  margin-top: 5px;
  padding-top: 5px;
}

.anchor_wrap {
  display: flex;
  flex-basis: 100%;
  justify-content: flex-end;
  padding: 10px 2rem;
  max-width: 100%;
}

.anchor_link {
  font-size: 0.875rem;
  color: blue !important;
  text-decoration: underline !important;
}

.pr_box {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 1rem;
  color: red;
  border-radius: 5px;
  border: 2px #333 solid;
  font-weight: 600;
  max-width: 100%;
}

dl.nml_dl {
  display: flex;
  flex-basis: 100%;
}

dl.nml_dl dt {
  flex-basis: 100%;
  margin: 0;
  font-size: 1rem;
  border-left: none;
  padding-left: 0;
}

.fnt_large {
  font-weight: 600;
  font-weight: 18px;
}

b {
  font-weight: 600;
}
