@charset "UTF-8";

html {
  font-size: 62.5% !important;
}

body {
  margin: 0 auto;
  width: 100%;
  color: #2A2C2C;
  font: 1rem/1.6 Gotham, NotoSansCJKjp, "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  word-break: break-all;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

#app {
  flex: 1;
}

body.fixed {
  width: 100%;
  position: fixed;
}

/* for IE 6 */
* html body {
  font-size: 75%;
}

/* for IE 7 */
*:first-child + html body {
  font-size: 75%;
}

/* リスト */
ul {
  list-style: none;
}

/* リンク */
a {
  color: #2A2C2C;
}

a.imgLink {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (min-width: 897px) {
  a {
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }

  a:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
  }
}

.link-underline {
  text-decoration: underline;
}

.link-red {
  color: #c66060;
}

/* 画像 */
img {
  max-width: 100%;
  vertical-align: bottom;
}

.anchor_target {
  margin-top: -30px;
  padding-top: 30px;
}

/* 区切りライン */
.hr_line {
  border-top: 1px solid #CCCCCC;
  margin: 100px auto;
}

@media screen and (max-width: 479px) {
  .hr_line {
    margin: 50px auto;
  }
}

.hr_line.dashed {
  border-top: 1px dashed #CCCCCC;
}

/* テキスト装飾 */
.text-caution {
  color: #de4655;
}

.text-important {
  color: #de4655;
}

.text-bold {
  font-weight: bold;
}

sup {
  margin-right: 2px;
  top: 2px;
  font-size: 1.1rem;
  position: relative;
}

.regist {
  margin-left: 2px;
  font-size: 50%;
  position: relative;
  bottom: 0;
}

/* メディアクエリで表示・非表示切り替え */
.pc_only {
  display: inherit;
}

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

.tablet_only {
  display: none;
}

@media screen and (max-width: 896px) {
  .tablet_only {
    display: inherit;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 479px) {
  .sp_only {
    display: inherit;
  }
}

/* Flexbox レイアウト */
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrap.v_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_wrap.w_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_wrap.vh_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_wrap.space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrap.flex_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex_wrap.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex_wrap.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.video_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56.25%;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

table {
  width: 100%;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

@media screen and (max-width: 479px) {
  table thead {
    display: none;
  }
}

table th,
table td {
  padding: 1em 1.2em;
  text-align: center;
}

table th.date,
table td.date {
  margin-right: 0;
}

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

  table th.date,
  table td.date {
    display: table-cell;
    width: auto;
  }
}

table th {
  color: #3D5567;
  background-color: #F0F0F0;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

table td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

/* ヘッダー */
.l-header {
  background-color: #2A2C2C;
}

.l-header .header_inner {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header .header_title {
  max-width: 60rem;
  text-align: center;
  margin-left: 10px;
}

.l-header .logo {
  max-width: 80%;
  max-height: 70px;
}

.l-header .header_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-header .login_icon {
  padding: 16px;
  background-color: #000;
}

.l-header .login_icon img {
  width: 38px;
}

/* ハンバーガーボタン */
.hamburger_icon {
  padding: 24px 18px;
}

#nav-toggle {
  margin: auto;
  display: block;
  width: 34px;
  height: 22px;
  cursor: pointer;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFF;
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 10px;
}

#nav-toggle span:nth-child(3) {
  top: 20px;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.open #global-nav {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.sp_menu_bg {
  display: none;
  width: 100%;
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.75);
}

/* グローバルナビゲーション */
#global-nav {
  display: none;
  width: auto;
  margin: 0;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #131313;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#global-nav .menu {
  width: 100%;
  display: block;
}

#global-nav .menu li {
  text-align: center;
}

#global-nav .menu li:not(:last-child) {
  border-bottom: 1px solid #898989;
}

#global-nav .menu > li {
  padding: 1em;
  border: 0;
  position: relative;
}

#global-nav .menu a {
  padding-left: 14px;
  font-size: 1.6rem;
  color: #FFF;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 896px) {
  .l-header {
    width: 100%;
  }

  .l-header .header_inner {
    padding: 0 70px 0 20px;
    position: relative;
  }

  .l-header .header_title {
    padding: 0;
    text-align: center;
  }

  .l-header .header_title .sub {
    display: none;
  }

  .hamburger_icon {
    position: absolute;
    right: 0;
  }

  #global-nav .menu a {
    padding-left: 14px;
    font-size: 1.6rem;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    position: relative;
  }
}

@media screen and (max-width: 479px) {
  .l-header .header_inner {
    height: 50px;
    padding: 0 65px 0 20px;
  }

  .l-header .header_title {
    max-width: 75%;
    margin-left: 0px;
    text-align: left;
  }

  /* .l-header .logo {
    width: 36px;
  } */

  .l-header .login_icon {
    padding: 0;
    background-color: unset;
  }

  .hamburger_icon {
    padding: 0 20px 0 0;
  }

  #nav-toggle {
    width: 25px;
    height: 25px;
  }

  #nav-toggle span {
    height: 1px;
  }

  #nav-toggle span:nth-child(1) {
    top: 5px;
  }

  #nav-toggle span:nth-child(2) {
    top: 12px;
  }

  #nav-toggle span:nth-child(3) {
    top: 19px;
  }

  .sp_menu_bg {
    top: 50px;
  }

  #global-nav {
    top: 50px;
  }
}

/* SPナビ */
#sp_nav {
  width: 100%;
  z-index: 99;
}

.sp_nav_wrap {
  padding: 0 15px;
  background-color: #f6f6f6;
  border-top: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
}

.sp_nav_wrap::before {
  content: "";
  width: 15px;
  height: 3px;
  background-color: #999;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sp_nav_wrap:after {
  content: "";
  width: 15px;
  height: 3px;
  background-color: #999;
  position: absolute;
  right: 0;
  bottom: 0;
}

.nav__button {
  width: 20%;
  border-right: 1px solid #999;
  border-bottom: 3px solid #999;
  display: inline-block;
  text-align: center;
}

.nav__button:first-of-type {
  border-left: 1px solid #999;
  position: relative;
}

.nav__button a {
  display: block;
  padding: 8px 0;
  font-size: 1.2rem;
}

.nav__button a span {
  display: block;
}

.nav__button a img {
  -ms-filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(145%) contrast(93%);
  -webkit-filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(145%) contrast(93%);
  filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(145%) contrast(93%);
  vertical-align: bottom;
}

.nav__button.active img {
  -webkit-filter: none;
  filter: none;
}

.category-attention .nav__button.attention {
  border-bottom-color: #da0000;
}

.page-template-all .nav__button.new {
  border-bottom-color: #e6b017;
}

.subCintainer {
  padding: 10px 15px;
  background-color: #F2F2F2;
  overflow-x: auto;
}

.subCintainer::-webkit-scrollbar {
  height: 0;
}

.subCintainer {
  padding: 10px 15px;
  background-color: #F2F2F2;
  overflow-x: auto;
}

.subCintainer::-webkit-scrollbar {
  height: 0;
}

.sub_navi {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.sub_navi li {
  border-left: 1px solid #ccc;
}

.sub_navi li:last-of-type {
  border-right: 1px solid #ccc;
}

.sub_navi li a {
  font-size: 1.4rem;
  padding: 0 1em;
}

.sub_navi li.active a span {
  background-color: #1e1e1e;
  color: #fff;
}

#side_nav_wrap .content {
  padding-top: 0;
}

#side_nav_wrap li {
  line-height: 16px;
}

#side_nav_wrap li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}

#side_nav_wrap li img {
  width: 16px;
  margin-right: 5px;
}

#side_nav_wrap a {
  font-size: 1.3rem;
  color: #505050;
}

.side_menu_wrap {
  width: 354px;
  text-align: center;
  background-color: #e6e6e6;
}

.side_menu_wrap li {
  padding: 5px;
  border-bottom: 1px solid #fff;
}

.side_menu_wrap li a {
  font-size: 1.3rem;
}

/* 共通 */
.site-contents {
  padding: 80px 0 100px 0;
}

.site-contents .section_wrap .content {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
}

.site-contents.type02 {
  padding: 0 0 100px 0;
}

