@charset "utf-8";

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
}
.loader {
    color: #dc3545;
    font-size: 11px;
    text-indent: -99999em;
    position: relative;
    margin-top: 0.2em;
    width: 4em;
    height: 4em;
    box-shadow: inset 0 0 0 0.5em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader:before,
.loader:after {
    position: absolute;
    content: '';
}
.loader:before {
    width: 2.2em;
    height: 4.2em;
    background: #fff;
    border-radius: 4.2em 0 0 4.2em;
    top: -0.1em;
    left: -0.1em;
    -webkit-transform-origin: 2.2em 2.1em;
    transform-origin: 2.2em 2.1em;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}
.loader:after {
    width: 2.2em;
    height: 4.2em;
    background: #fff;
    border-radius: 0 4.2em 4.2em 0;
    top: -0.1em;
    left: 2.1em;
    -webkit-transform-origin: 0px 2.1em;
    transform-origin: 0px 2.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* common */
img {
  pointer-events: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
.main-wrapper {
  margin: auto;
  padding: 0 15px;
  width: 100%;
}
.top_title {
  height: 50px;
  background-color: #F4A000;
  color: #FFF;
  text-align: center;
  width: 100vw;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_title img {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_title.white {
  background-color: #FFF;
  color: #F4A000;
}
.content_wrapper {
  text-align: center;
}
.content_header {
  margin: 15px 0px;
}
.sub {
  font-size: 14px;
}


/* index */
.topmenu_container img {
  max-width: 100%;
}
.topmenu_container p > a {
  text-decoration: underline;
  color: #000;
  font-size: 14px;
}
.top_note {
  margin-top: 10px;
}
.inq_btn {
  margin-top: 10px;
  display: inline-block;
  padding: 15px;
  background-color: #FFF;
  color: #707070;
  border-radius: 5px;
  box-shadow: 0px 3px 7px #ccc;
}


/* describe */
.infobox_title {
  font-weight: bold;
  margin: 20px;
  padding: 10px 0;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
}
.infobox .list_sub {
  padding-left: 10px;
  padding-bottom: 20px;
}
.infobox .list_sub:before {
  content: "※";
  position: absolute;
  margin-left: -12px;
}
.infobox_table td {
  text-align: left;
  vertical-align: top;
}
.infobox_label_td {
  width: 30%;
}
.infobox_label {
  border-left: 5px solid #F4A000;
  padding-left: 5px;
}
.cards_logo {
  margin-bottom: 10px;
}
.cards_logo img {
  display: inline-block;
  height: 30px;
}
.note {
  background-color: #FFEDC9;
  padding: 25px;
  margin: 10px 0;
}
.btn_area {
  display: grid;
  grid-template-columns: 1fr 2fr 5fr;
  column-gap: 10px;
  margin-top: 20px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  width: 100%;
  padding: 0px 20px;
  background-color: #FFF;
  transform: translateX(-50%);
  z-index: 1000;
}
.btn_area div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.back_btn {
  margin: 10px 0;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #DFDFDF;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  height: 64px;
}
.empty_cart_icon {
  filter: invert(1);
}
.link_btn {
  margin: 10px 0;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #F4A000;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  height: 64px;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_btn.disabled {
  background-color: #DFDFDF;
}
.item_count_label {
  background-color: #FFF;
  color: #F4A000;
  min-width: 27px;
  border-radius: 15px;
  margin-left: 3px;
}


/* select */
.red-text {
  color: #E70259;
}
.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5px;
  padding-left: 0px;
  margin: auto;
  max-width: 405px;
}
.event-item {
  position: relative;
  background-position: center;
  background-size: cover;
  margin-bottom: 5px;
  height: 50vw;
  list-style: none;
  max-width: 200px;
  max-height: 200px;
}
.cart-icon {
  background-color: #E70259;
  position: absolute;
  border-radius: 16px;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-item-label {
  background: rgba(255, 255, 255, 0.7);
  display: block;
  width: calc(100% - 20px);
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-bottom: 5px;
}
.category_label {
  font-weight: bold;
  font-size: 16px;
}
.panel {
  box-shadow: none;
  margin-bottom: 80px;
}
.pagination > .active > a {
  background-color: #F4A000;
  border-color: #F4A000;
}
.pagination > li > a {
  color: #F4A000;
}

.item {
  border-radius: 10px;
  border: 2px solid #ddd;
}
.item img {
  width: 100%;
}
.item_footer {
  min-height: 20px;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}


/* check */
.photo-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3px;
  row-gap: 3px;
  padding-left: 0px;
  max-width: 606px;
  margin: auto;
  margin-bottom: 100px;
}
.photo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  height: 25vw;
  max-width: 200px;
  max-height: 200px;
}
.watermark {
  width: 90%;
  mix-blend-mode: overlay;
}

.modal-body,.modal-footer {
  padding: 0;
}
.modal-content {
  overflow: hidden;
}
.modal-watermark {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 150%;
  max-height: 150%;
  mix-blend-mode: overlay;
}


/* cart */
.cart-item {
  display: flex;
  margin: 0 5px;
  padding: 10px;
  font-size: 15px;
  border-top: 2px solid #D9D9D9;
}
.cart-item:last-child {
  border-bottom: 2px solid #D9D9D9;
}
.thumbnail_wrapper {
  position: relative;
  display: inline-block;
  width: 25vw;
  height: 25vw;
  max-width: 150px;
  max-height: 150px;
}
.cart_trash {
  position: absolute;
  background-image: url('/img/trash.svg');
  left: -10px;
  bottom: -10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
}
.cart_thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25vw;
  height: 25vw;
  max-width: 150px;
  max-height: 150px;
  background-position: center;
  background-size: cover;
}
.item_info {
  display: inline-block;
  margin-left: 10px;
}
.item_info th {
  text-align: left;
  min-width: 50px;
  vertical-align: top;
}
.item_info td {
  text-align: left;
  padding-left: 5px;
}
.total_wrapper {
  border-radius: 5px;
  border: 2px solid #E70259;
  padding: 10px;
  width: 90%;
  margin: 20px auto;
  font-size: 15px;
}
.total_wrapper table {
  width: 100%;
}
.total_wrapper table th {
  vertical-align: top;
  text-align: left;
}
.total_wrapper table td {
  text-align: left;
}
.total_wrapper table tr:last-child {
  border-top: 2px solid #DFDFDF;
  font-size: 17px;
}
.total_wrapper table tr:last-child th {
  text-align: center;
}

.orders_item {
  margin-top: 50px;
}
.box_border {
  position: absolute;
  width: 100vw;
  left: 0;
  background-color: #EEE;
  height: 20px;
  box-shadow: inset 2px 2px 3px #ddd;
}
.box_border:last-child {
  display: none;
}

.btn_1_area {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  margin-bottom: 20px;
}
.btn1_area div, .btn1_area button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin: 15px 0;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #F4A001;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.btn1_area div:last-child {
  border: 2px solid #F4A001;
  color: #F4A001;
  background-color: #FFF;
}

.credit-form {
  text-align: left;
}
.btn1_area button {
  width: 100%;
  border: none;
}

.notice {
  background-color: #FFE7E7;
  text-align: left;
  padding: 10px 20px;
  margin: 20px;
}

.help_btn {
  cursor: pointer;
}
.help_wrapper {
  z-index: 999999;
  min-width: 100vw;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFEDC9;
  background-image: repeating-linear-gradient(-45deg, #FFF2D9, #FFF2D9 7px,transparent 0, transparent 21px);
}
.help_close {
  position: absolute;
  right: 7px;
  top: 20px;
  background-color: #F4A000;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 35px;
  border-radius: 20px;
  color: #FFF;
  font-size: 25px;
  cursor: pointer;
}
.help_content {
  margin: 40px 19px;
  padding: 24px;
  background-color: #FFF;
  max-height: calc(100vh - 80px);
  overflow: scroll;
  text-align: left;
}
.help_content p {
  text-align: center;
  font-weight: bold;
}

.confirm_wrapper {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
}
.confirm_content {
  margin: 30px 20px;
  width: calc(100% - 40px);
  background-color: #FFF;
  padding: 30px 30px 5px;
}
.btn2_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  margin-bottom: 10px;
}
.btn2_area button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.label_form {
  max-width: 50px;
}
.label_form .form-control {
  border: none;
}

.history_header {
  margin-bottom: 10px;
}
.history_header img {
  vertical-align: middle;
}
.history_header p {
  display: inline-block;
  margin-left: 10px;
  font-size: 22px;
  color: #F4A000;
  vertical-align: middle;
  margin-bottom: 0px;
}
.history_header p span {
  font-size: 14px;
  display: block;
}
.history_title {
  position: absolute;
  width: 100vw;
  left: 0;
  background-color: #EEE;
  height: 55px;
  line-height: 55px;
  box-shadow: inset 2px 2px 3px #ddd;
}
.history_title div {
  height: 29px;
  width: 18px;
  background-image: url("/img/arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 15px;
  top: 13px;
  cursor: pointer;
}
.history_title span {
  font-weight: bold;
}
.orders_content {
  margin-top: 80px;
}
.order_wrapper p {
  text-align: left;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-left: 5px;
}
.download_btn {
  margin: 10px auto;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: #F4A000;
  color: #FFF;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  min-height: 48px;
  line-height: 40px;
  display: block;
  width: 60%;
  border: none;
}

.download_btn.disabled {
  background-color: #ddd;
  color: #333;
  cursor: default;
}

.ordered_label {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #F4A000;
  color: #FFF;
  z-index: 999;
  padding: 1px 3px;
}
.ordered_icon {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  background-color: #F4A000;
  border-radius: 12px;
}
.ordered_icon:after {
  content: '';
  display: block;
  margin-top: 6px;
  margin-left: 5px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #FFE;
  border-bottom: 3px solid #FFF;
  transform: rotate(-45deg);
}

.notice_block {
  border: 2px solid #E70259;
  border-radius: 5px;
}
.notice_title {
  background-color: #E70259;
  color: #FFF;
  padding: 5px 0px;
}
.notice_label {
  color: #E70259;
}

#cboxPrevious, #cboxNext {
  display: none!important;
}
#cboxClose {
  background: rgba(0, 0, 0, 0);
  text-indent: 0px;
  color: #FFF;
  margin-top: -4px;
  margin-right: -4px;
}
#cboxLoadedContent {
  overflow: hidden!important;
  position: relative;
}
