@charset "UTF-8";

/* CSS Document */
*,
li {
  line-height: auto;
}

body {
  letter-spacing: 0;
}

.container_center {
  margin: auto;
  max-width: 1280px;
}

.hero {
  margin-top: 140px;
}

#contaner {
  margin-top: 64px !important;
}

@media screen and (width <= 768px) {
  #contaner {
    padding-top: 24px;
  }
}

#repassword_link a {
  color: red !important;
  font-weight: bold !important;
}

.event_data {
  margin: 30px 0;
  padding: 1%;
  border-radius: 4px;
  border: 1px solid #ccc;
}

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

.event_data_anchor {
  color: blue !important;
}

.dealerpage_menu {
  position: relative;
  background: url('img/pattern.png');
}

.dealerpage_menu::after {
  content: '';
  position: absolute;
  top: 38%;
  right: 25px;
  display: block;
  width: 8px;
  height: 8px;
  border-right: solid 4px #000;
  border-top: solid 4px #000;
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
}

.dealerpage_menu.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/* dealer_nav */
.dealer_nav {
  position: fixed;
  z-index: 1;
  top: 70px !important;
  right: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 1260px;
  height: 110px;
  margin: 0 auto;
  transition: 0.5s;
}

@media screen and (width <=1260px) {
  .dealer_nav {
    width: 100%;
    padding: 0 10px;
  }
}

.dealer_nav::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50vw;
  width: 150vw;
  height: 100%;
  background: rgb(255 255 255 / 80%);
}

.content_title {
  flex-basis: 50%;
  margin: 0;
  letter-spacing: 0.2em;
  max-width: 50%;
  padding-top: 10px;
}

@media screen and (width <=480px) {
  .content_title {
    height: fit-content;
    padding-top: 0;
  }
}

.content_title a.event_title {
  flex-basis: 100%;
  font-size: 20px;
  text-align: left;
  max-width: 100%;
}

@media screen and (width <=480px) {
  .content_title a.event_title {
    display: none;
    text-align: center;
  }
}

p.user_name_area {
  display: flex;
  flex-basis: 100%;
  justify-content: flex-start;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  p.user_name_area {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px;
    line-height: 18px;
    margin-top: 0;
  }
}

.user_name {
  padding: 0 10px;
  font-size: 20px;
  color: #2f95c9;
  font-weight: 600;
  word-break: break-all;
}

@media screen and (width <=480px) {
  .user_name {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
}

.event_list_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 50%;
}

.event_logo {
  flex-basis: 400px;
  text-align: center;
  max-width: 400px;
  padding-top: 5px;
}

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

.event_logo img {
  width: 90%;
  height: auto;
  margin: auto;
  text-align: center;
}

img.event_img {
  display: block;
  width: 190px;
  height: auto;
  margin: auto;
}

@media screen and (width <=480px) {
  img.event_img {
    width: 100px;
    padding-top: 5px;
  }
}

.swiper-container {
  display: flex;
  flex-basis: 400px;
  align-self: flex-start;
  justify-content: center;
  height: 35px;
  margin: 10px auto;
  padding: 5px 0;
  max-width: 400px;
}

@media screen and (width <=480px) {
  .swiper-container {
    height: 5vh;
  }
}

.swiper-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: rgb(0 100 200 / 10%);
  border-radius: 5px;
  border: 1px solid dodgerblue;
}

.swiper-slide {
  opacity: 0.3;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-button-prev::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 12px;
  right: -20px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  cursor: pointer;
  transform: rotate(-135deg);
}

.swiper-button-prev::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 80px;
  height: 35px;
  background: dodgerblue;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  opacity: 0.9;
}

@media screen and (width <=480px) {
  .swiper-button-prev::before {
    right: 5px;
  }

  .swiper-button-prev::after {
    width: 30px;
  }
}

.swiper-button-next::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 12px;
  left: -20px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  cursor: pointer;
  transform: rotate(45deg);
}

.swiper-button-next::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 80px;
  height: 35px;
  background: dodgerblue;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  opacity: 0.9;
}

@media screen and (width <=480px) {
  .swiper-button-next::before {
    left: 5px;
  }

  .swiper-button-next::after {
    width: 30px;
  }
}

/********* main_navi *************/
.user_main_navi {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #2f95c9;
  margin-bottom: 30px;
}

@media screen and (width <=480px) {
  .user_main_navi {
    padding: 10px 0;
    margin-bottom: 0;
  }
}

.user_main_navi li {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 14%;
  font-size: 0.875rem;
  margin-bottom: 1%;
  max-width: 14%;
}

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

@media screen and (width <=480px) {
  .user_main_navi li {
    flex-basis: calc((100% - 0.5rem) / 2);
    max-width: calc((100% - 0.5rem) / 2);
  }
}

.user_main_navi li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin: auto;
  color: #2f95c9;
  background: white;
  border-radius: 4px;
  border: 1px solid #2f95c9;
  letter-spacing: 0;
  padding-left: 0;
}

.user_main_navi li a:hover {
  color: #fff !important;
  background: #2f95c9;
  border: 1px solid #2f95c9;
}

.pagenation {
  text-align: center;
  margin-top: 30px;
}

.pagenation__item {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 2px;
  padding: 0;
  font-size: 14px;
  background: #fff;
  text-align: center;
}

.pagenation__item.-current {
  background: #2f95c9;
}

.pagenation__item.-current a {
  color: #fff;
}

.pagenation__item.-period span {
  position: absolute;
  display: initial;
  height: 55%;
  margin: auto;
  border: none;
  inset: 0;
}

.pagenation a {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
  color: #444;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.pagenation span {
  display: table-cell;
  border: 1px solid #2f95c9;
  vertical-align: middle;
}

/* ファン登録 */
ul.list_item_info__cols-name {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
  padding: 10px 0;
  max-width: 50%;
}

@media screen and (width <=768px) {
  ul.list_item_info__cols-name {
    flex-basis: 40%;
    max-width: 40%;
  }
}

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

.list_item_info__fan_name {
  flex-basis: 100%;
  align-self: center;
  font-size: 18px;
  word-break: break-all;
}

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

ul.list_item_info__cols-subinfo {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 30%;
  align-self: center;
  max-width: 30%;
}

@media screen and (width <=768px) {
  ul.list_item_info__cols-subinfo {
    flex-basis: 35%;
    max-width: 35%;
  }
}

@media screen and (width <=480px) {
  ul.list_item_info__cols-subinfo {
    flex-basis: 75%;
    max-width: 750%;
  }
}

ul.list_item_info__cols-subinfo li {
  flex-basis: 100%;
}

ul.list_item_info__cols-btn {
  flex-basis: 20%;
  max-width: 20%;
}

@media screen and (width <=768px) {
  ul.list_item_info__cols-btn {
    flex-basis: 25%;
    max-width: 25%;
  }
}

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

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

  li.list_item_info__form_area label.list_item_info__normal_button {
    width: 100%;
    margin-right: 10px;
  }
}

@media screen and (width <=480px) {
  div.list_item_info {
    margin-left: 20px;
  }
}

/* DIP設定 */
.dip_info_box_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.dip_info_box {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 80%;
  align-self: flex-start;
  justify-content: center;
  margin: auto;
  max-width: 80%;
}

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

.dip_control_box {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  align-self: flex-start;
  margin-bottom: 1%;
  max-width: 100%;
}

@media screen and (width <=768px) {
  .dip_control_box {
    margin-bottom: 20px;
  }
}

.dip_control_box_cols_left {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 49%;
  float: left;
  max-width: 49%;
}

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

.dip_control_box_cols_left input[type='text'] {
  width: 100%;
}

.dip_control_box_cols_right {
  position: sticky;
  top: 110px;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 49%;
  align-self: flex-start;
  float: right;
  max-width: 49%;
}

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

.dip_info_box dt.dip_title,
.dip_control_box dt.dip_title,
.dip_control_box_half dt.dip_title,
.dip_control_box_cols_right dt.dip_title {
  flex-basis: 100%;
  align-self: flex-start;
  padding: 5px;
  font-size: 0.875rem;
  color: white;
  background: #007abd;
  text-align: center;
  max-width: 100%;
}

@media screen and (width <=480px) {
  .dip_info_box dt.dip_title,
  .dip_control_box dt.dip_title,
  .dip_control_box_half dt.dip_title {
    font-size: 16px;
  }
}