.site-contents.type02 .section_wrap {
  padding: 40px 0;
}

/* キャンページ */
.campaigan_page.site-contents.type02 .section_wrap {
  padding: 20px 0;
}

.site-contents.type02.page-top .section_wrap {
  padding: 30px 0;
}

.site-contents.type02.page-top .section_wrap.mv_wrap {
  margin-bottom: -20px;
  padding: 30px 0 0 0;
}

.bg-gray {
  background-color: #F0F0F0;
}

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

.text-right {
  text-align: right;
}

.text-big {
  font-size: 2rem;
  display: block;
}

.text-small {
  font-size: 1.2rem;
}

.text-red {
  color: #da0000;
}

.image_area a {
  width: 100%;
  height: 100%;
  display: block;
}

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

.coupon_image_area a {
    width: 100%;
    height: 100%;
    display: block;
  }
.coupon_image_area img {
    width: 100%;
    height: auto;
}

.max-w-670 {
  max-width: 670px;
}

/* 保有ポイント */
.point_wrap {
  padding: 40px;
  background-color: #FFF;
  border-radius: 8px;
  color: #505050;
  text-align: center;
}

.point_wrap.orange {
  margin: 0;
  padding: 0;
  color: #F04923;
}

.point_wrap .bage {
  padding: 0 0.5rem;
  font-size: 1.2rem;
  color: #FFF;
  background-color: #F04923;
  border-radius: 3px;
  display: inline-block;
}

.point_wrap .bage.red {
  background-color: #da0000;
}

.point_wrap .bage.transparent {
  color: #F04923;
  background-color: #FFF;
}

/* PC iPad */
@media screen and (min-width: 767px) {
  .point_wrap.orange {
    margin-top: 25px;
  }

  .point_wrap .bage {
    padding: 1px 1.5rem;
    font-size: 1.6rem;
    color: #FFF;
    background-color: #F04923;
    border-radius: 3px;
    display: inline-block;
  }

  .btn-apply {
    max-width: 600px;
    height: 70px;
  }
}

/*  */
.point_wrap h2 {
  font-size: 1.6rem;
}

.point_wrap h2 .name {
  margin-right: 0.5rem;
  font-size: 3rem;
}

.point_wrap dl {
  text-align: center;
}

.point_wrap dt {
  margin-right: 0.5rem;
}

.point_wrap dd {
  color: #F04923;
  font-weight: 600;
}

.point_wrap .point {
  font-size: 42px;
  line-height: 1;
}

/* ニュース */
.news_wrap li {
  padding: 20px;
}

.news_wrap li:first-child {
  border-top: 1px solid #ABABAB;
}

.news_wrap li:not(:last-child) {
  border-bottom: 1px solid #ABABAB;
}

.news_wrap a {
  color: #3D5567;
}

.date {
  margin-right: 1em;
  color: #F04923;
  font-weight: 600;
}

.more {
  padding-right: 15px;
  color: #3D5567;
  text-align: right;
  line-height: initial;
  position: relative;
}

.more:after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #3D5567;
  border-right: 2px solid #3D5567;
  content: "";
  right: 4px;
}

.more a {
  color: #3D5567;
  font-size: 14px;
}

/* 待ち状況 */
.queues_status_wrap {
  /* padding: 2em; */
  margin-bottom: 20px;
  color: #505050;
  /* border: 2px solid #F04923; */
}

.status, .status_docodatte {
  color: #00B0F0;
  font-size: 3.5rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  margin: 10px auto;
  border: 2px solid;
  padding: 15px 0;
  max-width: 270px;
}

.status, .status_docodatte_not {
    color: #e76a27;
    font-size: 3.5rem;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin: 10px auto;
    border: 2px solid;
    padding: 15px 0;
    max-width: 270px;
  }

@media (min-width: 480px) {
  .status, .status_docodatte {
    max-width: 480px;
    border-width: 3px;
  }
}

@media (min-width: 897px) {
  .status, .status_docodatte {
    max-width: 580px;
    border-width: 4px;
  }
}

.status .waiting-comment::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-color: #00B0F0;
  border-radius: 50%;
  display: inline-block;
}

.queues_status .waiting_wrap {
  display: block;
}

.queues_status.waiting .status {
  color: #FFC000;
  border-color: #FFC000;
}

.queues_status.waiting .status .waiting-comment::before {
  background-color: #FFC000;
}

.queues_status.waiting .waiting_wrap {
  display: block;
}

.queues_status.stop .status {
  color: #fd172e;
  border-color: #fd172e;
}

.queues_status.stop .status .waiting-comment::before {
  background-color: #fd172e;
}

.queues_status.stop .waiting_wrap {
  display: block;
}

.queues_status.concentrated .status {
  color: grey;
  border-color: grey;
}

.queues_status.concentrated .status .waiting-comment::before {
  background-color: grey;
}

.queues_status .text_area {
  margin-bottom: 10px;
  font-weight: 600;
  display: none;
}

.queues_status.off-hours dt {
  display: none;
}

.queues_status.off-hours .text_area {
  display: block;
}

.queues_status.off-hours .text_area .btn-gray {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 400;
}

.queues_status.off-hours .btn-orange {
  display: none;
}

.waiting_wrap {
  margin-bottom: 30px;
  text-align: center;
}

.waiting_wrap span {
  margin-top: -12px;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
}

.waiting_wrap span.minuites {
  font-size: 2rem;
}

.waiting_wrap i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.page-top .btn_wrap a {
  padding: 100px 10px;
}

.btn_wrap a {
  padding: 1em;
  border-radius: 5px;
}

.btn_wrap img {
  width: 60px;
  margin: 0 auto 5px auto;
  display: block;
}

.bnr_area {
  width: 60%;
  margin: auto;
}

.bnr_area .btn {
  padding: 1em;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFF;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  position: relative;
}

.bnr_area .btn span {
  font-size: 1.4rem;
  display: block;
}

.bnr_area .btn span i {
  margin-right: 1rem;
}

.bnr_area .btn.btn-y {
  background: #e6b017;
  -webkit-box-shadow: 0 5px 0 #e6b017;
  box-shadow: 0 5px #ce9801;
}

.bnr_area .btn.btn-r {
  background: #F04923;
  -webkit-box-shadow: 0 5px 0 #bf3617;
  box-shadow: 0 5px #bf3617;
}

.bnr_area .btn.btn-b {
  background: #005587;
  -webkit-box-shadow: 0 5px 0 #0a3954;
  box-shadow: 0 5px 0 #0a3954;
}

.bnr_area .bnr-wrap {
  margin: 20px 0 0 0;
}

.bnr_area .btn.btn-g {
  background: #03B302;
  -webkit-box-shadow: 0 5px 0 #0b960a;
  box-shadow: 0 5px 0 #0b960a;
}

/* ログイン */
.page-login {
  color: #505050;
}

.page-login .text_area {
  margin-bottom: 50px;
  font-family: NotoSansCJKjp, "Noto Sans JP", sans-serif;
  text-align: center;
}

.page-login .image_area img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.login_form_wrap {
  max-width: 600px;
  margin: 50px auto 0 auto;
}

.login_form_wrap dl {
  margin-bottom: 30px;
}

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

