@charset "UTF-8";
body {
  height: 100%;
  width: 100%;
  font-size: 14px;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

@keyframes fadeIn {
  /*「fadeIn」と名前をそろえる*/
  0% {
    opacity: 0; }
  /*アニメーション開始時は完全に透過*/
  100% {
    opacity: 1; }
  /*アニメーション終了時は透過しない*/ }
/*旧 Safari 用のベンダー処理*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.container {
  width: 100%;
  height: 100%;
  max-width: 100%; }

/* ↓ mv_areaContainer */
.mv_areaContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  background-color: #fff; }

/* ↑mv areaContainer */
/* modal */
.open_button {
  width: 56px;
  height: 28px;
  opacity: 1;
  position: absolute;
  right: 5px;
  bottom: 19px;
  background-image: url(./assets/img/icon_cart.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 50% 4px;
  padding-top: 40px;
  color: #fff; }

.modal_wrap input {
  display: none; }

.modal_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.modal_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 20px 5px;
  box-sizing: border-box;
  background-color: #fff;
  line-height: 1.2em;
  transition: 0.5s; }
  .modal_content img {
    width: 80%; }

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer; }

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.modal_wrap {
  font-size: 14px; }
  .modal_wrap h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px; }
  .modal_wrap p {
    line-height: 1.6;
    text-align: left;
    width: 80%;
    margin: 10px auto 20px; }
  .modal_wrap .btn_ok {
    width: 87%;
    height: 50px;
    margin-bottom: 20px;
    background-color: #f1d723;
    border: none;
    color: #333;
    padding: 18px 0;
    display: inline-block;
    border-radius: 5px; }

/* camera_btn */
/* modal */
.camera_openbtn {
  width: 40px; }

.modal_wrap input {
  display: none; }

.modal_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.modal_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 20px 5px;
  box-sizing: border-box;
  background-color: #fff;
  line-height: 1.2em; }
  .modal_content img {
    width: 80%; }

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer; }

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.modal_wrap {
  font-size: 14px; }
  .modal_wrap .camera_modal_txt {
    display: block;
    margin: 20px auto 0px;
    text-align: center;
    font-weight: bold; }
  .modal_wrap .camera_modal_btn label {
    width: 38%;
    height: 45px;
    position: initial;
    margin-top: 10px;
    background-color: #f1d723;
    border: none;
    color: #333;
    letter-spacing: 1px;
    padding: 13px;
    font-size: 16px;
    text-align: center; }
  .modal_wrap #ss_save {
    margin-right: 10px; }

.modal_wrap .camera_modal_btn label:first-child {
  margin-right: 8px; }

.btn_camera {
  width: 60%;
  height: auto; }

.menu {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 10px;
  right: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box; }

/* ↓ circle menu*/
.circle_menu-item,
.circle_menu-open-button {
  border-radius: 20%;
  width: 40px;
  height: 40px;
  background: #EEEEEE;
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms; }

.circle_menu-item {
  background-repeat: no-repeat;
  background-position: 50%;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12); }

.circle_menu-open {
  display: none; }

.lines {
  width: 22px;
  height: 2px;
  background: #596778;
  display: block;
  position: absolute;
  top: 50%;
  left: 54%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms; }

.line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0); }

.line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0); }

.circle_menu-open:checked + .circle_menu-open-button .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg); }

.circle_menu-open:checked + .circle_menu-open-button .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1); }

.circle_menu-open:checked + .circle_menu-open-button .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg); }

.circle_menu {
  position: absolute;
  left: -25px;
  bottom: -28px;
  width: 80px;
  height: 80px;
  text-align: center;
  box-sizing: border-box;
  font-size: 26px; }

.circle_menu-item:nth-child(3) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms; }

.circle_menu-item:nth-child(4) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms; }

.circle_menu-item:nth-child(5) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms; }

.circle_menu-open-button {
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14); }

.circle_menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0); }

.circle_menu-open:checked + .circle_menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0); }

.circle_menu-open:checked ~ .circle_menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33); }

