@charset "UTF-8";
body {
  background-color: #000;
  background-repeat: no-repeat;
}
header {
  position: fixed;
  top: 0;
  z-index: 90;
  width: 100%;
  text-align: center;
}
header .head_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .head_wrap .site_logo {
  text-align: left;
}
header .head_wrap .head_nav {
  display: flex;
  flex-wrap: wrap;
  text-align: right;
}
header .head_wrap .head_nav .mailIcon {
  position: relative;
}
header .head_wrap .head_nav .mailIcon span {
  padding: 0.2vh 0.4vw;
  position: absolute;
  background-color: #f00;
  border-radius: 5px;
  font-size: 0.7rem;
  z-index: 10;
}
header .head_wrap #Icon,
header .head_wrap #menuIcon {
  position: relative;
  cursor: pointer;
  display: block;
}
header .head_wrap #menuIcon {
  z-index: 800;
}
header .head_wrap #Icon {
  display: block;
  transition: opacity 0.3s ease;
}
header .head_wrap #navMenu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background-color: rgba(8, 69, 66, 0.9);
  box-shadow: -4px 6px 10px 0px rgba(0, 0, 0, 0.7);
  border-radius: 0 0 0 20px;
}
header .head_wrap #navMenu dl.slide_contents dt.menu_caption {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  z-index: 1100;
}
header .head_wrap #navMenu dl.slide_contents dd.user_info dl.user_details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .head_wrap #navMenu dl.slide_contents dd.user_info dl.user_details dt {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0;
  width: 50%;
  text-align: center;
}
header .head_wrap #navMenu dl.slide_contents dd.user_info dl.user_details dd {
  background: #fff;
  width: 50%;
  color: #f00;
}
header .head_wrap #navMenu dl.slide_contents dd.contact_details .contact_btn_area li {
  text-align: center;
  font-weight: 800;
}
header .head_wrap #navMenu dl.slide_contents dd.contact_details .contact_btn_area .commonBtn {
  width: 100%;
}
header .head_wrap #navMenu dl.slide_contents dd.contact_details .contact_btn_area .text_list {
  color: #83fff9;
}
header .head_wrap #navMenu dl.slide_contents dd.contact_details .memo {
  text-align: center;
}
header .head_wrap #navMenu dl.slide_contents dd.contact_details .memo span {
  display: block;
}
header .head_wrap #navMenu dl.slide_contents dd.gloval_nav ul.contents_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* ← 2列 */
}
header .head_wrap #navMenu dl.slide_contents dd.gloval_nav ul.contents_menu a {
  width: 100%;
}
header .head_wrap #navMenu dl.slide_contents dd.gloval_nav ul.contents_menu li {
  padding: 3vw 0;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  text-align: center;
  width: 100%;
}
header .head_wrap #navMenu.open {
  transform: translateX(0);
}
header .userData {
  display: inline-block;
  background-color: rgba(8, 69, 66, 0.9);
  border-radius: 0 0 10px 10px;
  text-align: center;
}
header .userData li,
header .userData dl,
header .userData dt,
header .userData dd {
  display: inline-block;
}
header .userData li dd {
  color: #83fff9;
  font-weight: 800;
}
header.logoff .head_wrap .site_logo {
  margin: 0 auto;
}
footer {
  position: relative;
  background-color: #000;
}
footer * {
  color: #fff;
}
footer .wrap p.pageTop {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  border-radius: 5px 5px 0 0;
  background: #000;
}
footer .wrap .gloval_nav li {
  display: inline-block;
}
footer .wrap .gloval_nav li a {
  color: #ccc;
}
footer .wrap .caution {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  list-style: disc inside;
  text-align: left;
}
footer .wrap .caution li {
  color: #ccc;
}
footer .wrap .caution li:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer .wrap .copyright {
  color: #ccc;
}
footer.logoff {
  padding-bottom: 5vh;
}
.fixed_nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 50;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 1%, #000000 45% 100%);
  background-repeat: no-repeat;
}
.fixed_nav ul {
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.mainCaption {
  position: relative;
  display: inline-block;
  font-optical-sizing: auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-shadow: 0px 0px 20px #000000;
}
/* 下に表示する画像 */
.mainCaption::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  /* 完全センター揃え */
  background-image: url("../../img/w_img/captionDeco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.roundCaption {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-radius: 50px;
  font-weight: 800;
}
.simpleCaption {
  font-weight: 900;
}
.commonCaption {
  background-color: rgba(0, 0, 0, 0.7);
  font-weight: 800;
  color: #fff;
}
.commonBtn {
  position: relative;
  border-radius: 50px;
  color: #fff;
  align-items: center;
}
.commonBtn::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.commonBtn.simple {
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.7);
}
.commonBtn.white {
  background-image: linear-gradient(#fff, #ccc);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #000;
}
.commonBtn.red {
  background-image: linear-gradient(#f00, #8b0000);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.commonBtn.orange {
  background-image: linear-gradient(#f90, #ff4e00);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.commonBtn.yellow {
  background-image: linear-gradient(#ffba00, #ff7800);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.commonBtn.blue {
  background-image: linear-gradient(#00c5e2, #0085e2);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.commonBtn.navy {
  background-image: linear-gradient(#1a40ae, #001c64);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.commonBtn.gray {
  background-color: #666;
  box-shadow: 5px 5px 0px 0px #000000;
  color: #ccc;
}
.commonBtn.small {
  display: inline-block;
  font-weight: 800;
}
.commonBtn.middle {
  display: inline-block;
  font-weight: 800;
}
.commonBtn.large {
  display: inline-block;
  font-weight: 800!important;
  font-family: "M PLUS 1", sans-serif !important;
}
.commonBtn.arrow::before {
  background-image: url("../../img/w_img/btnIcon_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.file::before {
  background-image: url("../../img/w_img/btnIcon_file.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.cart::before {
  background-image: url("../../img/w_img/btnIcon_cart.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.morning::before {
  background-image: url("../../img/w_img/btnIcon_morning.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.day::before {
  background-image: url("../../img/w_img/btnIcon_day.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.night::before {
  background-image: url("../../img/w_img/btnIcon_night.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.midnight::before {
  background-image: url("../../img/w_img/btnIcon_midnight.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.chat::before {
  background-image: url("../../img/w_img/btnIcon_chat.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.tel::before {
  background-image: url("../../img/w_img/btnIcon_tel.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.commonBtn.soldout::before {
  background-image: url("../../img/w_img/btnIcon_soldout.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.btnArea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.btnArea a.commonBtn {
  font-family: "M PLUS 1", sans-serif;
}
.item_section .item_details {
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.item_section .item_details .freetext {
  background: url("../../img/w_img/patternBg_grid.png");
  border-radius: 10px;
  text-align: left;
  color: #000;
  font-weight: 800;
}
.item_section .item_details .reserve_list li {
  background-color: rgba(255, 255, 255, 0.7);
}
.item_section .item_details .reserve_list li label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.item_section .item_details .reserve_list li label .name {
  color: #000;
}
.item_section .item_details .reserve_list li label p.amount {
  margin: 0;
  color: #f00;
  font-weight: 800;
}
.item_section .item_details .reserve_list li label p.amount span {
  color: inherit;
  font-weight: inherit;
}
.item_section .item_details:nth-last-of-type(1) {
  margin-bottom: 0;
}
.item_section .item_details.special {
  background-color: rgba(255, 0, 0, 0.5);
}
.item_section .item_details.vip {
  background-image: linear-gradient(90deg, #f7c97266, #64420266 25%, #f7c97266 50%, #64420266 75%, #f7c97266);
}
.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.btn_area a {
  width: 48%;
}
.btn_area li.submit {
  width: 48%;
}
.resultProf {
  background-color: #fff;
  background: url("../../img/w_img/patternBg_grid.png");
  box-shadow: 0px 0px 15px #000000;
}
.resultProf dt,
.resultProf .raceProf,
.resultProf .raceDate,
.resultProf figure {
  margin: 0 auto 3%;
  width: 90%;
}
.resultProf figure {
  padding-top: 4%;
}
.resultProf dl dt {
  color: #000;
  font-weight: 900;
  line-height: 100%;
}
.resultProf dl .raceDate {
  color: #000;
}
.resultProf dl .raceProf {
  background-color: #084542;
}
.resultProf dl .amount {
  background-color: #f00;
  background-image: url("../../img/w_img/result_hitIcon.png");
  background-repeat: no-repeat;
  background-position: center right;
  font-weight: 900;
  text-align: left;
}
.resultProf dl .amount span {
  font-weight: 900;
}
.gridResult {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.sliderResult {
  background-image: url("../../img/w_img/lp_sect5_bg.png");
  background-repeat: no-repeat;
  box-shadow: 0px 0px 30px #000000;
  background-position: center center;
}
.contactSection {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #26827e;
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.contactSection .contactDetails {
  margin: 0 auto;
}
.contactSection .contactDetails .btn_area li {
  width: 100%;
}
.contactSection .contactDetails .btn_area li span {
  color: #666;
}
.contactSection .contactDetails p.text {
  margin-bottom: 0;
}
.common_table {
  width: 100%;
}
.common_table th {
  background-color: rgba(0, 0, 0, 0.7);
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #fff;
  text-align: center;
}
.common_table td {
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #000;
  text-align: left;
  color: #000;
}
.common_table td span {
  display: block;
  color: #000;
}
.common_table .amount {
  color: #f00;
  font-weight: 800;
}
.common_table .amount span {
  display: inline-block;
  font-weight: 800;
  color: #f00;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}
.talkThread li {
  display: flex;
  flex-wrap: wrap;
}

.talkThread li time {width: 100%;font-size: 14px;margin-top: 4px;}
.send time {text-align: right;}
.reception time {text-align: left;}

.talkThread li .talk_details {
  border-radius: 10px;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  text-align: left;
  color: #000;
  word-break: break-all;
}
.talkThread li .talk_details::after {
  content: "";
  position: absolute;
  border-style: solid;
}
.talkThread li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.talkThread .send {
  flex-direction: row-reverse;
}
.talkThread .send .talk_details {
  background: #fff;
}
.talkThread .send .talk_details::after {
  right: 0;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  translate: 100% -50%;
}
.talkThread .reception .talk_details {
  background: #e2f7f6;
}
.talkThread .reception .talk_details::after {
  left: 0;
  border-width: 5px 10px 5px 0;
  border-color: transparent #e2f7f6 transparent transparent;
  translate: -100% -50%;
}
.page_flow li {
  display: inline-block;
  position: relative;
  font-weight: 700;
  text-shadow: 0px 0px 10px #000000;
}
.page_flow li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #fff;
}
.page_flow .visit {
  color: #83fff9;
}
.page_flow li:nth-last-of-type(1)::after {
  display: none;
}
.pagenation {
  font-weight: 800;
}
.form_section {
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.form_section #errmsg {
  list-style: disc inside;
}
.form_section #errmsg li {
  color: #fc0;
  font-weight: 800;
}
.form_section .form_box {
  text-align: left;
}
.form_section .form_box dd {
  margin-bottom: 2vh;
}
.form_section .form_box dd textarea,
.form_section .form_box dd input[type="email"],
.form_section .form_box dd input[type="number"],
.form_section .form_box dd input[type="text"] {
  background-color: #ededed;
  border-radius: 3px;
  width: 100%;
}
.form_section .form_box dd.em {
  font-weight: 800;
  color: #83fff9;
}
.form_section .form_box .submit {
  text-align: center;
}
.form_section .form_box select {
  border-radius: 3px;
  width: 100%;
  color: #000;
}
.form_section .text.link {
  text-decoration: underline;
}
.form_section li:nth-last-of-type(1) {
  margin-bottom: 0!important;
}
.comp_section {
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.comp_section .text strong {
  font-family: inherit;
  font-weight: 800;
  color: #83fff9;
}
dl.rule_section {
  margin: 0 auto;
  text-align: left;
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
dl.rule_section dt {
  font-weight: 800;
  color: #83fff9;
}
dl.rule_section dd ul {
  list-style: disc inside;
}
dl.rule_section dd:nth-last-of-type(1) {
  margin-bottom: 0;
}
.commonBg {
  margin: 0 auto;
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.todaysRace .todaysRace_list {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
  margin: 0 auto;
}
.todaysRace .todaysRace_list li {
  background: url("../../img/w_img/patternBg_grid.png") #fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.todaysRace .todaysRace_list li h4 {
  font-weight: 800;
  color: #000;
}
.todaysRace .todaysRace_list li .raceIcon {
  text-align: right;
}
.todaysRace .todaysRace_list li .raceIcon li {
  padding: 0;
  display: inline-block;
}
.todaysRace .todaysRace_list li .raceSchedule {
  background-color: #084542;
  border-radius: 5px;
  color: #fff;
  width: 100%;
}
.contentsList ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contentsList ul li {
  background-color: #fff;
  background: url("../../img/w_img/patternBg_grid.png");
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.contentsList ul li .text {
  color: #000;
}
.selectPlan li {
  background-color: rgba(0, 0, 0, 0.7);
  border: 3px solid;
  border-radius: 10px;
}
.selectPlan li dl dt del {
  text-decoration: line-through;
}
.selectPlan li dl dt strong {
  font-weight: 900;
  font-size: 1.5rem;
}
.selectPlan li dl dd {
  width: 100%;
}
.selectPlan .day {
  border-color: #f90;
}
.selectPlan .day strong {
  color: #f90;
}
.selectPlan .day .commonBtn {
  background-image: linear-gradient(#f90, #ff4e00);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.selectPlan .day .commonBtn::before {
  background-image: url("../../img/w_img/btnIcon_day.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.selectPlan .morning {
  border-color: #fc0;
}
.selectPlan .morning strong {
  color: #fc0;
}
.selectPlan .morning .commonBtn {
  background-image: linear-gradient(#ffba00, #ff7800);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.selectPlan .morning .commonBtn::before {
  background-image: url("../../img/w_img/btnIcon_morning.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.selectPlan .night {
  border-color: #09f;
}
.selectPlan .night strong {
  color: #09f;
}
.selectPlan .night .commonBtn {
  background-image: linear-gradient(#00c5e2, #0085e2);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.selectPlan .night .commonBtn::before {
  background-image: url("../../img/w_img/btnIcon_night.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.selectPlan .midnight {
  border-color: #1e4bcb;
}
.selectPlan .midnight strong {
  color: #1e4bcb;
}
.selectPlan .midnight .commonBtn {
  background-image: linear-gradient(#1a40ae, #001c64);
  box-shadow: 5px 5px 0px 0px #000000;
  color: #fff;
}
.selectPlan .midnight .commonBtn::before {
  background-image: url("../../img/w_img/btnIcon_midnight.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.selectPlan .soldout {
  border-color: #666;
}
.selectPlan .soldout dt {
  color: #666;
}
.selectPlan .soldout dt strong {
  color: #666;
}
.selectPlan .soldout .commonBtn {
  background-color: #666;
  box-shadow: 5px 5px 0px 0px #000000;
  color: #ccc;
}
.selectPlan .soldout .commonBtn::before {
  background-image: url("../../img/w_img/btnIcon_soldout.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.selectPlan .soldout a {
  pointer-events: none;
}
.w_contentsWrap.index .event ul li {
  box-shadow: 0px 0px 30px #000000;
}
.w_contentsWrap.index .event ul a:nth-last-of-type(1) li {
  margin-bottom: 0;
}
.w_cmp .cmp_overview,
.w_cmp .cmp_details {
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.w_cmp .cmp_details .cmp_freetext {
  background: url("../../img/w_img/patternBg_grid.png") #fff;
  border-radius: 10px;
  color: #000;
}
.w_cmp .cmp_details .cmp_freetext p,
.w_cmp .cmp_details .cmp_freetext table,
.w_cmp .cmp_details .cmp_freetext th,
.w_cmp .cmp_details .cmp_freetext td,
.w_cmp .cmp_details .cmp_freetext section,
.w_cmp .cmp_details .cmp_freetext div,
.w_cmp .cmp_details .cmp_freetext span {
  color: inherit;
}
.w_cmp .cmp_details .cmp_attention {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #26827e;
  border-radius: 10px;
}
.w_cmp .cmp_details .cmp_attention * {
  font-weight: 800;
}
.w_cmp .cmp_details .cmp_attention dt {
  border-bottom: 1px solid #26827e;
}
.w_cmp .cmp_overview table td del {
  text-decoration: line-through;
}
.w_contentsWrap.login .text_link a {
  color: #fff;
  text-decoration: underline;
}
.w_contentsWrap.regist .caution {
  border: 2px solid #83fff9;
  background-color: rgba(0, 0, 0, 0.7);
}
.w_contentsWrap.regist .caution dt {
  font-weight: 800;
  color: #83fff9;
}
.w_contentsWrap.regist .caution dd {
  color: #fff;
}
.w_contentsWrap.regist .form_box {
  text-align: center;
}
.w_contentsWrap.regist .form_box dd input {
  width: 100%;
}
.w_contentsWrap.regist .form_box .submit {
  margin-bottom: 0;
}
.w_contentsWrap.regist .userAcount {
  border: 2px solid #83fff9;
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
}
.w_contentsWrap.regist .userAcount li {
  color: #83fff9;
  font-weight: 800;
}
.w_contentsWrap.forget .form_box .submit {
  margin-bottom: 0;
}
.w_contentsWrap.forget .comp_section .text {
  margin-bottom: 0;
}
.w_contentsWrap.mypage .form_section li a:nth-last-of-type(1) li {
  margin-bottom: 0;
}
.w_contentsWrap.mypage .pr_banner {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.w_contentsWrap.voice .commonBg {
  margin-bottom: 50px;
}
.w_contentsWrap.voice .commonBg .voiceList li {
  background: url("../../img/w_img/patternBg_grid.png") #fff;
  border-radius: 10px;
}
.w_contentsWrap.voice .commonBg .voiceList li figure figcaption {
  font-weight: 800;
  color: #084542;
}
.w_contentsWrap.voice .commonBg .voiceList li figure figcaption time {
  color: #666;
}
.w_contentsWrap.voice .commonBg .voiceList li dl {
  text-align: left;
}
.w_contentsWrap.voice .commonBg .voiceList li dl dt {
  border-bottom: 1px solid #666;
  font-weight: 800;
  color: #084542;
}
.w_contentsWrap.voice .commonBg .voiceList li dl .text {
  color: #000;
}
.w_contentsWrap.voice .commonBg .voiceList li dl .good {
  text-align: right;
}
.w_contentsWrap.voice .commonBg .voiceList li dl .good button {
  display: inline-block;
  background-color: #084542;
  border-radius: 50px;
  color: #fff;
  font-weight: 800;
}
.w_contentsWrap.voice .commonBg .voiceList li dl .good button::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-image: url("../../img/w_img/btnIcon_good.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.w_contentsWrap.voice .commonBg .voiceList li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.w_contentsWrap.voice .form_section {
  background-color: rgba(255, 0, 0, 0.5);
}
.w_contentsWrap.voice .form_section .submit {
  margin-bottom: 0;
}
.w_contentsWrap.chat .chatSection {
  background-color: rgba(18, 60, 62, 0.5);
  box-shadow: 0px 0px 15px #000000;
  border-radius: 10px;
}
.w_contentsWrap.chat .sendform {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 10px 10px 0 0;
}
.w_contentsWrap.chat .sendform input[type="file"] {
  display: none;
}
.w_contentsWrap.chat .sendform .camera-label img {
  cursor: pointer;
}
.w_contentsWrap.chat .sendform .textfield textarea {
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 100%;
}
.w_contentsWrap.chat .sendform .send_btn button {
  background: none;
}
.w_contentsWrap.purchase .item_section .select_details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.w_contentsWrap.purchase .item_section .select_details dl dt {
  width: 100%;
}
.w_contentsWrap.purchase .item_section .select_details dl dd {
  text-align: left;
  font-size: 1.1rem;
  line-height: 180%;
}
.w_contentsWrap.purchase .item_section .select_details dl dd strong {
  display: block;
  font-weight: 800;
  text-align: center;
}
.w_contentsWrap.purchase .item_section .simpleCaption {
  border-bottom: 2px solid;
}
.w_contentsWrap.purchase .item_section .btn_area li {
  width: 48%;
}
.w_contentsWrap.purchase .item_section .btn_area li a .simple {
  width: 100%;
}
.w_contentsWrap.purchase .amount * {
  color: #f00;
  font-weight: 900;
}
.w_contentsWrap.purchase .amount dt,
.w_contentsWrap.purchase .amount dd {
  display: inline-block;
  text-shadow: 0px 0px 10px #000000;
}
.w_contentsWrap.purchase .submit {
  margin-bottom: 0;
}
.w_contentsWrap.purchase .submit button {
  width: 100%;
}
.w_contentsWrap.item .itemCaution {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #26827e;
}