.modal {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.modal-content {
  width: 80%;
  padding: 40px 20px;
  background-color: #FFF;
  border-radius: 5px;
}

.modal-content .text_area {
  max-height: 50vh;
  padding: 1rem;
  border: 1px solid #F0F0F0;
  overflow-y: auto;
}

/* レシート管理 */
.page-receipt .btn_wrap a {
  padding: 1em;
}

.page-receipt .btn_wrap a img {
  width: 50px;
}

.user_history {
  margin-top: 80px;
}

.user_history .date {
  margin: 0;
}

.user_history .btn_wrap {
  margin-top: 40px;
}

.receipt a {
  padding: 5px;
  background-color: #3D5567;
  border-radius: 3px;
  display: inline-block;
}

.receipt img {
  width: 32px;
}

/* ポイント履歴 */
.note dl:not(:last-child) {
  margin-bottom: 30px;
}

.note dt {
  margin-bottom: 5px;
  font-weight: 600;
}

.note dt::before {
  content: "●";
  color: #F04923;
}

.note dd {
  font-size: 1.2rem;
}

.oubosuu_wrap {
  margin-bottom: 30px;
  padding: 1rem;
  color: #da0000;
  text-align: center;
}

.oubosuu_wrap span {
  margin: 0 0.5rem;
  font-size: 3rem;
  font-weight: 600;
}

.campaign_wrap {
  text-align: center;
}

.campaign_wrap dl {
  margin-bottom: 50px;
}

.campaign_wrap dl:last-of-type {
  margin-bottom: 100px;
}

.campaign_wrap dt {
  margin-bottom: 30px;
  display: inline-block;
}

.campaign_wrap dt p {
  text-align: left;
}

.bage {
  margin-right: 0.5em;
  padding: 3px 10px;
  color: #FFF;
  font-size: 1.2rem;
  background-color: #F04923;
  border-radius: 3px;
}

.ponta_point_wrap {
  width: 300px;
  height: 150px;
  margin: auto;
  position: relative;
}

.ponta_point_wrap h3 {
  width: 100%;
  margin: -77px 0 0 -155px;
  font-size: 2.4rem;
  color: #EE851F;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
}

.ponta_point_wrap::before {
  content: "";
  width: 110px;
  height: 110px;
  /* background: url("../images/point/coin.png") center no-repeat; */
  background-size: contain;
  position: absolute;
  top: -33px;
  right: -16px;
}

.ponta_point_wrap::after {
  content: "";
  width: 75px;
  height: 75px;
  /* background: url("../images/point/coin02.png") center no-repeat; */
  background-size: contain;
  position: absolute;
  bottom: 0px;
  left: -35px;
}

.ponta_point_wrap.wide .ponta_point {
  font-size: 10rem;
}

.ponta_point_wrap.wide::before {
  top: -30px;
  right: -38px;
}

.ponta_point_wrap.wide::after {
  bottom: 10px;
  left: -30px;
}

.t_point_top {
  width: 100%;
  height: 100%;
  max-width: 670px;
  max-height: 670px;
  margin: auto;
}

.t_point_wrap {
  width: 100%;
  max-width: 670px;
  max-height: 250px;
  margin: auto;
  position: relative;
}

.t_point_wrap::before {
  content: "";
  width: 110px;
  height: 110px;
  /* background: url("../images/point/coin.png") center no-repeat; */
  background-size: contain;
  position: absolute;
  top: -33px;
  right: -16px;
}

.t_point_wrap::after {
  content: "";
  width: 75px;
  height: 75px;
  /* background: url("../images/point/coin02.png") center no-repeat; */
  background-size: contain;
  position: absolute;
  bottom: 0px;
  left: -35px;
}

.t_point_wrap.wide .ponta_point {
  font-size: 10rem;
}

.t_point_wrap.wide::before {
  top: -30px;
  right: -38px;
}

.t_point_wrap.wide::after {
  bottom: 10px;
  left: -30px;
}

.ponta_point {
  font-size: 12rem;
  letter-spacing: -5px;
}

.apply_wrap {
  margin-top: 40px;
  font-size: 1.2rem;
}

.apply_wrap .point {
  margin-top: 0;
  margin-right: 0.5rem;
  font-size: 2.8rem;
  line-height: 1;
}

/* 待合室 */
.page-rounder .waiting_wrap {
  margin-bottom: 0;
}

.page-rounder .bnr_area {
  margin-top: 30px;
}

/* アンケート */
.questionnaire_wrap ol {
  margin-left: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

.question_wrap {
  color: #3D5567;
  font-size: 2rem;
  display: block!important;
}

.answer_wrap {
  margin: 20px 0 60px 0;
  font-size: 1.6rem;
  font-weight: 400;
  /* text-indent: -20px; */
}

.answer_wrap label:not(:last-child) {
  margin-right: 20px;
}

.answer_wrap.type02 input {
  width: 90%;
}

.answer_wrap.type02 span {
  margin-left: 1rem;
}

.l-column_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-column_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-column_wrap.col2 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-column_wrap.col2 .l-column_inner {
  width: 50%;
  padding: 0 20px;
}

.l-column_wrap.col2_wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-column_wrap.col2_wrap .l-column_inner {
  width: 28%;
}

.l-column_wrap.col2_wrap .l-column_inner:first-child {
  margin-right: 2%;
}

.l-column_wrap.col2_wrap .l-column_inner:last-child {
  margin-left: 2%;
}

.l-column_wrap.col4 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-column_wrap.col4 .l-column_inner {
  width: 25%;
}

@media screen and (max-width: 896px) {
  .l-column_wrap.col2_wrap .l-column_inner {
    width: 48%;
    margin-bottom: auto;
  }
}

@media screen and (max-width: 479px) {
  .l-column_wrap.col2 {
    margin-bottom: 0;
  }

  .l-column_wrap.col2 .l-column_inner {
    width: 100%;
    padding: 0;
  }

  .l-column_wrap.sp_col2 {
    margin-bottom: 0;
  }

  .l-column_wrap.sp_col2 .l-column_inner {
    width: 50%;
    margin-bottom: 0;
  }

  .l-column_wrap.sp_col2 .l-column_inner:not(:last-child) {
    margin-bottom: 0;
  }
}

/* フッター */
.l-footer {
  padding: 20px 0 30px 0;
  background-color: #EBEBEB;
}

.footer_inner {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  font-size: 1.2rem;
}

.footer_nav_wrap {
  padding-bottom: 20px;
}

.footer_nav:last-of-type {
  margin-top: 20px;
}

.footer_nav:last-of-type li:not(:last-child) {
  margin-right: 1em;
}

.footer_nav li {
  margin-bottom: 1em;
}

.footer_nav .link {
  text-align: center;
}

.footer_nav .link a {
  border-bottom: 1px solid #2A2C2C;
}

.copyright_area {
  max-width: 1110px;
  margin: auto;
  padding-top: 30px;
  border-top: 1px solid #ABABAB;
  text-align: center;
}

.copyright {
  color: #8f8f8f;
}

@media screen and (max-width: 479px) {
  .l-footer {
    padding: 15px 0 22px 0;
  }

  .footer_inner {
    font-size: 1rem;
  }

  .copyright_area {
    margin: 0 20px;
    padding-top: 20px;
  }
}

/* 見出し */
.headline-type01 {
  margin-bottom: 20px;
  color: #3D5567;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 479px) {
  .headline-type01 {
    font-size: 2.3rem;
  }
}

.headline-type02 {
  margin-bottom: 50px;
  padding-bottom: 0.5em;
  color: #505050;
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.headline-type02:after {
  content: "";
  width: 30px;
  height: 1px;
  margin-left: -15px;
  background-color: #005587;
  position: absolute;
  left: 50%;
  bottom: 0;
}

@media screen and (max-width: 479px) {
  .headline-type02 {
    margin-bottom: 30px;
    font-size: 2.3rem;
  }
}

.headline-type03 {
  padding: 1rem 0;
  color: #FFF;
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.headline-type03 a {
  font-size: 3.4rem;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 15px;
}

.headline-type04 {
  margin-bottom: 50px;
  color: #505050;
  font-size: 4rem;
  text-align: center;
}

.headline-type04 span {
  margin-bottom: 12px;
  padding: 0.2rem 1em;
  font-size: 2rem;
  color: #FFF;
  background-color: #005587;
  display: inline-block;
  position: relative;
}

.headline-type04 span:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -10px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #005587 transparent transparent transparent;
  position: absolute;
  bottom: -9px;
  left: 50%;
}

/*  */

.headline-type08 {
  margin-bottom: 50px;
  color: #505050;
  font-size: 4rem;
  text-align: center;
}

.headline-type08 span {
  margin-bottom: 12px;
  padding: 0.2rem 1em;
  font-size: 2rem;
  color: #FFF;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 479px) {
  .headline-type04 {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
  .headline-type08 {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
}

.headline-type05 {
  max-width: 666px;
  margin: auto;
  margin-bottom: 20px;
  color: #3D5567;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.headline-type05::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #3D5567;
  position: absolute;
  top: 50%;
  left: 0;
}

.headline-type05::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #3D5567;
  position: absolute;
  top: 50%;
  right: 0;
}

@media screen and (max-width: 768px) {
  .headline-type05 {
    max-width: 540px;
  }
}

@media screen and (max-width: 479px) {
  .headline-type05 {
    font-size: 2.3rem;
  }

  .headline-type05::before {
    width: 50px;
  }

  .headline-type05::after {
    width: 50px;
  }
}

.headline-type06 {
  margin-bottom: 20px;
  color: #3D5567;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 479px) {
  .headline-type06 {
    font-size: 1.7rem;
  }
}

.headline-type07 {
  margin-top: 20px;
  color: #3D5567;
  font-size: 3.0rem;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 479px) {
  .headline-type07 {
    font-size: 2.0rem;
  }
}


.headline02 {
  margin-bottom: 20px;
  padding: 1em 0 0.5em 0;
  font-size: 2rem;
  font-weight: 600;
  color: #3D5567;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .headline02 {
    padding: 0;
  }
}

.headline03 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: #3D5567;
}

.headline03.tpoint_headline::first-letter {
  font-size: 115%;
}

@media screen and (max-width: 479px) {
  .headline03 {
    padding: 0;
    font-size: 2rem;
  }
}

/* ボタン関連 */
.btn {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-orange {
  background-color: #F04923;
  color: #FFF;
}

.btn-orange02 {
  background-color: #e35205;
  color: #FFF;
}

.btn-yellow {
  background-color: #e6b017;
  color: #FFF;
}

.btn-blue {
  background-color: #005587;
  color: #FFF;
}

.btn-red {
  background-color: #da0000;
  color: #FFF;
}

.btn-green {
  background-color: #12e469;
  color: #FFF;
}

.btn-gray {
  background-color: #ABABAB;
  color: #FFF;
}

.btn-large {
  width: 300px;
}

.btn-mid {
  width: 226px;
  padding: 12px 12px 13px;
}

.btn-small {
  width: 100px;
}

.btn-round {
  max-width: 320px;
  margin: auto;
  padding: 1rem;
  border-radius: 30px;
}

.btn-round02 {
  font-size: 2rem;
  font-weight: 600;
  padding: 2rem;
  border-radius: 50px;
}

.btn-submit {
  width: 300px;
  height: 56px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 479px) {
  .btn-submit {
    width: 100%;
  }
}

.btn-login {
  padding: 6px 21px;
  color: #fff;
  font-size: 1.8rem;
  background-color: #f7931e;
  border-radius: 20px;
  display: inline-block;
}

.btn-login .fa-lock {
  font-size: 1.9rem;
  margin-right: 10px;
}

.btn-apply {
  max-width: 320px;
  margin: auto;
  padding: 1em;
  background-color: #CCC;
  color: #FFF;
  border-radius: 60px;
}

.btn-apply.active {
  background-color: #F04923;
}

.btn-apply.active:hover {
  opacity: 0.75;
}

/* PC iPad */
@media screen and (min-width: 767px) {
  .btn-apply {
    max-width: 600px;
    height: 70px;
  }

  .btn-apply > span {
    font-size: 2.5rem;
  }
}

.btn-rounder {
  padding: 1em;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-orange .btn-rounder {
  border-bottom: solid 5px #e6401a;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
}

.btn-rounder img {
  width: 40px;
  margin-right: 5px;
}

@media screen and (max-width: 479px) {
  .btn-rounder {
    width: 100%;
    padding: 1.5em;
  }

  .btn-rounder img {
    width: 30px;
  }
}

.btn-half {
  width: 320px;
  padding: 1rem;
  color: #FFF;
  border-radius: 5px;
}

@media screen and (max-width: 479px) {
  .btn-half {
    width: 48%;
  }
}

.btn-col3 {
  width: 33.33%;
  padding: 1rem 0.5rem;
  border-radius: 3px;
  color: #FFF;
}

.btn-col3:not(:last-child) {
  margin-right: 2%;
}

.more_btn {
  display: block;
  width: 544px;
  margin: 50px auto 0;
  padding: 1px 12px;
  color: #ABABAB;
  font-size: 1.3rem;
  border: 1px solid #787878;
  border-radius: 5px;
  text-align: center;
  position: relative;
  background: #FFF url(./images/more_arrow.png) no-repeat right 10px center/12px auto;
}

.more_btn.big {
  width: 100%;
  padding: 8px 5px;
}

.more_btn.big.sp_only {
  display: none;
}

.more_btn.small {
  width: 108px;
  text-align: left;
}

.more_btn.type02 {
  font-size: 2.26rem;
  padding: 27px 0;
}

.more_btn.show_btn {
  display: none;
}

@media screen and (max-width: 896px) {
  .more_btn {
    width: 100%;
    margin-top: 25px;
    padding: 8px 5px;
    font-size: 1.4rem;
  }
}

.chat_mic_info {
  width: 70%;
  margin: auto;
  font-size: 1.2rem;
}

.page_login_opening_text {
  font-weight: bold;
  width: 100%;
  max-width: 580px;
}

/* フォーム関連 */
*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #CCC;
}

input:-ms-input-placeholder {
  color: #CCC;
}

input::-moz-placeholder {
  color: #CCC;
}

textarea::-webkit-input-placeholder {
  color: #CCC;
}

textarea:-ms-input-placeholder {
  color: #CCC;
}

textarea::-moz-placeholder {
  color: #CCC;
}

/* iOSでのデフォルトスタイルをリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
}

input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=text],
input[type=login_id],
input[type=password] {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #999;
  line-height: 40px;
}

input[type=checkbox] {
  margin-right: 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFF;
  border: 1px solid #999;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

input[type=checkbox]:checked:after {
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  color: #F04923;
  font-size: 18px;
}

input[type=radio] {
  margin-right: 5px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #c1c1c1;
  border-radius: 20px;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

input[type=radio]:checked:after {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  content: "";
  width: 12px;
  height: 12px;
  background: #F04923;
  border-radius: 14px;
}

/* リスト */
ul.ls_none {
  list-style-type: none;
}

ul.note {
  list-style-type: none;
}

ul.note li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

ul.note li:before {
  content: "※";
  font-family: initial;
}

ul.note li:not(:last-child) {
  margin-bottom: 0.3em;
}

ul.dot {
  list-style-type: none;
}

ul.dot li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}

ul.dot li:before {
  content: "・";
  font-family: initial;
}

ul.dot li:not(:last-child) {
  margin-bottom: 0.3em;
}

/* レシート読み取り */
.container {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 50px 1fr 85px;
  grid-template-rows: 50px 1fr 85px;
}

.shot_container {
  width: 100%;
  /* height: 100vh; */
  display: -ms-grid;
  -ms-grid-rows: 50px 1fr 85px;
  grid-template-rows: 50px 1fr 85px;
}

.view_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.view_area {
  width: 100%;
  height: 100%;
}

#picture {
  display: none;
}

.button_area {
  padding: 0 15px;
  /* background-color: #2A2C2C; */
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button_area form {
  width: 100%;
}

.button_wrap {
  display: none;
}

#shutter {
  padding: 1rem;
  background-color: #000;
  color: #FFF;
  border-radius: 50px;
}

#shutter i {
  font-size: 3rem;
}

