/* *****************************
 * Import file to Scss or Sass.
 **************************** */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

h1,
h2,
h3,
h4 {
  text-wrap: inherit;
}

body {
  background-color: #fff;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.use-common-btn .btn {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: none;
  display: inline-block;
  color: #fff;
  padding: 13px 30px;
  background-color: #e97d0c;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 0 0 #924c03;
}
.use-common-btn .btn__camera {
  padding: 13px 30px 13px 75px;
  background: url(../img/common/icon_btn_cam.png) no-repeat 30px 4px/42px auto;
  background-color: #e97d0c;
}
.use-common-btn .btn__camera:disabled {
  background-image: url(../img/common/icon_btn_cam_disabled.png);
  background-color: #d9d9d9;
}
.use-common-btn .btn__ticket {
  padding: 13px 30px 13px 65px;
  background: url(../img/common/icon_btn_ticket.png) no-repeat 30px 11px/28px auto;
  background-color: #e97d0c;
}
.use-common-btn .btn__collection1 {
  background-color: #920a00;
  box-shadow: 0 4px 0 0 #5b0700;
}
.use-common-btn .btn__collection2 {
  background-color: #115a62;
  box-shadow: 0 4px 0 0 #042f33;
}
.use-common-btn .btn:disabled {
  background-color: #d9d9d9 !important;
  color: #888888 !important;
  box-shadow: 0 4px 0 0 #888888 !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__box {
  background-color: #fff;
  max-width: 640px;
  width: 90%;
  border-radius: 10px;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 30px;
}
.modal__img {
  margin-bottom: 20px;
}
.modal__txt {
  margin-bottom: 20px;
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
}/*# sourceMappingURL=common.css.map */