.circle_menu-open:checked ~ .circle_menu-item:nth-child(3) {
  transition-duration: 180ms;
  -webkit-transition-duration: 180ms;
  -webkit-transform: translate3d(0.08px, -115px, 0);
  transform: translate3d(0.08px, -115px, 0);
  background-image: url(assets/img/icon_twitter.png);
  background-size: 60%;
  background-color: #669AE1; }

.circle_menu-open:checked ~ .circle_menu-item:nth-child(4) {
  transition-duration: 280ms;
  -webkit-transition-duration: 280ms;
  -webkit-transform: translate3d(0.08px, -52px, 0);
  transform: translate3d(0.08px, -52px, 0);
  background-color: #30a7b7; }

.credit {
  margin: 24px 20px 120px 0;
  text-align: right;
  color: #EEEEEE; }

.credit a {
  padding: 8px 0;
  color: #C49CDE;
  text-decoration: none;
  transition: all 0.3s ease 0s; }

.credit a:hover {
  text-decoration: underline; }

/* ↑ circle menu*/
/* ↓ hamburger menu*/
#nav-drawer {
  position: relative; }

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none; }

#nav-open {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  background-image: url(assets/img/icon_plus.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain; }

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out; }

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #232323;
  transition: .3s ease-in-out;
  -webkit-transform: translateY(105%);
  transform: translateY(105%); }

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5; }

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateY(73%);
  transform: translateY(73%); }

/* ↑ hamburger menu*/
.ar_header {
  width: 100%;
  position: absolute;
  top: 15px;
  right: 0;
  display: flex; }
  .ar_header a {
    width: 50px;
    height: 50px;
    display: block;
    background-image: url(assets/img/icon_back.png);
    background-size: 60%;
    background-position: 50%;
    background-repeat: no-repeat; }
  .ar_header p {
    width: 80%;
    font-size: 14px;
    padding-top: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px; }

.slider-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 5px;
  overflow-x: auto;
  overflow-y: hidden; }

.nav-stampList {
  width: 700px;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding: 8px;
  padding-left: 54px;
  list-style: none; }
  .nav-stampList input[type="button"] {
    width: 75%;
    height: 63%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 90%;
    background-color: transparent;
    border: none;
    border-radius: 25%; }

.nav-stampList > * {
  -webkit-transform: translateZ(0px); }

.slider-wrapper::-webkit-scrollbar {
  display: none;
  height: 0 !important; }

.nav-stamp__item {
  float: left;
  width: 150px;
  margin: 0 0 0 10px;
  border: none;
  background-color: transparent; }

.nav-stamp__item {
  width: 95px;
  height: 120px;
  margin: 0 0 0 10px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain; }
  .nav-stamp__item p {
    font-size: 12px;
    color: #fff; }

.nav-stampList .nav-stamp__item:first-child {
  width: 45px;
  height: 45px;
  position: fixed;
  left: 6px;
  background-image: url(assets/img/icon_cancel.png);
  background-size: 50%;
  background-color: #777777;
  border-radius: 15%;
  z-index: 2;
  margin-top: 5px; }

.nav-stampList .nav-stamp__item:nth-child(2) input {
  background-image: url(./assets/img/item_sofa.jpg); }

.nav-stampList .nav-stamp__item:nth-child(3) input {
  background-image: url(./assets/img/item_desk.jpg); }

.nav-stampList .nav-stamp__item:nth-child(4) input {
  background-image: url(./assets/img/item_shelf.jpg); }

.nav-stampList .nav-stamp__item:nth-child(5) input {
  background-image: url(./assets/img/item_bed.jpg); }

.nav-stampList .nav-stamp__item:nth-child(6) input {
  background-image: url(./assets/img/item_kitchen.jpg); }

.nav-stampList .nav-stamp__item:nth-child(7) input {
  background-image: url(./assets/img/item_chair2.jpg); }

/*  ↓error.html only */
.error_body {
  width: 100%;
  height: 100%;
  padding: 50% 0;
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ 明朝", serif !important; }

.error_txt {
  width: 80%;
  margin: 0 auto;
  color: #333;
  text-align: center; }
  .error_txt h1 {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 5px;
    line-height: 1.4; }
    .error_txt h1 span {
      font-size: 18px;
      display: block; }
  .error_txt p {
    margin-bottom: 40px; }

.error_txt p:last-child {
  color: #7d7d7d; }

/*# sourceMappingURL=style2.css.map */