/* ラウンダールーム */
.rounder-container {
  width: 100%;
  height: 90vh !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 85px;
  grid-template-rows: 1fr 85px;
  position: relative;
}

.rounder-container .image_banner {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.rounder-container .image_banner img {
  width: 100%;
  display: none;
}

/* 接続前 */
.countdown_area {
  display: none;
}

.countdown_area.active {
  display: block;
}

.countdown-container {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 300px 1fr;
  grid-template-rows: 300px 1fr;
  position: absolute;
  top: 0;
}

@media screen and (min-width: 480px) {
  .countdown-container {
    -ms-grid-rows: 600px 1fr;
    grid-template-rows: 600px 1fr;
  }
}

.countdown-container .view_wrap {
  display: block;
}

.countdown-container .view_area {
  background-color: #2A2C2C;
  display: none;
}

.countdown-container .text_area {
  width: 100%;
  padding: 15px;
  background-color: #FFF;
}

/* カウントダウンアニメーション */
.countdown_wrap {
  position: relative;
  width: 100%;
  height: 300px;
  background: radial-gradient(aliceblue, snow);
  overflow: hidden;
}

.active .countdown_wrap {
  -webkit-animation: black-out 1s 3s linear;
  animation: black-out 1s 3s linear;
}

@media screen and (min-width: 480px) {
  .countdown_wrap {
    height: 600px;
  }
}

/* count */
.count p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0;
  padding: 0;
  color: #a0a0a0;
  font-size: 100px;
  font-weight: bold;
  line-height: 0;
  opacity: 0;
}