.dip_info_box dd,
.dip_control_box dd,
.dip_control_box_half dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  /* align-self:flex-start; */
  width: 100%;
  font-size: 0.825rem;
  border: #2f95c9 1px solid;
}

.dip_info_box dd:nth-child(n + 3),
.dip_control_box dd:nth-child(n + 3),
.dip_control_box_half dd:nth-child(n + 3) {
  border-top: none;
}

.dip_cols_left {
  display: flex;
  flex-basis: 30%;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 1rem;
  color: #2f95c9;
  background: #e6f6ff;
  text-align: left;
  max-width: 30%;
}

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

.dip_cols_right {
  flex-basis: 70%;
  padding: 10px;
  font-size: 1rem;
  text-align: left;
  max-width: 70%;
}

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

.dip_cols_right input[type='text'] {
  width: 100%;

  /* height: 50px; */
}

.dip_cols_right input[type='button'] {
  width: 100%;
  padding: 10px 0;
}

@media screen and (width <=480px) {
  .dip_cols_right input[type='text'] {
    font-size: 14px;
  }

  .dip_cols_right input[type='button'] {
    font-size: 14px;
  }
}

a.dip_class {
  font-size: 14px;
  color: #2f95c9;
  padding-left: 20px;
}

.dip_control_list_item_container {
  width: 100%;
  height: 100px;
  overflow-y: scroll;
}

.dip_control_list_item_container::after {
  content: '';
  display: block;
  width: 1px;
  height: 10px;
}

.dip_control_list_item {
  display: flex !important;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  line-height: 1rem;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
}

.dip_control_list_item:first-child {
  padding: 0 10px 10px;
}

.item_time {
  flex-basis: 100%;
  font-size: 0.75rem;
  letter-spacing: 0;
  max-width: 100%;
}

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