.active .count p:nth-child(1) {
  -webkit-animation: count-down 1s 0s;
  animation: count-down 1s 0s;
}

.active .count p:nth-child(2) {
  -webkit-animation: count-down 1s 1s;
  animation: count-down 1s 1s;
}

.active .count p:nth-child(3) {
  -webkit-animation: count-down 1s 2s;
  animation: count-down 1s 2s;
}

@-webkit-keyframes count-down {

  0%,
  100% {
    opacity: 1;
  }
}

@keyframes count-down {

  0%,
  100% {
    opacity: 1;
  }
}

/* circle */
.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 160px;
  height: 160px;
  margin-top: -80px;
  border: double 15px #a0a0a0;
  border-radius: 50%;
}

/* line */
.line1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a0a0a0;
}

.line2 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #a0a0a0;
}

/* rotation */
.active .rotation {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  background: aliceblue;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, snow), color-stop(0, transparent));
  background-image: -o-linear-gradient(left, snow 50%, transparent 0);
  background-image: linear-gradient(to right, snow 50%, transparent 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.active .rotation::before {
  content: "";
  display: block;
  margin-left: 50%;
  height: 100%;
  border-radius: 0 100% 100% 0/50%;
  background-color: inherit;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  background: snow;
  -webkit-transform: rotate(0turn);
  -ms-transform: rotate(0turn);
  transform: rotate(0turn);
  -webkit-animation: rotation1 0.5s linear 6, rotation2 1s step-end 3;
  animation: rotation1 0.5s linear 6, rotation2 1s step-end 3;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.loading-area {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 300px 1fr;
  grid-template-rows: 300px 1fr;
  background-color: #FFF;
}

.loading-area .text_area {
  width: 100%;
  padding: 15px;
  background-color: #FFF;
}

.loading-area .rotation::before {
  -webkit-animation: rotation1 0.5s linear 100, rotation2 1s step-end 50;
  animation: rotation1 0.5s linear 100, rotation2 1s step-end 50;
}

@-webkit-keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@-webkit-keyframes rotation2 {
  0% {
    background: snow;
  }

  50% {
    background: aliceblue;
  }
}

@keyframes rotation2 {
  0% {
    background: snow;
  }

  50% {
    background: aliceblue;
  }
}

/* popup */
.active .countdown-container {
  -webkit-animation: text-pop 0s 4s linear forwards;
  animation: text-pop 0s 4s linear forwards;
}

@-webkit-keyframes text-pop {
  75% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes text-pop {
  75% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

/* バナーエリア */
.notice-banner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: -1;
}

.active .notice-banner {
  animation-name: text-pop2;
  animation-duration: 5s;
  animation-delay: 3s;
}

@-webkit-keyframes text-pop2 {
  0% {
    opacity: 0;
    z-index: -1;
  }

  10% {
    opacity: 1;
    z-index: 9;
  }

  90% {
    opacity: 1;
    z-index: 9;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes text-pop2 {
  0% {
    opacity: 0;
    z-index: -1;
  }

  10% {
    opacity: 1;
    z-index: 9;
  }

  90% {
    opacity: 1;
    z-index: 9;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

/* ラウンダールーム */
.rounder-container {
  width: 100%;
  height: 90vh !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 85px;
  grid-template-rows: 1fr 85px;
  position: relative;
  margin: auto;
}

@media screen and (min-width: 897px) {
  .rounder-container {
    max-width: 56.25vh;;
  }
}

.rounder-container .image_banner {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.rounder-container .image_banner img {
  width: 100%;
  display: none;
}

.rounder-container .button_area {
  position: relative;
  height: 90vh;
}

/* 切断時表示画面 */
.text-container {
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  position: absolute;
  top: 0;
}

.disconnect_wrap {
  padding: 15px;
  background-color: rgba(19, 19, 19, 0.95);
}

.disconnect_wrap h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  text-align: center;
  color: #fd172e;
}

.disconnect_wrap h1 i {
  font-size: 6rem;
  color: #e6b017;
}

.disconnect_wrap .text_wrap {
  color: #FFF;
  font-size: 1.8rem;
}

.disconnect_wrap .text_wrap dl {
  margin-top: 20px;
}

.disconnect_wrap .text_wrap dt {
  font-size: 2rem;
}

.disconnect_wrap .text_wrap dd {
  font-size: 3rem;
  font-weight: 600;
}

.disconnect_wrap .text_wrap .reception_wrap dd {
  font-size: 2.4rem;
  font-weight: 400;
}

.disconnect_wrap .text_wrap .reception_wrap span {
  display: block;
  font-size: 1.6rem;
}

/* 対応後画面 */
.lock_wrap {
  padding: 15px;
  background-color: rgba(234, 234, 234, 0.95);
}

.lock_wrap h1 {
  margin-bottom: 20px;
  font-size: 3.4rem;
  line-height: 1.4;
}

.lock_wrap .text_wrap dl {
  padding: 20px;
  text-align: center;
  background-color: #FFF;
}

.lock_wrap .text_wrap dl:first-of-type {
  margin-top: 20px;
  padding-bottom: 0;
}

.lock_wrap .text_wrap dt {
  font-size: 2rem;
  font-weight: 600;
  color: #F04923;
}

.lock_wrap .text_wrap dd {
  font-size: 3rem;
  font-weight: 600;
}

.lock_wrap .text_wrap .reception_wrap dd {
  font-size: 2rem;
}

.lock_wrap .text_wrap .reception_wrap span {
  display: block;
  font-size: 1.4rem;
}

/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {

  .container,
  .rounder-container,
  .countdown-container,
  .text-container {
    /* Safari用のハック */
    height: -webkit-fill-available;
  }
}

@media screen and (max-width: 896px) {
  .fixed {
    position: fixed;
    width: 100%;
  }
}

/* slick.js 調整 */
body .slick-dotted.slick-slider {
  margin: 0;
}

body .slick_arrow {
  z-index: 1;
}

body .slick-dots {
  bottom: 32px;
}

@media screen and (max-width: 479px) {
  body .slick-dots {
    bottom: 15px;
  }
}

body .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

@media screen and (max-width: 479px) {
  body .slick-dots li {
    margin: 0 5px;
  }
}

body .slick-dots li.slick-active button {
  background-color: white;
}

body .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.75);
}

body .slick-dots li button:before {
  display: none;
}

.slick-prev,
.slick-next {
  top: initial;
}

/* iziModal 調整 */
.iziModal-content {
  position: relative;
}

.iziModal-content .close {
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
}

.iziModal-content .close a {
  width: 40px;
  height: 40px;
  color: #FFF;
  font-size: 4rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 25px;
  line-height: 1;
  display: block;
}

.iziModal {
  background-color: unset !important;
}

.iziModal img {
  width: 100%;
}

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

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

  /* 共通 */
  .site-contents {
    padding: 0 0 40px 0;
  }

  .site-contents .section_wrap {
    padding: 20px 0;
  }

  .site-contents.type02 {
    padding: 0 0 40px 0;
  }

  .site-contents.page-login {
    padding: 40px 0 80px;
  }

  .site-contents.page-login .section_wrap {
    padding: 0;
  }

  .site-contents.page-receipt {
    padding: 40px 0 80px;
  }

  .site-contents.page-receipt .section_wrap {
    padding: 0;
  }

  .site-contents.page-point .section_wrap {
    padding: 20px 0;
  }

  /* 保有ポイント */
  .point_wrap {
    margin: 0;
    padding: 10px;
  }

  .point_wrap h2 {
    font-size: 20px;
  }

  .point_wrap dl {
    display: block;
  }

  .point_wrap dt {
    margin-right: 0;
    text-align: center;
  }

  /* ニュース */
  .news_wrap li {
    padding: 10px;
  }

  .date {
    display: block;
    width: 100%;
  }

  /* 待ち状況 */
  /* .queues_status_wrap {
    padding: 2rem;
  } */
  .waiting_wrap {
    margin-bottom: 20px;
  }

  .status {
    font-size: 1.6rem;
  }

  .status .waiting-comment::before {
    width: 16px;
    height: 16px;
  }

  .page-top .btn_wrap a {
    padding: 38px 10px;
    font-size: 1.4rem;
  }

  .btn_wrap a {
    padding: 20px;
  }

  .btn_wrap a img {
    margin: 0 auto;
  }

  /* ログイン */
  .page-login .text_area {
    margin-bottom: 30px;
  }

  .page-login .image_area img {
    height: auto;
    -o-object-fit: unset;
    object-fit: unset;
  }

  .login_form_wrap {
    margin-top: 30px;
  }

  .login_form_wrap dl {
    margin-bottom: 20px;
  }

  .submit_wrap {
    margin-top: 20px;
  }

  .modal-content {
    width: 94%;
    padding: 30px 15px;
  }

  .submit_wrap.col2 .btn-submit {
    width: 49%;
  }

  /* レシート管理 */
  .receipt_registration {
    height: 30vh;
  }

  .user_history {
    margin-top: 40px;
  }

  /* ポイント履歴 */
  .campaign_wrap dt {
    margin-bottom: 0;
  }

  .campaign_wrap dl {
    margin-bottom: 40px;
  }

  .campaign_wrap dl:last-of-type {
    margin-bottom: 80px;
  }

  .ponta_point_wrap {
    height: 125px;
  }

  .ponta_point_wrap h3 {
    margin: -67px 0 0 -155px;
  }

  .ponta_point_wrap::before {
    top: -34px;
    right: -4px;
  }

  .ponta_point_wrap:after {
    bottom: 4px;
    left: -17px;
  }

  .ponta_point {
    font-size: 10rem;
  }

  .apply_wrap {
    margin-top: 20px;
  }

  .apply_wrap .point_wrap {
    margin: auto;
    padding: 0.5em 1em;
  }

  /* アンケート */
  .questionnaire_wrap ol {
    margin-left: 20px;
    font-size: 2rem;
  }

  .question_wrap {
    font-size: 1.8rem;
  }

  .answer_wrap {
    margin: 20px 0 40px 0;
  }

  .answer_wrap label {
    display: block;
    margin-right: 0;
  }

  #recommend-product-modal .modal-content {
    width: 100%;
    position: absolute;
    bottom: 20px;
    max-height: 70vh!important;
  }
}

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

  /* TOP */
  .page-top .btn_wrap a {
    padding: 25px 10px;
    font-size: 1.2rem;
  }

  .bnr_area .btn {
    font-size: 1.6rem;
  }

  /* レシート管理 */
  .user_history table {
    font-size: 1.2rem;
  }

  /* ポイント履歴 */
  .ponta_point_wrap::before {
    width: 100px;
    height: 100px;
  }

  .ponta_point_wrap::after {
    width: 64px;
    height: 64px;
    bottom: 4px;
    left: -8px;
  }

  .ponta_point_wrap.wide .ponta_point {
    font-size: 8rem;
  }

  .ponta_point_wrap.wide::before {
    top: -42px;
    right: -4px;
  }

  .ponta_point_wrap.wide::after {
    bottom: 20px;
    left: -8px;
  }
}

/* チャットVIDEO */
.remoteVideoHeader {
  margin: 0px !important;
  width: 100%;
  height: 10vh;
  background-color: black;
}

@media screen and (min-width: 897px) {
  .remoteVideoHeader {
    align-self: center;
    max-width: 56.25vh;
    height: 10vh;
    background-color: black;
  }
}

#remoteVideoBox {
  object-fit: cover;
  height: 85vh;
  /* fallback */
  height: calc(var(--vh, 1vh) * 85);
  width: 100%;
  position: absolute
}

/* iPhone 11 */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  #remoteVideoBox {
    height: 85vh;
    /* fallback */
    height: calc(var(--vh, 1vh) * 85);
  }
}

#localVideoBox {
  position: absolute;
}

#localVideoBox video {
  width: 25%;
  height: auto;
  border-radius: 5px;
  margin-left: 10px;
}
#videoWaterMark {
    position: relative;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

#videoWaterMarkContainer {
    position: absolute;
    display: flex;
    right: 12px;
    left: 0;
    margin-left: auto;
    width: 60%;
    height: 85vh;
    /* fallback */
    height: calc(var(--vh, 1vh) * 85);
    max-height: 60px;
}

@media only screen and (min-width: 375px) {
    #videoWaterMarkContainer {
        max-height: 70px;
    }
}
@media only screen and (min-width: 414px) {
    #videoWaterMarkContainer {
        max-height: 78px;
    }
}
@media only screen and (min-width: 640px) {
    #videoWaterMarkContainer {
        max-height: 100px;
    }
}
@media only screen and (min-width: 897px) {
    #videoWaterMarkContainer {
        max-height: 100px;
    }
}


#videoWaterMark {
    position: relative;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

#videoWaterMarkContainer {
    position: absolute;
    display: flex;
    right: 30%;
    left: 0;
    margin-left: auto;
    width: 100px;
    height: 85vh;
    /* fallback */
    height: calc(var(--vh, 1vh) * 85);
    max-height: 60px;
}

@media only screen and (min-width: 375px) {
    #videoWaterMarkContainer {
        max-height: 70px;
    }
}
@media only screen and (min-width: 414px) {
    #videoWaterMarkContainer {
        max-height: 78px;
    }
}
@media only screen and (min-width: 640px) {
    #videoWaterMarkContainer {
        max-height: 100px;
    }
}
@media only screen and (min-width: 897px) {
    #videoWaterMarkContainer {
        max-height: 100px;
    }
}

/* alert */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

html:not([dir="rtl"]) .alert-dismissible {
  padding-right: 3.8125rem;
}