.item_text {
  flex-basis: 100%;
  margin-bottom: 5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item_label {
  padding: 1px 3px;
  font-size: 12px;
  background: #aaa;
  border-radius: 4px;
  margin-right: 5px;
}

.item_edit_btn {
  display: inline-block;
  flex-basis: 50%;
  padding: 3px 0 !important;
  font-size: 0.75rem;
  background: aquamarine;
  text-align: center;
  letter-spacing: 0;
  max-width: 50%;
}

.item_delete_btn {
  flex-basis: 50%;
  padding: 3px 0 !important;
  font-size: 0.75rem;
  letter-spacing: 0;
  max-width: 50%;
}

a.item_none_btn {
  flex-basis: 10%;
  font-size: 12px;
  color: red;
  letter-spacing: 0;
  max-width: 10%;
}

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

.item_infomation_text {
  flex-basis: 90%;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.item_blog_title {
  flex-basis: 50%;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.blog_create_btn {
  margin: auto;
  padding: 5px;
  color: white;
  background: #2f95c9;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #2f95c9;
}

.blog_create_btn:hover {
  color: #2f95c9;
  background: white;
  border-radius: 4px;
  border: 1px solid #2f95c9;
  text-decoration: none;
}

.dip_create_btn {
  position: relative;
  display: flex;
  justify-content: center;
  float: right;
  width: 100%;
  padding: 0;
  font-size: 0.75rem;
  color: white !important;
  background: #2f95c9;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.dip_create_btn::before {
  content: '\f055';
  position: unset;
  top: unset;
  left: unset;
  font-size: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
}

.dip_btn_box {
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  padding: 30px 0;
}

@media screen and (width <=480px) {
  .dip_btn_box {
    margin: 20px 0;
    background: none;
  }

  .dip_btn_box input:first-child {
    margin-bottom: 20px !important;
  }
}

.dip_btn_item {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  margin: 0;
  padding: 10px;
  color: #fff !important;
  background: #2f95c9;
  border-radius: 4px;
  border: 3px solid #2f95c9;
  cursor: pointer;
  max-width: 100%;
}

.dip_btn_box input.dip_preview_btn {
  flex-basis: 45%;
  margin: 0;
  padding: 20px 10px;
  font-size: 1rem;
  color: white;
  background: #20b2aa;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #2f95c9;
  max-width: 45%;
}

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

.dip_btn_box input.dip_submit_btn {
  flex-basis: 45%;
  margin: 0;
  padding: 20px 10px;
  font-size: 1rem;
  color: white;
  background: #2f95c9;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #2f95c9;
  max-width: 45%;
}

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

.dip_selecter {
  display: block;
  width: 100%;
  height: 38px;
  font-size: 0.75rem;
  text-align: center;
}

.img_drop_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 10px;
  border: 3px solid;
  margin-top: 10px;
}

.dip_img {
  width: auto;
  height: 50px;
}

.img_style {
  width: 100%;
  border: 1px solid #007abd;
}

.img_list_wrap {
  padding: 10px;
}

.img_list {
  display: inline-block;
  width: auto;
  height: 50px;
  list-style: none;
}

.dip_alert_box {
  flex-basis: 100%;
  padding: 5px;
  color: red;
  border-radius: 2px;
  line-height: 1rem;
  background-color: mistyrose;
  margin-bottom: 10px;
}

.icon_upload {
  position: relative;
}

.icon_upload::before {
  content: '\f382';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
}

.icon_chevron {
  position: relative;
}

.icon_chevron::before {
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
}

.icon_img {
  position: relative;
  line-height: 1.2rem;
  padding-left: 30px;
}

.icon_img::before {
  content: '\f03e';
  position: absolute;
  top: 9px;
  left: 5px;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.icon_detail {
  position: relative;
  line-height: 1.2rem;
  padding-left: 30px;
}

.icon_detail::before {
  content: '\f234';
  position: absolute;
  top: 8px;
  left: 5px;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.icon_info {
  position: relative;
  line-height: 1.2rem;
  padding-left: 30px;
}

.icon_info::before {
  content: '\f05a';
  position: absolute;
  top: 8px;
  left: 5px;
  font-size: 20px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

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

.pickup_item {
  flex-basis: 100%;
  margin: auto;
  padding: 10px;
  text-align: center;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

.pickup_item input {
  margin-right: 5px;
}

.comment_list {
  margin: 20px 0;
  padding: 10px;
}

.comment_list__title {
  position: relative;
  font-size: 34px;
  color: #2f95c9;
  border-bottom: 1px solid #2f95c9;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
  padding-bottom: 2px;
  padding-left: 40px;
}

.comment_list__title::before {
  content: '\f4ad';
  position: absolute;
  top: -2px;
  left: 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.item__comment_list {
  width: 100%;
  font-size: 1em;
}

.comment_list_item {
  display: flex !important;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
  margin-bottom: 10px;
}

.comment_list_cols_left {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 70%;
  max-width: 70%;
}

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

.comment_list_cols_right {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 30%;
  align-content: flex-start;
  max-width: 30%;
}

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

.comment_list_item_title {
  flex-basis: 100%;
  font-size: 16px;
  padding-bottom: 10px;
}

.comment_list_item_title a {
  pointer-events: none;
}

.comment_list_item_text {
  display: flex;
  font-size: 13px;
  line-height: 1.8;
  word-break: break-all;
}

.comment_list_footer_item {
  flex-basis: 100%;
  font-size: 13px;
  padding-top: 10px;
}

.comment_list_update_time {
  color: dodgerblue;
  padding-right: 10px;
}

.comment_list_user_name {
  color: dodgerblue;
}

.comment_list_more_info {
  display: flex;
  flex-basis: 100%;
  align-self: flex-start;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 20px;
}

@media screen and (width <=480px) {
  .comment_list_more_info {
    flex-basis: 48%;
    margin: 2% 1%;
    max-width: 48%;
  }
}

.comment_list_more_info a {
  display: block;
  flex-basis: 50%;
  align-self: flex-start;
  padding: 7px;
  font-size: 12px;
  color: #56a9d3;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #2f95c9;
  font-weight: bold;
}

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

/* 購入履歴 */
.receipt_wrap {
  margin: 0 auto;
}

ul.list_item_info__buylist li {
  line-height: 1;
}

ul.receipt_table_value li {
  display: grid;
}

.content_main li.receipt_total {
  display: flex;
}

.customer_name {
  padding: 10px 0;
  font-size: 16px;
  margin-right: 20px;
}

.customer_name a {
  color: #fff !important;
}

.customer_checkbox {
  align-self: center;
  padding: 10px 0;
  margin-right: 5px;
}

.c-o-t-d_receipt_dl_wrap {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

@media screen and (width <=480px) {
  .c-o-t-d_receipt_dl_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}

a.c-o-t-d_receipt_dl {
  margin: auto;
  padding: 10px 20px;
  color: white !important;
  background: #2f95c9;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #2f95c9;
}

a.c-o-t-d_receipt_dl:hover {
  color: #2f95c9 !important;
  background: white;
  border: 1px solid #2f95c9;
}

@media screen and (width <=480px) {
  a.c-o-t-d_receipt_dl {
    flex-basis: 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.dealer_name_receipt {
  flex-basis: 100%;
  font-size: 16px;
  max-width: 100%;
  padding-bottom: 10px;
}

.dealer_sign {
  width: 50%;
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
  margin-left: 50%;
  padding-bottom: 5px;
}

@media screen and (width <=768px) {
  .dealer_sign {
    width: 100%;
    margin-left: 0;
  }
}

.c-o-t-d_receipt_value-1_title,
.c-o-t-d_receipt_value-1 {
  flex-basis: 30%;
  max-width: 30%;
  word-break: break-all;
}

.c-o-t-d_receipt_value-2_title,
.c-o-t-d_receipt_value-2 {
  flex-basis: 30%;
  max-width: 30%;
  word-break: break-all;
}

.c-o-t-d_receipt_value-3_title,
.c-o-t-d_receipt_value-3 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.c-o-t-d_receipt_value-4_title,
.c-o-t-d_receipt_value-4 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.c-o-t-d_receipt_value-5_title,
.c-o-t-d_receipt_value-5 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.c-o-t-d_receipt_value-6_title,
.c-o-t-d_receipt_value-6 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.c-o-t-d_receipt_value-7_title {
  flex-grow: 1;
  flex-basis: 70%;
  text-align: center;
  max-width: 70%;
}

ul.c-o-t-d_total_table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 3px solid #ccc;
  margin-bottom: 10px;
}

ul.c-o-t-d_total_table li {
  padding: 10px;
}

.sales_value-1_title,
.sales_value-1 {
  flex-basis: 65%;
  max-width: 65%;
  word-break: break-all;
}

.sales_value-2_title,
.sales_value-2 {
  flex-basis: 12%;
  max-width: 12%;
}

.sales_value-3_title,
.sales_value-3 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.sales_value-4_title,
.sales_value-4 {
  flex-basis: 13%;
  max-width: 13%;
}

@media screen and (width <=480px) {
  .sales_value-1_title,
  .sales_value-2_title,
  .sales_value-3_title,
  .sales_value-4_title {
    display: none !important;
  }

  .sales_value-1 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .sales_value-1 span {
    display: block;
  }

  .sales_value-2 {
    position: relative;
    flex-basis: 42%;
    max-width: 42%;
    padding-left: 70px !important;
  }

  .sales_value-2::before {
    content: '販売価格:';
    position: absolute;
    top: 0;
    left: 10px;
    padding-top: 10px;
  }

  .sales_value-3 {
    position: relative;
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 40px !important;
  }

  .sales_value-3::before {
    content: '個数:';
    position: absolute;
    top: 0;
    left: 10px;
    padding-top: 10px;
  }

  .sales_value-4 {
    position: relative;
    flex-basis: 33%;
    max-width: 33%;
    padding-left: 40px !important;
  }

  .sales_value-4::before {
    content: '小計:';
    position: absolute;
    top: 0;
    left: 10px;
    padding-top: 10px;
  }
}

.omatome_list_value-1_title,
.omatome_list_value-1 {
  flex-basis: 20%;
  max-width: 20%;
}

.omatome_list_value-2_title,
.omatome_list_value-2 {
  flex-basis: 65%;
  max-width: 65%;
  word-break: break-all;
}

.omatome_list_value-3_title,
.omatome_list_value-3 {
  flex-basis: 15%;
  text-align: center;
  max-width: 15%;
}

@media screen and (width <=480px) {
  .omatome_list_value-1_title,
  .omatome_list_value-1 {
    flex-basis: 30%;
    max-width: 30%;
  }

  .omatome_list_value-2_title,
  .omatome_list_value-2 {
    flex-basis: 55%;
    max-width: 55%;
  }

  .omatome_list_value-3_title,
  .omatome_list_value-3 {
    flex-basis: 15%;
    max-width: 15%;
  }
}

ul.receipt_table_value:last-child {
  border-bottom: 0;
  margin-bottom: 10px;
}

ul.receipt_table_total {
  margin-top: 0 /*-10px*/;
}

.dshipping_item_title {
  display: flex;
  flex-basis: 100%;
  margin: auto;
  padding: 10px !important;
  background: #ececec;
}

.dshipping_list_value-1_title,
.dshipping_list_value-1 {
  flex-basis: 15%;
  max-width: 15%;
}

.dshipping_list_value-2_title,
.dshipping_list_value-2 {
  flex-basis: 40%;
  max-width: 40%;
  word-break: break-all;
}

.dshipping_list_value-3_title,
.dshipping_list_value-3 {
  flex-basis: 10%;
  text-align: center;
  max-width: 10%;
}

.dshipping_list_value-4_title,
.dshipping_list_value-4 {
  flex-basis: 15%;
  text-align: center;
  max-width: 15%;
}

.dshipping_list_value-5_title,
.dshipping_list_value-5 {
  flex-basis: 20%;
  text-align: center;
  max-width: 20%;
}

@media screen and (width <=768px) {
  .dshipping_list_value-1_title,
  .dshipping_list_value-1 {
    flex-basis: 20%;
    max-width: 20%;
  }

  .dshipping_list_value-2_title,
  .dshipping_list_value-2 {
    flex-basis: 35%;
    max-width: 35%;
  }
}

@media screen and (width <=480px) {
  .dshipping_list_value-1_title,
  .dshipping_list_value-2_title,
  .dshipping_list_value-3_title,
  .dshipping_list_value-4_title,
  .dshipping_list_value-5_title {
    height: 40px;
    padding: 2px !important;
    font-size: 8px;
  }
}

.receipt_item_content {
  border-right: none !important;
  border-top: none !important;
}

.receipt_item {
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin-bottom: 10px !important;
}

ul.receipt_table_total2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 35%;
  margin: 10px 0;
  padding: 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
}

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

ul.receipt_table_total2 li {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding-left: 5px;
}

ul.receipt_table_total2 li:nth-child(odd) {
  flex-basis: 57%;
  max-width: 57%;
}

ul.receipt_table_total2 li:nth-child(even) {
  flex-basis: 43%;
  max-width: 43%;
}

ul.receipt_table_total2 li.receipt_total_title {
  background: #efefef;
}

.event_title {
  display: block;
  width: 100%;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}

.receipt_footer {
  flex-wrap: wrap;
}

.dealer_sign_under_text {
  float: right;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-top: 10px;
}

/** 商品登録 **/
tbody.item_create {
  width: 100%;
}

tbody.item_create td:nth-child(odd) {
  width: 40%;
}

tbody.item_create td:nth-child(even) {
  width: 60%;
}

@media screen and (width <=480px) {
  tbody.item_create td {
    display: inline-grid;
  }

  tbody.item_create td:nth-child(odd) {
    width: 100%;
  }

  tbody.item_create td:nth-child(even) {
    width: 100%;
  }
}

.item_create td {
  padding: 15px 10px;
  vertical-align: top;
}

.item_create input[type='text'] {
  padding: 15px 10px;
}

.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 50px auto 0;
  padding: 50px 0;
  border-top: 3px solid #ccc;
}

@media screen and (width <=480px) {
  .btn_area input {
    font-size: 16px;
  }
}

.caution_text {
  flex-basis: 100%;
  padding: 10px;
  color: white;
  background: tomato;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 100%;
}

input.item_create_back_btn {
  flex-basis: 28%;
  padding: 20px;
  color: #333;
  border-radius: 4px;
  text-align: center;
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
  max-width: 28%;
}

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

input.item_create_back_btn:hover {
  color: #c0c0c0;
  background-color: #333;
  border: 1px solid #333;
}

input.item_create_submit_btn {
  flex-basis: 28%;
  padding: 20px;
  color: white;
  border-radius: 4px;
  text-align: center;
  background-color: #2f95c9;
  border: 1px solid #2f95c9;
  max-width: 28%;
}

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

input.item_create_submit_btn:hover {
  color: #2f95c9;
  background-color: white;
  border: 1px solid #2f95c9;
}

input.item_create_preview_btn {
  flex-basis: 28%;
  padding: 20px;
  color: white;
  background: #20b2aa;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #20b2aa;
  max-width: 28%;
}

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

input.item_create_preview_btn:hover {
  color: #20b2aa;
  background-color: white;
  border: 1px solid #20b2aa;
}

input.preview_none {
  display: none;
}

.item_navi {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: space-around;
  margin: 50px auto;
  border-top: 1px solid #2f95c9;
  padding-top: 50px;
}

.item_navi li {
  flex-basis: 40%;
  font-size: 15px;
  max-width: 40%;
}

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

@media screen and (width <=768px) {
  .item_navi li {
    flex-basis: 33%;
    max-width: 33%;
    padding-bottom: 2%;
  }

  .item_navi li:nth-child(n + 3) {
    padding-bottom: 0;
  }
}

@media screen and (width <=480px) {
  .item_navi li {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    max-width: 100%;
    padding-bottom: 10px;
  }
}

.item_navi li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding: 20px;
  color: white;
  background: #2f95c9;
  border-radius: 4px;
  border: 1px solid #2f95c9;
  letter-spacing: 0;
}

.item_navi li a:hover {
  color: #2f95c9;
  background: white;
  border: 1px solid #2f95c9;
}

/* 情報 */
table.dealer_guarantee_area {
  width: 100%;
  background: #efefef;
  border: 3px solid #ccc;
}

table.dealer_guarantee_area tr:nth-child(even) {
  background: white;
}

table.dealer_guarantee_area td:nth-child(odd) {
  width: 30%;
}

@media screen and (width <=480px) {
  table.dealer_guarantee_area td:nth-child(odd) {
    width: 100%;
  }
}

.dealer_guarantee_title {
  font-size: 20px;
  text-align: center;
}

.input_example {
  font-size: 13px;
}

@media screen and (width <=480px) {
  table.message_create_body td:nth-child(odd) {
    width: 20% !important;
  }

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

.message_navi li a {
  width: 100%;
}

/* イベントガイド */
dl.event_guide {
  display: flex;
  flex-wrap: wrap;

  /* border:1px solid #003366;border-radius: 5px; */
  width: 100%;
  margin: 20px 0 50px;
  padding: 0;
}

dl.event_guide dt {
  flex-basis: 100%;
  padding: 0;
  font-size: 1.2rem;
  border-bottom: 2px solid #036;
  font-weight: 700;
  margin-top: 20px;
  max-width: 100%;
}

dl.event_guide dt.event_guide_tittle {
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  border-bottom: none;
}

dl.event_guide dd {
  display: flex;

  /* margin-top: 20px; */
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 0;
  letter-spacing: 1;
  max-width: 100%;
}

/* is-fixed */
.is-fixed {
  position: fixed;
  z-index: 2;
  top: 0 !important;
  left: 0;
  margin-top: 0;
  padding-top: 10px;
}

/* tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.description {
  position: absolute;
  display: none;
  width: 200px;
  padding: 10px;
  font-size: 12px;
  color: #fff;
  background: #444;
  border-radius: 5px;
  line-height: 1.6em;
}

.description::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  border: 5px solid transparent;
  border-bottom: 5px solid #444;
  margin-left: -5px;
}

.tooltip:hover .description {
  top: 30px;
  left: 0;
  display: block;
}

/* popup */

/* ポップアップウインドウの設定 */
.popup {
  position: fixed;
  z-index: 100000;
  display: none;
  margin: auto;
  background: rgb(0 0 0 / 80%);
  inset: 0;
}

.popup::after {
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (width <= 768px) {
  .popup {
    width: 100%;
    height: 100%;
  }
}

.popup-content {
  position: absolute;
  z-index: 100001;
  width: 700px;
  height: 70%;
  margin: auto;
  padding: 0;
  background-color: #fff;
  inset: 0;
  overflow-y: scroll;
}

@media screen and (width <= 480px) {
  .popup-content {
    width: 100%;
  }
}

/* チェックボックスの初期設定 */
#popup-on {
  display: none;
}

/* チェックされたらポップアップウインドウを開く */
#popup-on:checked + .popup {
  display: block;
}

/* 閉じるアイコン（右上） */
.icon-close {
  position: sticky;
  top: 0;
  left: 0;
  display: inline-flex;
  padding: 0 10px;
  font-size: 30px;
  color: #fff;
  background: #000;
}

/* DIP ポップアップウインドウの設定 */
.img-popup {
  position: fixed;
  z-index: 100000;
  display: none;
  margin: auto;
  color: #333;
  background: rgb(0 0 0 / 80%);
  inset: 0;
}

.img-popup::after {
  content: '';
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (width <= 768px) {
  .img-popup {
    width: 100%;
    height: 100%;
  }
}

.img-popup-content {
  position: absolute;
  z-index: 100001;
  width: 768px;
  height: fit-content;
  margin: auto;
  padding: 0;
  background-color: #fff;
  inset: 0;
  max-height: 95%;
  overflow-y: scroll;
}

@media screen and (width <= 480px) {
  .img-popup-content {
    width: 95%;
  }
}

.img-popup-content-header {
  position: relative;
  width: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background: #007abd;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

@media screen and (width <= 768px) {
  .img-popup-content-header {
    padding: 5px 10px;
    font-size: 0.875rem;
    font-weight: normal;
    letter-spacing: 0;
  }
}

@media screen and (width <= 480px) {
  .img-popup-content-header {
    padding: 5px 50px 5px 10px;
    font-size: 0.75rem;
  }
}

ul.img-popup-content-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 20px;
}

ul.img-popup-content-inner li {
  flex-basis: 100%;
  float: none;
  width: auto;
  height: auto;
  margin: auto;
  padding: 10px;
  max-width: 100%;
}

.input-title {
  display: flex;
  justify-content: flex-start;
  width: 600px;
  margin: auto;
}

.count_numb {
  display: flex;
  justify-content: flex-end;
  width: 600px;
  margin: auto;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.2rem;
}

ul.img-popup-content-inner li img.img_pupup {
  display: flex;
  width: auto;
  height: auto;
  margin: auto;
  max-width: 600px;
}

ul.img-popup-content-inner li input.input-txt {
  display: flex;
  width: 600px;
  margin: auto;
  padding: 20px;
}

@media screen and (width <= 480px) {
  ul.img-popup-content-inner li input.input-txt {
    width: 100%;
  }
}

.popup-btn-wrap {
  display: flex;
  margin-bottom: 20px;
}

.popup-btn-submit {
  display: block;
  width: 200px;
  margin: auto;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background: #007abd;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

@media screen and (width <= 480px) {
  .popup-btn-submit {
    width: 49%;
  }
}

.popup-btn-close {
  display: block;
  width: 200px;
  margin: auto;
  padding: 10px 20px;
  font-size: 1rem;
  color: #333;
  background: #aaa;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

@media screen and (width <= 480px) {
  .popup-btn-close {
    width: 49%;
  }
}

.img-icon-close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: inline-flex;
  height: 100%;
  padding: 0 10px;
  font-size: 30px;
  color: #fff;
  background: #000;
  line-height: normal;
}

/* ディーラーカット */
table.dcut_up__table {
  display: table;
  width: 100%;
  margin-top: 20px;
}

@media screen and (width <=480px) {
  table.dcut_up__table {
    table-layout: fixed;
  }
}

table.dcut_up__table thead td:nth-child(odd) {
  background: #b0c4de;
}

table.dcut_up__table tr {
  border-right: 1px solid #2f95c9;
  border-top: 1px solid #2f95c9;
}

@media screen and (width <= 768px) {
  table.dcut_up__table tr {
    padding: 0;
    border-left: 1px solid #2f95c9;
  }

  table.dcut_up__table tr:last-child {
    border-bottom: 1px solid #2f95c9;
  }
}

table.dcut_up__table td {
  padding: 20px 10px;
  border-bottom: 1px solid #2f95c9;
  border-left: 1px solid #2f95c9;
  overflow-wrap: break-word;
}

table.dcut_up__table td:nth-child(odd) {
  width: 30%;
}

@media screen and (width <= 768px) {
  table.dcut_up__table td:nth-child(odd) {
    display: block;
    width: 100%;
  }
}

table.dcut_up__table td:nth-child(even) {
  width: 70%;
}

@media screen and (width <= 768px) {
  table.dcut_up__table td:nth-child(even) {
    display: block;
    width: 100%;
  }
}

table.dcut_up__table td input[type='text'] {
  width: 100%;
  font-size: 16px;
  border-style: none;
  border-width: 0;
  outline: none;
}

table.dcut_up__table td textarea {
  width: 100%;
  height: 500px;
  padding: 10px;
  font-size: 16px;
  border: none;
  outline: none;
}

@media screen and (width <= 768px) {
  table.dcut_up__table td {
    padding: 15px 10px;
    border-left: none;
  }

  table.dcut_up__table td textarea {
    height: 50vh;
  }
}

.dcut_up__info {
  text-align: left !important;
}

.spec_list li {
  position: relative;
  display: block;
  font-size: 14px;
  padding-left: 14px;
}

.spec_list li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.caution_list li {
  position: relative;
  display: block;
  font-size: 14px;
  padding-left: 14px;
}

.caution_list li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.dcut_up__title {
  font-size: 18px;
  font-weight: bold;
}

.dcut_up__subtitle {
  position: relative;
  display: flex;
  font-size: 14px;
  text-align: left;
  line-height: 18px;
  margin-top: 10px;
  padding-left: 14px;
}

.dcut_up__subtitle:first-child {
  margin-top: 0;
}

.dcut_up__subtitle::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.dcut_up__box_wrap {
  margin-bottom: 10px;
}

.dcut_up__box {
  width: 90%;
  height: 100px;
  padding: 10px;
  border: 3px solid;
}

/* 送信ボタン */
.submit_btn {
  display: block;
  width: 50%;
  margin: 20px auto;
  padding: 20px 10px;
  font-size: 14px;
  color: #fff;
  background: dodgerblue;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.submit_btn input {
  display: none;
}

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

/* 21/02/12 追加 */
#repassword_link a {
  color: red !important;
  font-weight: bold !important;
}

.event_data_anchor {
  color: blue !important;
}

.dealerpage_menu {
  position: relative;
  padding: 10px 0;
  font-size: 20px;
  background: url('img/pattern.png');
  text-align: center;
  font-weight: bold;
}

.dealerpage_menu::after {
  content: '';
  position: absolute;
  top: 38%;
  right: 25px;
  display: block;
  width: 8px;
  height: 8px;
  border-right: solid 4px #000;
  border-top: solid 4px #000;
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
}

.dealerpage_menu.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.btn_asterisk {
  position: relative;
  display: block;
  margin: 0 auto;
  font-size: 14px;
  color: #069;
  padding-left: 14px;
}

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

#def_image {
  position: relative;
  z-index: 0;
}

button.img-close {
  z-index: 1046;
  display: block;
  padding: 0;
  background: #333;
  box-shadow: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  outline: none;
  overflow: visible;
}

.img-close {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 20px;
  height: 20px;
  padding: 0 0 18px 10px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-family: Arial, Baskerville, monospace;
  font-style: normal;
  text-decoration: none;
}

.j_view_kbn_off {
  color: #2282ff;
  font-weight: bold;
}

.j_view_kbn_on {
  color: #f00;
  font-weight: bold;
}

.j_view_kbn_none {
  color: #666;
}

dl.normal_item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px dotted #ccc;
  margin-top: 30px;
  padding-top: 2%;
}

dl.normal_item dt,
dl.normal_item dd {
  flex-basis: 100%;
  max-width: 100%;
}

.normal_item_btn_wrap {
  display: block;
  width: 100%;
  margin: 1% auto;
  text-align: center;
}

.normal_item_btn {
  padding: 10px 20px;
  font-size: 1em;
  color: white !important;
  background: #069;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
}

.normal_item_btn:hover {
  color: #fff;
  background: #cdf;
}

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

.honshinsei_btn {
  display: inline-block;
  padding: 5px 10px;
  font-size: 13px;
  color: white !important;
  background: dodgerblue;
  border-radius: 5px;
  border: 1px solid white;
  letter-spacing: 0;
  margin-left: 10px;
}

@media screen and (width <=768px) {
  .honshinsei_btn {
    padding: 5px;
    font-size: 11px;
    line-height: inherit;
    letter-spacing: 0.1em;
    margin-left: 0;
  }
}

.honshinsei_btn2 {
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  color: white !important;
  background: dodgerblue;
  border-radius: 5px;
  border: 1px solid white;
  letter-spacing: 0.2em;
  margin-left: 20px;
}

@media screen and (width <=480px) {
  .honshinsei_btn2 {
    padding: 0 5px;
    font-size: 11px;
    line-height: normal;
    letter-spacing: 0.1em;
    margin-left: 0;
  }
}

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

.torisage_btn {
  display: inline-block;
  padding: 0 10px;
  font-size: 13px;
  color: white !important;
  background: #e83c3c;
  border-radius: 5px;
  border: 1px solid white;
  margin-left: 10px;
}

@media screen and (width <= 768px) {
  .torisage_btn {
    padding: 0 5px;
    font-size: 11px;
    text-align: center;
    line-height: inherit;
    margin-left: 0;
  }
}

.item_list_title {
  position: relative;
  font-size: 18px;
  color: #444;
  background-image: none;
  font-weight: 700;
  padding-left: 18px;
}

@media screen and (width <=480px) {
  .item_list_title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
    padding-left: 14px;
  }
}

.item_list_title::before {
  content: '\f152';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

@media screen and (width <=480px) {
  .item_tr {
    font-size: 12px;
    line-height: 1.2em;
  }
}

.item_table {
  display: table;
  width: 100%;
  border-right: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
}

.item_table tr {
  display: flex;
  font-size: 100%;
  border-bottom: 1px dotted #ccc;
}

@media screen and (width <=480px) {
  .item_table tr {
    font-size: 12px;
    line-height: 1.2em;
  }
}

.item_table td.item1___title {
  width: 35%;
  text-align: center;
}

.item_table td.item1 {
  width: 35%;
  padding-left: 5px;
  word-break: break-all;
}

@media screen and (width <=480px) {
  .item_table td.item1 {
    padding-left: 0;
  }
}

.item_table td.item2 {
  width: 15%;
  text-align: center;
}

.item_table td.item3 {
  width: 15%;
  text-align: center;
}

.item_table td.item4 {
  width: 15%;
  text-align: center;
}

.item_table td.item5 {
  width: 20%;
  text-align: center;
}

.item_table td.item1___title,
.item_table td.item1,
.item_table td.item2,
.item_table td.item3,
.item_table td.item4,
.item_table td.item5 {
  border-left: 1px dotted #ccc;
  padding-bottom: 10px;
  padding-top: 10px;
}

.user_main_navi li a.reset__padding_left {
  padding-left: 0;
}

.announce {
  display: block;
  width: 100%;
  margin: 10px auto;
  padding: 10px;
  color: red;
  background: rgb(255 0 0 / 10%);
  text-align: center;
}

.maintenance_alert {
  width: 100%;
  margin: auto;
  padding: 20px;
  font-size: 1rem;
  color: #b00;
  background: #fcc;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

div.dinfo_list_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: white;
  border-radius: 5px;
  border: 3px solid #036;
}

div.dinfo_list_wrap h4 {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  height: auto;
  margin: auto;
  padding: 1rem;
  font-size: 1.25rem;
  color: white;
  background: #036;
  font-weight: 700;
  max-width: 100%;
}

@media screen and (width <=480px) {
  div.dinfo_list_wrap h4 {
    font-size: 1rem;
  }
}

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

ul.dinfo_list li {
  flex-basis: 100%;
  padding: 0;
  line-height: 2rem;
  max-width: 100%;
}

@media screen and (width <=480px) {
  ul.dinfo_list li {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}

/* 商品名の色付け */
.item_name a {
  color: #069 !important;
  text-decoration: underline;
}

/* チケット配布 */
.list_table {
  display: table;
  width: 100%;
  margin-bottom: 50px;
}

.list_table tr.list_table_thead {
  color: #eee;
  background: #0080ff;
}

.list_table tr.list_table_tbody {
  border-bottom: 1px dotted #666;
}

.list_table tr.list_table_tbody:last-child {
  border-bottom: none;
}

.list_table th {
  width: 40%;
  padding: 10px;
}

.list_table td.td_cols1 {
  width: 25%;
  padding: 10px;
  border-left: 1px dotted #666;
}

.list_table td.td_cols2 {
  width: 35%;
  padding: 10px;
  border-left: 1px dotted #666;
}

.list_table th.ticket_cols1 {
  width: 15%;
  padding: 10px;
}

.list_table td.ticket_cols2 {
  width: 70%;
  padding: 10px;
  border-left: 1px dotted #666;
}

.list_table td.ticket_cols2 input[type='text'] {
  width: 220px;
  padding: 10px;
}

.list_table td.ticket_cols3 {
  width: 15%;
  margin: auto;
  padding: 10px;
  text-align: center;
  border-left: 1px dotted #666;
}

.list_table td.ticket_cols3 input[type='button'] {
  display: none;
}

.list_table td.ticket_cols3 label {
  padding: 5px 10px;
  color: white;
  background: #0080ff;
  border-radius: 5px;
}

@media screen and (width <=768px) {
  .list_table th.ticket_cols1 {
    width: 25%;
  }

  .list_table td.ticket_cols2 {
    width: 55%;
  }

  .list_table td.ticket_cols3 {
    width: 20%;
  }
}

@media screen and (width <=480px) {
  .list_table th.ticket_cols1 {
    display: none;
  }

  .list_table td.ticket_cols2 {
    width: 70%;
  }

  .list_table td.ticket_cols3 {
    width: 30%;
  }
}

dl.how-to-ticket,
dl.ticket_caution {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

dl.how-to-ticket {
  font-size: 1rem;
  color: #2f95c9;
  line-height: 2rem;
}

@media screen and (width <=768px) {
  dl.how-to-ticket {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

dl.ticket_caution {
  font-size: 0.835rem;
  color: #f00;
}

@media screen and (width <=768px) {
  dl.ticket_caution {
    font-size: 0.75rem;
  }
}

dl.how-to-ticket dt,
dl.ticket_caution dt,
dl.how-to-ticket dd,
dl.ticket_caution dd {
  flex-basis: 100%;
  background: none;
  max-width: 100%;
}

dl.ticket_caution dd {
  position: relative;
  padding-left: 1rem;
}

dl.ticket_caution dd::before {
  content: '※';
  position: absolute;
  left: 0;
}

.ticket_item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}

.-is-caution {
  border-radius: 5px;
  border: 1px solid red;
}

.ticket_item_li {
  flex-basis: 100%;
  color: red;
  max-width: 100%;
}

.-list-dot {
  position: relative;
  padding-left: 1.2rem;
}

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

.-is-kiyaku {
  justify-content: center;
  width: 480px;
  margin: 0 auto 20px;
  color: #2f95c9;
  line-height: 2rem;
}

input[type='checkbox']#check_agreement {
  width: 1rem;
  height: 1rem;
  margin-right: 10px;
}

.ticket_item_dt,
.ticket_item_dd {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  background: none;
  line-height: 2rem;
  max-width: 100%;
}

.-list-square {
  position: relative;
}

.-list-square::before {
  content: '■';
}

.ticket_return_btn,
.ticket_confirm_btn {
  flex-basis: 400px;
  justify-content: center;
  margin: auto;
  padding: 15px 0;
  font-size: 1rem;
  border-radius: 5px;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2rem;
}

.ticket_return_btn {
  color: white;
  background-color: #666;
  margin-right: 20px;
}

.ticket_confirm_btn {
  color: white;
  background-color: #0080ff;
  margin-left: 20px;
  transition: ease-in-out 0.2s;
}

/* reserve-request */
article.RR_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

section.RR_sec {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin-bottom: 50px;
  max-width: 100%;
}

section.RR_popup_sec {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  max-width: 100%;
}

h1.RR_title {
  flex-basis: 100%;
  padding: 10px;
  font-size: 1.125rem;
  color: white;
  background: #2f95c9;
  text-align: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  letter-spacing: 0.15rem;
  max-width: 100%;
}

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

.RQST,
.RQST-LIST {
  position: relative;
  font-family: 'Font Awesome 5 Free';
}

.RQST::before {
  content: '\f044';
  font-weight: 900;
  padding-right: 0.3rem;
}

.RQST-LIST::before {
  content: '\f00b';
  font-weight: 900;
  padding-right: 0.3rem;
}

div.RR_content {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px;
  border: 1px solid #2f95c9;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  max-width: 100%;
}

p.RR_text {
  flex-basis: 100%;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.2rem;
  max-width: 100%;
}

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

ul.RR_list_title {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  background: #1e90ff;
  border: 1px solid #191970;
  max-width: 100%;
}

ul.RR_list_title li {
  padding: 5px;
  font-size: 0.875rem;
  color: white;
  text-align: center;
  border-left: 1px solid #191970;
}

ul.RR_list_title li:nth-child(1) {
  flex-basis: 5%;
  border-left: none;
}

ul.RR_list_title li:nth-child(2) {
  flex-basis: 15%;
}

ul.RR_list_title li:nth-child(3) {
  flex-basis: 30%;
}

ul.RR_list_title li:nth-child(4) {
  flex-basis: 30%;
}

ul.RR_list_title li:nth-child(5) {
  flex-basis: 20%;
}

@media screen and (width <=820px) {
  ul.RR_list_title li:nth-child(2) {
    flex-basis: 25%;
  }

  ul.RR_list_title li:nth-child(5) {
    flex-basis: 10%;
  }
}

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

ul.RR_list_item {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border: 1px solid #191970;
  border-top: none;
  max-width: 100%;
}

ul.RR_list_item li {
  align-self: center;
  padding: 5px;
  font-size: 0.875rem;
  color: #2f95c9;
  border-left: 1px solid #191970;
  min-height: 38px;
}

ul.RR_list_item li a {
  color: blue !important;
  text-decoration: underline;
}

ul.RR_list_item li:nth-child(1) {
  display: flex;
  flex-basis: 5%;
  justify-content: center;
  padding: 0;
  border-left: none;
  cursor: pointer;
}

ul.RR_list_item li:nth-child(2) {
  flex-basis: 15%;
}

ul.RR_list_item li:nth-child(3) {
  flex-basis: 30%;
}

ul.RR_list_item li:nth-child(4) {
  flex-basis: 30%;
}

ul.RR_list_item li:nth-child(5) {
  flex-basis: 20%;
  text-align: center;
}

input[type='checkbox'] {
  width: 16px;
}

.check {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  max-width: 100%;
}

@media screen and (width <=820px) {
  ul.RR_list_item li:nth-child(2) {
    flex-basis: 25%;
  }

  ul.RR_list_item li:nth-child(5) {
    flex-basis: 10%;
  }
}

@media screen and (width <=480px) {
  ul.RR_list_item {
    padding: 5px;
    border-bottom: none;
    border-top: 1px solid #191970;
  }

  ul.RR_list_item:last-of-type {
    border-bottom: 1px solid #191970;
  }

  ul.RR_list_item li {
    padding: 0;
    font-size: 0.75rem;
    border-left: none;
    min-height: unset;
  }

  ul.RR_list_item li:nth-child(n) {
    flex-basis: 100%;
  }

  ul.RR_list_item li:nth-child(5) {
    text-align: left;
  }

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

section.RR_sec a.RR_btn {
  display: flex;
  flex-basis: 30%;
  align-items: baseline;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 10px 20px;
  color: white !important;
  border-radius: 4px;
  background-color: #1e90ff;
  cursor: pointer;
}

@media screen and (width <=820px) {
  section.RR_sec a.RR_btn {
    flex-basis: 100%;
  }
}

section.RR_sec a.RR_btn:hover {
  color: #1e90ff !important;
  background-color: #e0ffff;
}

section.RR_sec a.RR_btn_spcr {
  margin-top: 20px;
}

div.RR_lot_list_wrap {
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (width <=1280px) {
  div.RR_lot_list_wrap {
    overflow: auto;
  }
}

ul.RR_lot_list_title {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border: 1px solid #191970;
  max-width: 100%;
}

ul.RR_lot_list_title li {
  padding: 5px;
  font-size: 0.75rem;
  color: white;
  background: #1e90ff;
  text-align: center;
  border-left: 1px solid #191970;
}

ul.RR_lot_list_title li:nth-child(1) {
  flex-basis: 110px;
  border-left: none;
}

ul.RR_lot_list_title li:nth-child(2) {
  flex-basis: 200px;
}

ul.RR_lot_list_title li:nth-child(3) {
  flex-basis: 150px;
}

ul.RR_lot_list_title li.RR_lot {
  flex-grow: 1;
  flex-basis: 80px;
  padding: 5px;
  font-size: 0.75rem;
  color: white;
  background: #008080;
  text-align: center;
  line-height: 1.2rem;
  border-left: 1px solid #2f4f4f;
}

ul.RR_lot_list_item {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  border: 1px solid #191970;
  border-top: none;
  max-width: 100%;
}

ul.RR_lot_list_item li {
  padding: 5px;
  font-size: 0.75rem;
  color: #1e90ff;
  border-left: 1px solid #191970;
}

ul.RR_lot_list_item li:nth-child(1) {
  flex-basis: 110px;
  border-left: none;
}

ul.RR_lot_list_item li:nth-child(2) {
  flex-basis: 200px;
}

ul.RR_lot_list_item li:nth-child(3) {
  flex-basis: 150px;
}

ul.RR_lot_list_item li a {
  color: blue !important;
  text-decoration: underline;
}

ul.RR_lot_list_item li:nth-child(1) {
  border-left: none;
}

ul.RR_lot_list_item li.RR_lot {
  flex-grow: 1;
  flex-basis: 70px;
  padding: 5px;
  font-size: 0.75rem;
  color: #008080;
  text-align: center;
  border-left: 1px solid #2f4f4f;
}

@media screen and (width <=1280px) {
  ul.RR_lot_list_title,
  ul.RR_lot_list_item {
    flex-basis: 1280px;
    width: 1280px;
    max-width: 1280px;
  }

  ul.RR_lot_list_title {
    height: 55px;
  }
}

.popup-content {
  width: 70%;
}

@media screen and (width <=820px) {
  .popup-content {
    width: 90%;
  }
}

.popup-content-header {
  display: flex;
}

dl.RR_time_table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
  font-size: 0.875rem;
  border: 1px solid #555;
  border-bottom: none;
}

dl.RR_time_table dd,
div.RR_tt_title {
  border-bottom: 1px solid #555;
}

@media screen and (width <=480px) {
  dl.RR_time_table dd,
  div.RR_tt_title {
    font-size: 0.75rem;
  }
}

dl.RR_time_table dd {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 50%;
  align-content: start;
}

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

dl.RR_time_table dd:nth-child(even) {
  border-left: 1px solid #555;
}

@media screen and (width <=820px) {
  dl.RR_time_table dd:nth-child(even) {
    border-left: none;
  }
}

dl.RR_time_table dd.col2 {
  flex-basis: 100%;
  max-width: 100%;
}

div.RR_tt_title {
  flex-basis: 100%;
  align-self: flex-start;
  padding: 5px;
  color: #1e90ff;
  background: #efefef;
  text-align: center;
  max-width: 100%;
}

div.RR_tt_txt {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 5px;
  color: #333;
  line-height: 1.5rem;
}

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

span.RR_tt_example {
  position: relative;
  display: flex;
  flex-basis: 100%;
  padding: 5px 5px 5px 30px;
  color: orangered;
  border-top: 2px dotted #bbb;
  margin-top: 5px;
  max-width: 100%;
}

span.RR_tt_example::before {
  content: '例）';
  position: absolute;
  top: 5px;
  left: 5px;
}

div.sort_tool {
  justify-content: space-between;
}

@media screen and (width <=480px) {
  div.sort_tool {
    flex-wrap: wrap;
    margin: 0 auto 20px;
  }
}

div.sort_tool_act {
  flex-basis: 30%;
  max-width: 30%;
}

@media screen and (width <=820px) {
  div.sort_tool_act {
    flex-basis: 45%;
    max-width: 45%;
  }
}

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

div.act_event,
div.act_sort {
  position: relative;
  padding-left: 100px;
}

@media screen and (width <=480px) {
  div.act_event,
  div.act_sort {
    padding-left: 70px;
  }
}

div.act_event::before,
div.act_sort::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100%;
  padding: 5px;
  font-size: 0.75rem;
  color: white;
  background-color: #1e90ff;
}

@media screen and (width <=480px) {
  div.act_event::before,
  div.act_sort::before {
    width: 70px;
  }
}

div.act_event::before {
  content: 'RR登録';
}

div.act_sort::before {
  content: 'ソート順';
}

div.act_event select,
div.act_sort select {
  width: 100%;
}

@media screen and (width <=820px) {
  div.act_event select,
  div.act_sort select {
    height: 18px;
    margin: 0 auto;
    padding: 0;
    font-size: 0.75rem;
  }
}

div.act_event select option,
div.act_sort option {
  text-align: center;
}

.item__box {
  width: 100%;
  margin-bottom: 20px;
}

.item__subbox {
  position: relative;
  padding: 20px;
  background: #f1f1f1;
  margin-bottom: 10px;
}

.item__subbox_delete {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0 5px;
  font-size: 12px;
  color: #f1f1f1;
  background: #555;
  border-radius: 4px;
  cursor: pointer;
}

.item__subbox_delete::before {
  content: '\f410';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
}

.-is-delete-none {
  color: #ccc;
  background: #999;
  cursor: default;
  pointer-events: none;
}

.item__detail li {
  display: block;
}

.item__detail dl {
  display: flex;
}

.item__detail dt {
  flex-basis: unset;
  background: none;
  margin-top: 0;
}

.item__detail dd {
  width: auto;
}

.item__detail__term,
.item__detail__description {
  line-height: 1.69231;
}

.item__detail__term {
  width: 70px;
  font-size: 13px;
}

.item__detail__description {
  font-size: 14px;
  font-weight: bold;
}

.item__detail__description::before {
  content: '：';
  font-weight: normal;
  margin-right: 5px;
}

.item__detail__description.-id {
  font-size: 13px;
  font-weight: normal;
}

.item__table {
  width: 100%;
  margin-top: 10px;
}

.item__table th {
  background: #fff;
  border: 1px solid #2f95c9;
}

.item__table th,
.item__table td {
  padding: 5px;
  font-size: 12px;
  text-align: center;
}

.item__table th,
.item__table td {
  padding: 5px;
  font-size: 12px;
  text-align: center;
}

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

  .item__table thead,
  .item__table tbody {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
  }

  .item__table th,
  .item__table td {
    display: flex;
    justify-content: center;
  }

  .item__table th,
  .item__table td {
    border: none;
  }

  .item__table th:first-of-type,
  .item__table td:first-of-type {
    border-top: 1px solid #2f95c9;
  }

  .item__table th {
    border-bottom: 1px solid #2f95c9;
    border-left: 1px solid #2f95c9;
    border-right: 1px solid #2f95c9;
  }

  .item__table td {
    background: #fff;
    border-bottom: 1px solid #2f95c9;
    border-right: 1px solid #2f95c9;
  }
}

/* イベントのセレクト */
.dealer_nav {
  flex-wrap: unset;
  justify-content: space-between;
}

.event_list_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: unset;
  flex-basis: unset;
  align-items: flex-end;
  align-self: unset;
  justify-content: unset;
  gap: 10px;
  max-width: unset;
}

@media screen and (width <=480px) {
  .event_list_wrap {
    flex-basis: 50%;
    align-self: 50%;
  }
}

.event_logo {
  flex-basis: unset;
}

.event_select_wrap {
  display: flex;
  align-self: stretch;
  width: 90%;
  margin: 0 auto;
}

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

.event_select_lead {
  padding: 5px 10px;
  font-size: 13px;
  color: #fff;
  background: #07f;
}

@media screen and (width <=480px) {
  .event_select_lead {
    padding: 0 5px;
    font-size: 11px;
  }
}

.event_select_wrap select {
  flex: 1 0 0;
  height: unset;
  margin: 0;
  border-radius: 0;
  text-align: center;
  border: 1px solid #07f;
  outline: none;
}

@media screen and (width <=480px) {
  .event_select_wrap select {
    font-size: 11px;
  }
}

/* データ照会 */
.view_data_wrap,
.view_data {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.view_data_title,
.view_data_sub_title {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 600;
}

.view_data_sub_title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 1.5rem;
}

.view_data_sub_title::before {
  content: '\f201';
  position: absolute;
  top: 50%;
  left: 0;
  color: #b00;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transform: translateY(-50%);
}

.view_data_sub_title span {
  font-size: 1rem;
  line-height: 1;
}

.view_data_sub_title small {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: normal;
}

@media screen and (width <=1050px) {
  .view_data_sub_title {
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 0.75rem;
  }

  .view_data_sub_title::before {
    top: -8px;
    transform: none;
  }
}

@media screen and (width <=480px) {
  .view_data_sub_title small {
    line-height: 1.5;
  }
}

.view_data_nav {
  display: flex;
  flex-direction: column;
  align-self: center;
}

#contaner .view_data_nav a {
  padding: 10px 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #2f95c9;
}

#contaner .view_data_nav a:hover,
#contaner .view_data_nav a.is-active {
  color: #fff !important;
  background: #2f95c9;
}

.view_data_select {
  position: relative;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding-left: 100px;
}

.view_data_select::before {
  content: '表示するデータ';
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100%;
  padding: 5px;
  font-size: 0.7rem;
  color: white;
  background-color: #2f95c9;
  box-sizing: border-box;
}

.view_data_select select {
  padding: 0 5px;
  font-size: 14px;
  background: #fff;
  border: none;
}

.view_data {
  gap: 10px;
}

.view_data_flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

@media screen and (width <=480px) {
  .view_data_flex {
    gap: 0.25rem;
    padding: 0;
  }
}

.-flex-item-6,
.-flex-item-3 {
  display: flex;
  gap: 1rem;
}

.-flex-item-6 {
  gap: 0;
  border: 1px solid #ccc;
}

@media screen and (width <=480px) {
  .-flex-item-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .-flex-item-3 {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.-flex-item-6 div,
.-flex-item-3 div {
  display: flex;
}

.-flex-item-6 div {
  justify-content: center;
  gap: 1rem;
  width: calc(100% / 6);
}

@media screen and (width <=768px) {
  .-flex-item-6 div {
    gap: 0.5rem;
  }
}

@media screen and (width <=480px) {
  .-flex-item-6 div {
    width: 100%;
  }

  .-flex-item-6 div:first-child {
    grid-row: span 5;
  }
}

.-flex-item-3 div {
  width: calc((100% - 2rem) / 3);
  border: 1px solid #ccc;
}

@media screen and (width <=480px) {
  .-flex-item-3 div {
    width: 100%;
  }
}

.-flex-item-title,
.-flex-item-value {
  padding: 10px 0;
  font-size: 0.875rem;
  text-align: center;
}

@media screen and (width <=768px) {
  .-flex-item-title,
  .-flex-item-value {
    font-size: 0.75rem;
  }
}

.-flex-item-title {
  flex-basis: 200px;
  background-color: #f1f1f1;
}

@media screen and (width <=768px) {
  .-flex-item-title {
    flex-grow: 1;
    flex-basis: auto;
  }
}

@media screen and (width <=768px) {
  .-flex-item-3 div .-flex-item-title {
    flex-grow: 0;
    flex-basis: 50%;
  }
}

.-flex-item-3 div .-flex-item-value {
  flex-grow: 1;
  flex-basis: auto;
}

.-gold,
.-silver,
.-brons,
.-fourth-fifth {
  display: flex;
  flex-basis: 30px;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
  border-radius: 50%;
  font-weight: bold;
}

@media screen and (width <=768px) {
  .-gold,
  .-silver,
  .-brons,
  .-fourth-fifth {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 0.625rem;
  }
}

.-gold {
  color: #5a4500; /* 文字色も調整 */
  background: linear-gradient(135deg, #ffe766 0%, #f2d84a 40%, #fff4a6 100%);
}

.-silver {
  color: #3a3a3a;
  background: linear-gradient(135deg, #e6e6e6 0%, #d8d8d8 40%, #fafafa 100%);
}

.-brons {
  color: #4a2d14;
  background: linear-gradient(135deg, #f0bf8c 0%, #e3a670 40%, #f8d7b8 100%);
}

.-fourth-fifth {
  background-color: #f1f1f1;
}

.view_data_sort {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  width: calc(100% - 1rem);
  margin-top: -1rem;
}

.view_data_sort select {
  margin: 0;
  font-size: 0.8125rem;
  border: 1px solid #ccc;
}

@media screen and (width <=480px) {
  .view_data_sort {
    justify-content: flex-start;
    width: 100%;
    margin-top: 0;
  }

  .view_data_sort select {
    font-size: 0.75rem;
  }
}

.view_data_table {
  width: calc(100% - 2rem);
  margin: auto;
  border-collapse: collapse;
}

.view_data_table th,
.view_data_table td {
  padding: 15px 5px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.25;
  border: 1px solid #ccc;
}

@media screen and (width <=768px) {
  .view_data_table th,
  .view_data_table td {
    font-size: 0.75rem;
  }
}

.view_data_table th {
  background-color: #f1f1f1;
}

#contaner .view_data_table td a {
  color: #07f;
  text-decoration: underline;
}

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

  .view_data_table thead {
    display: none;
  }

  .view_data_table tr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ccc;
    border-bottom: none;
    border-left: none;
    margin-bottom: 15px;
  }

  .view_data_table td {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }

  .view_data_table td::before {
    content: attr(data-label);
    font-size: 0.625rem;
    color: #333;
    font-weight: bold;
  }

  .-span-2 {
    grid-column: span 2;
  }

  .-span-4 {
    grid-column: span 4;
  }
}

.content_main tr:nth-child(even) {
  background: #f7f9fb;
}

#contaner .pagenation__item.-current a {
  color: #fff;
}

.asterisk {
  position: relative;
  font-size: 0.875rem;
  color: #777;
  line-height: 1.5;
  margin-top: 1rem;
  padding-left: 1rem;
}

.asterisk.-fs-1rem {
  font-size: 1rem;
  color: #444;
}

.asterisk:first-child {
  margin-top: 0;
}

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

@media screen and (width <= 480px) {
  .asterisk {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .asterisk.-fs-1rem {
    font-size: 0.8125rem;
  }
}

.-pc-none {
  display: none;
}

.-sp-none {
  display: inline-block;
}

@media screen and (width <=480px) {
  .-pc-none {
    display: block;
  }

  .-sp-none {
    display: none;
  }
}

/* アナログ本申請書 */

/*
.honshinsei_btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
} */
.-honshinsei-txt {
  font-size: 0.75rem;
  line-height: 0.75rem;
}

.-honshinsei-limit {
  display: block;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: red;
  background: rgb(255 255 255 / 80%);
  text-align: center;
  line-height: 0.75rem;
}

/* TFO16.5アナウンス用 */
.tfo_announce {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 5px;
  border: 1px dotted #ccc;
  margin-bottom: 20px;
}

.announce_title {
  font-size: 16px;
  color: #191970;
  text-align: center;
  border-bottom: 1px solid #07f;
  font-weight: 600;
  padding-bottom: 5px;
}

.announce_lead {
  font-size: 14px;
  color: #444;
}

.announce_lead em {
  color: #e83c3c;
  font-weight: 600;
}

.announce_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.announce_list li {
  align-self: flex-start;
  font-size: 14px;
  background-color: lightyellow;
  list-style: disc;
  list-style-position: inside;
}

.announce_list li.__asterisk {
  position: relative;
  font-size: 12px;
  color: #777;
  background: none;
  line-height: 12px;
  list-style: none;
  padding-left: 15px;
}

.announce_list li.__asterisk::before {
  content: '※';
  position: absolute;
  left: 0;
}

.__caution {
  position: relative;
  display: flex;
  font-size: 14px;
  color: #b00;
  line-height: 1.8;
  padding-left: 16px;
}

.__caution::before {
  content: '※';
  position: absolute;
  left: 0;
}