*[dir="rtl"] .alert-dismissible {
  padding-left: 3.8125rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

html:not([dir="rtl"]) .alert-dismissible .close {
  right: 0;
}

*[dir="rtl"] .alert-dismissible .close {
  left: 0;
}

.alert-primary {
  color: #1a107c;
  background-color: #d6d2f8;
  border-color: #c6c0f5;
}

.alert-primary hr {
  border-top-color: #b2aaf2;
}

.alert-primary .alert-link {
  color: #110a4f;
}

.alert-secondary {
  color: #6b6d7a;
  background-color: #f5f6f7;
  border-color: #f1f2f4;
}

.alert-secondary hr {
  border-top-color: #e3e5e9;
}

.alert-secondary .alert-link {
  color: #53555f;
}

.alert-success {
  color: #18603a;
  background-color: #d5f1de;
  border-color: #c4ebd1;
}

.alert-success hr {
  border-top-color: #b1e5c2;
}

.alert-success .alert-link {
  color: #0e3721;
}

.alert-info {
  color: #1b508f;
  background-color: #d6ebff;
  border-color: #c6e2ff;
}

.alert-info hr {
  border-top-color: #add5ff;
}

.alert-info .alert-link {
  color: #133864;
}

.alert-warning {
  color: #815c15;
  background-color: #feefd0;
  border-color: #fde9bd;
}

.alert-warning hr {
  border-top-color: #fce1a4;
}

.alert-warning .alert-link {
  color: #553d0e;
}

.alert-danger {
  color: #772b35;
  background-color: #fadddd;
  border-color: #f8cfcf;
}

.alert-danger hr {
  border-top-color: #f5b9b9;
}

.alert-danger .alert-link {
  color: #521d24;
}

.alert-light {
  color: #7a7b86;
  background-color: #fbfbfc;
  border-color: #f9fafb;
}

.alert-light hr {
  border-top-color: #eaedf1;
}

.alert-light .alert-link {
  color: #62626b;
}

.alert-dark {
  color: #333a4e;
  background-color: #e0e2e6;
  border-color: #d3d7dc;
}

.alert-dark hr {
  border-top-color: #c5cad1;
}

.alert-dark .alert-link {
  color: #1f232f;
}


.form-group:not(:last-of-type) {
  margin-bottom: 10px;
}

.form-check a {
  text-decoration: underline;
  color: #005587;
}

.form-check a:first-child {
  margin-right: 10px;
}

.form-check input[type=checkbox] {
  margin-right: 4px;
}

.btn-submit {
  transition: background-color 0.25s ease-in-out;
}

.btn-submit:disabled {
  background-color: #CCC;
}


textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #999;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e3342f;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(227, 52, 47, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #e3342f;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #e3342f;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #e3342f;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #e3342f;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #e3342f;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e9605c;
  background-color: #e9605c;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #e3342f;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e3342f;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}


.modal-w-48 {
  width: 48%;
  margin: auto;
}

.helthwarning {
  background-color: #2A2C2C;
  display: flex;
}

.helthwarning .logo_area {
  margin-bottom: 20px;
  text-align: center;
  color: #FFF;
  display: block;
}

.helthwarning-text {
  color: #FFF;
  padding: 0 1em;
  margin-bottom: 40px;
  text-align: center;
}

.helthwarning-container {
  width: 100%;
  -ms-grid-rows: 50px 1fr 85px;
  grid-template-rows: 50px 1fr 85px;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.room_close {
  text-align: right;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
}

.video_controll {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
}

.room_logo_watermark {
  position: fixed!important;
  top: 25px;
  left: 50%;
  margin-left: -30px;
  width: 60px!important;
}

/* トップ画面 接続ボタン画像 */
.btn-connect-room {
  width: 100%;
  max-width: 580px;
}

/* トップ画面 接続テストボタン */
.btn-test-link {
  width: 100%;
  max-width: 580px;
}

@media screen and (max-width: 896px) {
  .btn-connect-room {
    max-width: 480px;
  }

  .btn-test-link {
    max-width: 480px;
  }
}

@media screen and (max-width: 479px) {
  .btn-connect-room {
    max-width: 270px;
  }

  .btn-test-link {
    max-width: 270px;
  }
}

.waiting_order {
  border: 3px solid #FD8332;
  padding: 10px;
  margin: 10px auto;
  width: 85%;
  max-width: 750px;
  position: relative;
}

.waiting_text {
  font-size: 2.5rem;
  font-weight: bold;
}

.waiting_order_text {
  font-size: 2rem !important;
  color: #7E7E7E;
}

.loading-image {
  width: 85%;
  max-width: 750px;
}

.disable-a-effect:hover {
  text-decoration: none;
}

.disable-btn-effect:hover {
  color: #FFF;
  text-decoration: none;
}

.disable-btn-effect.disable,
.disable-btn-effect:disabled {
  opacity: 1;
}

.a-hover-color:hover {
  color: #2A2C2C;
}

#schedule {
  color: #464848;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 1.3rem;
}

.kv-size {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
}

#schedule_content {
    margin: auto;
    padding: 10px;
    border: 5px solid #E85426;
}

@media screen and (min-width: 430px) {
    #schedule {
        font-size: 1.8rem;
    }

    .kv-size {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 480px) {
  #schedule {
    font-size: 2.3rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .kv-size {
    font-size: 2rem;
    max-width: 670px;
  }
}

@media screen and (min-width: 600px) {
    .kv-size {
        font-size: 2.8rem;
    }

    #schedule {
        padding-top: 25px;
        padding-bottom: 25px;
    }

}

@media screen and (min-width: 897px) {
  #schedule {
    font-size: 3.5rem;
  }
}

.no_online_limit {
  width: 100%;
  max-width: 670px;
  /* お客様の画像は幅670pxなので */
  margin: auto;
}

.bnr_area.bnr_campaign {
  width: 100%;
}

.bnr_campaign .image_area,
.bnr_campaign .bnr-wrap,
.bnr_campaign .coupon_image_area {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

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

  .bnr_campaign .image_area,
  .bnr_campaign .bnr-wrap,
  .bnr_campaign .coupon_image_area {
    max-width: 540px;
  }
}

.letter-spacing-1 {
  letter-spacing: 2px;
}

.headline-image {
  position: relative;
  display: block;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  margin-bottom: -10px;
}

.image-newsdetail {
  position: relative;
  z-index: 0;
}


@media (min-width: 480px) {
    .headline-image {
        max-width: 480px;
    }
}

@media screen and (min-width: 769px) {
  .headline-image {
    max-width: 1110px;
  }
}

.show-reservation {
  margin: 20px auto 20px auto;
  max-width: 270px;
  padding: 10px;
  font-size: 2rem;
  text-align: center;
  color: rgb(241, 241, 241);
  background: rgb(22, 46, 28);
  border: 0 solid rgb(195, 165, 113);
  border-left-width: 10px;
  border-right-width: 10px;
}

.show-reservation:hover {
  cursor: pointer;
  color: rgb(211, 211, 211);
}

@media screen and (min-width: 480px) {
  .show-reservation {
    font-size: 3rem;
    padding: 15px 25px;
    max-width: 480px;
    border-left-width: 20px;
    border-right-width: 20px;
  }
}

@media screen and (min-width: 897px) {
  .show-reservation {
    font-size: 3.5rem;
    padding: 25px;
    max-width: 580px;
    border-left-width: 20px;
    border-right-width: 20px;
  }
}

.confirm-reservation-date-box {
  margin: 5px auto;
  padding: 5px;
  border: 2px solid rgb(234, 51, 36);
  max-width: 250px;
}

.confirm-reservation-warning-context {
  margin: 5px auto;
  padding: 5px;
  max-width: 250px;
}

.confirm-reservation-modal-button {
  width: 170px;
  white-space: nowrap;
  height: 80px;
  padding: 25px 10px;
  margin: 2px;
  border: 5px solid #E0DBC6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #E7F5FA;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

#confirm-reservation-cancel {
  background-color: #F3F2F2;
}

#confirm-reservation-connect {
  max-width: 250px;
  font-size: 2rem;
  background-color: #D31B42;
  border-radius: 40px;
  border-color: #CBA46A;
  display: flex;
  flex-flow: column;
}

.confirm-reservation-modal-button.disabled {
  background-color: rgb(166, 166, 166);
}

.confirm-reservation-modal-close {
  border: 2px solid rgb(243, 242, 242);
  background-color: rgb(166, 166, 166);
  width: 90px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.confirm-reservation-modal-button:hover,
.confirm-reservation-modal-close:hover {
  transform: scale(1.05);
  box-shadow: 3px 1px 20px rgba(0, 0, 0, 0.15);
}

.confirm-reservation-modal-button.disabled:hover {
  background-color: rgb(166, 166, 166);
  transform: none;
  box-shadow: none;
  cursor: default;
}

#confirm-reservation-delete-yes.disabled {
  background-color: rgb(166, 166, 166);
  transition: none;
}

#confirm-reservation-delete-yes.disabled:hover {
  color: white;
}

#confirm-reservation-before-time-text {
  color: red;
  white-space: nowrap;
}

#notify-reservation-modal .modal-title {
  font-size: 1.5rem;
}

#notify-reservation-modal .modal-title.headline {
  font-size: 1.75rem;
  font-weight: 700;
}

#notify-reservation-modal p {
  font-size: 1.2rem;
}


@media screen and (min-width: 424px) {
  #notify-reservation-modal .modal-title {
    font-size: 2rem;
  }

  #notify-reservation-modal .modal-title.headline {
    font-size: 2.5rem;
  }

  #notify-reservation-modal p {
    font-size: 1.5rem;
  }

  .confirm-reservation-date-box {
    max-width: 300px;
  }

  .confirm-reservation-warning-context {
    max-width: 300px;
  }

  #confirm-reservation-connect {
    max-width: 300px;
  }
}

#notify-reservaton-modal .modal-title.warning {
  font-weight: 700;
}

.product-select-item {
  /* d-flex flex-column justify-content-between col-12 col-sm-6 col-md-4 col-lg-3 col-xl-2 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 25%;
  max-width: 25%;
  font-size: 1rem;
  padding: 0 5px;
  margin: 15px 0;
}

.product-select-item.active button {
  background-color: #e35205;
}

#selected-product {
  min-height: 50px;
  color: white;
  background: black;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

#selected-product div {
  position: relative;
}

#selected-product img {
  position: absolute;
  height: 100px;
  bottom: 0;
  border: 0.5rem solid black;
}

@media (min-width: 576px) {
  .product-select-item {
    font-size: 1.3rem;
    padding: 0 10px;
  }

  #selected-product {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .product-select-item {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  #selected-product {
    font-size: 1.6rem;
  }
}

.close-icon {
  color: #FFFFFF;
  position: relative;
  top: -3rem;
  font-size: 2.5rem;
  cursor: pointer;
}

.close-text {
  color: #FFFFFF;
  position: relative;
  top: -3.25rem;
  font-size: 1rem;
  cursor: pointer;
}

#recommend-product-modal {
  font-size: 1.2rem;
}

#recommend-product-modal .disclaimer {
  font-size: 1.2rem;
}

@media (min-width: 576px) {

  #recommend-product-modal {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  #recommend-product-modal {
    font-size: 1.6rem;
  }

  .warning_wrap {
    padding: 15px;
  }

  .warning_wrap h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    text-align: center;
    color: #fd172e;
  }

  .warning_wrap h1 i {
    font-size: 6rem;
    color: #e6b017;
  }

  .warning_wrap .text_wrap {
    color: #FFF;
    font-size: 1.8rem;
  }

  .warning_wrap .text_wrap dl {
    margin-top: 20px;
  }

  .warning_wrap .text_wrap dt {
    font-size: 2rem;
  }

  .warning_wrap .text_wrap dd {
    font-size: 3rem;
    font-weight: 600;
  }

  .warning_wrap .text_wrap .reception_wrap dd {
    font-size: 2.4rem;
    font-weight: 400;
  }

  .warning_wrap .text_wrap .reception_wrap span {
    display: block;
    font-size: 1.6rem;
  }
}

.test-link,
.test-link-in-modal {
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;
  background: #FFFFDE;
  box-shadow: 2px 2px 5px #76797F;
  margin: auto;
  max-width: 580px;
}

.test-link a,
.test-link-in-modal a {
  color: #FF0000;
  font-size: 18px;
}

.test-link a:hover,
.test-link-in-modal a:hover {
  text-decoration: none;
}

@media screen and (max-width: 896px) {
  .test-link {
    max-width: 480px;
  }
}

@media screen and (max-width: 479px) {
  .test-link {
    max-width: 270px;
  }
}

@media screen and (min-width: 480px) {
  .test-link a {
    font-size: 2.5rem;
  }

  .test-link-in-modal a {
    font-size: 2rem;
  }
}

@media screen and (min-width: 897px) {
  .test-link a {
    font-size: 4rem;
  }

  .test-link-in-modal a {
    font-size: 3rem;
  }
}

.custom-header {
  display: flex;
  flex-direction: row !important;
}

.close-information-image {
  color: red;
  float: right;
  margin-right: 5px;
  cursor: pointer;
}

.close-information-image .fa-sort-down {
  font-size: 3rem;
}

#queues_status_text {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 2rem;
}

#button-connect-concentrated {
  margin: auto;
  color: white;
  background: rgb(160, 160, 160);
  border-radius: 10px;
  font-size: 1.3rem;
  max-width: 270px;
  padding: 10px 0;
}

#participate-banner {
  max-width: 270px;
  margin: auto;
  font-size: 1.3rem;
}

@media (min-width: 480px) {
  #queues_status_text {
    font-size: 3rem;
  }

  #button-connect-concentrated {
    font-size: 2.2rem;
    max-width: 480px;
    padding: 17px 0;
  }

  #participate-banner {
    max-width: 470px;
    font-size: 2.2rem;
  }

  #year-holiday-date-character {
    font-size: xx-large;
  }
}

@media (min-width: 897px) {
  #queues_status_text {
    font-size: 3.5rem;
  }

  #participate-banner {
    max-width: 580px;
    font-size: 3rem;
  }

  #button-connect-concentrated {
    font-size: 3rem;
    max-width: 580px;
    padding: 25px 0;
  }
}

.close-information-image .fa-sort-down {
  font-size: 3rem;
}

#information-button {
  cursor: pointer;
}

#information-button p {
  background-color: #E95313;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
}

.description-text {
  text-align: left;
  display: block;
  font-weight: bold;
  width: 100%;
  max-width: 270px;
  margin: auto;
  font-size: 1.5rem;
}

@media screen and (min-width: 480px) {
  .description-text {
    max-width: 480px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 580px) {
  .description-text {
    font-size: 3rem;
  }
}

@media screen and (min-width: 897px) {
  .description-text {
    font-size: 3.5rem;
    max-width: 580px;
  }
}

.connect-now-button-text {
  color: #E74E22;
}

.test-connection-button-text {
  color: black;
}

.end-room-title {
  font-size: 2rem;
  float: left;
  text-align: left;
  color: #767171;
  font-weight: bold;
}

.p-0 {
  padding: 0px !important;
}

#button-off-hours {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.6rem;
  flex-direction: row;
  max-width: 768px;
}

@media screen and (min-width: 480px) {
  #button-off-hours {
    font-size: 2.5rem;
    max-width: 670px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 600px) {
  #button-off-hours {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 3rem;
  }
}

@media screen and (min-width: 897px) {
  #button-off-hours {
    font-size: 3.5rem;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}


.no_reply_text {
  font-size: 14px;
}

#video_icon, #room_close_icon {
  font-size: 3rem;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.text-white {
  color: white;
}

#information-button {
  position: absolute;
  bottom: 20%;
  left: 12%;
}

.rounder-container .image_banner {
  max-height: 500px;
}

/* PC iPad */
@media screen and (min-width: 767px) {
  #information-button {
    position: absolute;
    bottom: 40px;
    left: 1%;
  }
  .error_p_text {
    text-align: center!important;
  }
}
/* PC iPad */
@media screen and (min-width: 752px) {
  #information-button {
    position: absolute;
    bottom: 170px;
    left: 5%;
  }
  .rounder-container .image_banner {
    max-height: 830px!important;
  }
}


.border-radius {
  border-radius: 80px;
}

.questionnaire-image {
  width: 670px;
}
#idcard_support_text {
  width: 100%;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
}

#idcard_support_text .support_header {
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
}

#idcard_support_text .support_list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

#is_reservation {
  font-size: 2rem;
  color: #00B0F0;
  position: absolute;
  top: 2rem;
  left: 1rem;
  display: none;
}

select {
  width: 100% !important;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #999;
  line-height: 40px;
}

.survey-item-name {
  color: #3D5567;
  font-size: 2rem;
}

.survey-item-name-badge {
  font-size: 1rem;
}

.h-90 {
  height: 90%;
}

.fullArea {
  height: 73vh;
}

#remoteVideoBox.contract-mode {
  height: auto;
  right: 0;
}

#remoteVideoBox.contract-mode video {
  width: 25% !important;
  border-radius: 5px !important;
  margin-right: 10px !important;
}

#contract-start,
#contract-form,
#contract-confirm {
  max-height: 73vh;
}

#contract-form-input-area {
  max-height: 45vh;
  overflow-y: auto;
}

.qr-code-border {
    width: 600px;
    border: dashed 1rem #E6002D;
}

#qr-code {
  max-width: 300px !important;
  position: absolute;
  bottom: calc(50% - 150px);
  left: calc(50% - 150px);
  z-index: 999;
  display: none;
  background-color: white;
}

#qr-code > svg {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.w-70 {
  width: 70%;
  font-size: 1.5rem !important;
}

.counseling_popup_btn {
  outline: 0;
  box-shadow: 0 0 0 3px rgb(100 150 200 / 50%)!important;
}

.mt-5r {
  margin-top: 5rem;
}

.remove-item-number {
  list-style-type: none;
}

/** Animation */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

