
  body {
    font-family: 'Open Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Sans-serif;
    background-color: #221F20;
  }
  * {
    font-family: 'Open Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Sans-serif;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  .blinking {
    -webkit-animation:blink 1s ease-in-out infinite alternate;
      -moz-animation:blink 1s ease-in-out infinite alternate;
      animation:blink 1s ease-in-out infinite alternate;
  }
  @-webkit-keyframes blink{
      0% {opacity:0;}
      100% {opacity:1;}
  }
  @-moz-keyframes blink{
      0% {opacity:0;}
      100% {opacity:1;}
  }
  @keyframes blink{
      0% {opacity:0;}
      100% {opacity:1;}
  }
  .blink {
    animation: blinkAnime 1s infinite alternate;
  }
  @keyframes blinkAnime{
    0% { color: #ffffff }
  100% { color: #ff0000 }
  }
  /*中央揃え*/
  .center {
    text-align: center;
  }
  .center * {
    /*
    margin-right: auto;
    margin-left: auto;
    */
  }
  /*ボタン*/
  .button {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
    width: 80%;
    max-width: 240px;
    color: #ffffff;
    font-size: 18px;
    margin: auto;
    padding: 0.75em 0.75em;
    background: #d55f30;
    border: none;
    border-radius: 4px;
    transition: background-color 0.5s;
  }
  .button#putitNG,
  .button#cartNG,
  .button#deleteNG,
  .button#deleteAllNG,
  .button#cameraNG {
    margin-top: 12px;
  }
  /* ボタンの色 */
  .button-primary {
    color: #ffffff;
    background: #d55f30;
  }
  .button-primary:hover {
    color: #ffffff;
    background: #e88760;
  }
  .button-secondary {
    color: #ffffff;
    background: #2c2c2c;
  }
  .button-secondary:hover {
    color: #ffffff;
    background: #545454;
  }
  /* 回転ボタン */
  .rotate-button {
    position: absolute;
    cursor: pointer;
    box-sizing: content-box;
    width: 20px;
    line-height: 20px;
    vertical-align: middle;
    padding: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
  }
  .rotate-button img {
    width: 20px;
    height: auto;
  }
  /* 情報表示 */
  .info {
    pointer-events: none;
    /*display: flex;*/
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    color: #ffffff;
    width: 80%;
    max-width: 280px;
    height: 200px;
    margin: auto;
    font-size: 12px;
    text-align: center;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
  }
  .info img {
    display: block;
    max-height:130px;
    margin: 5px auto 10px;
  }
  /**/
  .disable-select {
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }
  /**/
  .menuIcon {
    position: absolute;
    display: none;
  }
  .menuIcon div:hover {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
  }
  /* 色ボタン */
  .btn-circle-flat {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    transition: .4s;
    margin: 8px 12px !important;
  }
  .btn-color-blue {
    background: #87befd;
  }
  .btn-color-blue:hover {
    background: #668ad8;
  }
  .btn-color-red {
    background: #f54d4d;
  }
  .btn-color-red:hover {
    background: #af3737;
  }
  .btn-color-white {
    background: #fafafa;
    color: rgb(14, 13, 13);
  }
  /* 下部ナビゲーション */
  .menuList {
    position: absolute;
    display: none;
    margin: auto;
    width : 100%;
    top: auto !important;
    bottom : 0 !important;
    left : 0 !important;
    right : 0 !important;
  }
  .menuList .navi-menu {
    font-size: 0;
    text-align:center;
    padding: 8px 0;
  }
  .menuList .navi-menu div,button:hover {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .menuList .navi-menu div {
    display: inline-block;
    width: 36px;
    text-align: center;
    margin: 0 12px;
  }
  .menuList .navi-menu div img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.2));
  }
  /**/
  .menuList .cart-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 10px 10px 16px;
    background:#202020;
  }
  .menuList .cart-menu #cart {
    display: inline-block;
    width: 21px;
    text-align: center;
  }
  .menuList .cart-menu #cart img {
    max-width: 100%;
    height: auto;
  }
  .menuList .cart-menu .cart-in {
    display: flex;
    align-items: center;
  }
  .menuList .cart-menu .total-price {
    color: #ffffff;
    margin-right:10px;
  }
  .menuList .cart-menu .total-price label {
    font-size: 12px;
    margin-right: 8px;
  }
  .menuList .cart-menu .total-price .price {
    font-size: 21px;
  }
  .menuList .cart-menu .total-price .price sup {
    top: -9px;
    font-size: 12px;
    margin-right: 4px;
  }
  .menuList .cart-menu .cartButton {
    max-width: 240px;
    font-size: 12px;
    padding : 8px 8px;
    border: none;
    border-radius: 4px;
  }
  /* ボタン下部配置用 */
  .menu-button-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    width: 100% !important;
    margin: auto !important;
    text-align: center;
  }
  /* 全削除ボタン */
  .deleteAllMenu {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .deleteAllMenu #deleteAll {
    display: none;
    cursor: pointer;
    box-sizing: content-box;
    width: 100px;
    height: 20px;
    padding: 4px 8px;
    border-radius: 24px;
    background: rgba(0,0,0,0.8);
  }
  .deleteAllMenu #deleteAll img {
    width: 100px;
    height: 20px;
  }
  /**/
  #glayLayer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #b8f5fd;
    filter: alpha(opacity=5);
    opacity: 0.05;
  }
  .dialogBody {
    display: none;
    width: 100%;
    height: 100%;
    /* background: rgb(20, 208, 241); */
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 18px;
  }
  .dialogBody#deleteDialog label,
  .dialogBody#deleteAllDialog label,
  .dialogBody#cameraDialog label,
  .dialogBody#cartPostDialog label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 1em;
  }
  /* 部屋選択画面 */
  .dialogBody#roomDialog {
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0 !important;
    padding: 18px 18px;
  }
  /* 商品選択画面 */
  .dialogBody#productDialog {
    width: 100%;
    height: 100%;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    color: #40484d;
    padding: 72px 18px 18px;
    background: rgba(255, 255, 255, 1);
  }
  .dialogBody#productDialog #productCancel {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #000000;
    font-size: 28px;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .dialogBody#productDialog .header {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    padding: 0 18px;
  }
  .dialogBody#productDialog h3 {
    font-size: 18px;
  }
  .dialogBody#productDialog h3 img {
    width: 160px;
    max-width: 50%;
  }
  .dialogBody#productDialog .product-wrap {
    height: 100%;
    overflow: auto;
  }
  .product {
    width: 100%;
    border-collapse: separate;
    border-spacing: 6px;
  }
  .product tr {
  }
  .product td {
    padding: 0 10px;
  }
  .product td:nth-child(1) {
    width: 45%;
  }
  .product td:nth-child(2) {
    width: 55%;
    text-align: left;
  }
  .product-image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    margin: auto;
    padding-top: 100%;
  }
  .product-name {
    font-size: 14px;
  }
  .product-size {
    font-size: 8px;
    margin-top: 8px;
  }
  .product-price {
    font-size: 14px;
    margin-top: 8px;
  }
  .product-price sup {
    font-size: 10px;
  }
  .product-price small {
    font-size: 10px;
  }
  .product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
  .product-button {
    width: 100%;
    max-width: 240px;
    font-size: 14px;
    margin-top: 8px;
    padding: 12px 0;
    border: none;
    border-radius: 4px;
  }
  /* 削除確認画面 */
  .dialogBody#deleteDialog,
  .dialogBody#deleteAllDialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: #ffffff;
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: auto;
    padding: 18px;
    font-size: 12px;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
  }
  /* キャプチャ画面 */
  .dialogBody#cameraDialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    color: #ffffff;
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: auto;
    padding: 18px;
    font-size: 12px;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
  }
  /*カート入れる画面*/
  .dialogBody#cartPostDialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #ffffff;
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: auto;
    padding: 18px;
    font-size: 12px;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
  }
  /*色選択画面*/
  #colorButton {
    position: absolute;
    margin: auto;
    width: 240px;
    /*left: 50%;*/
    /*top: 200px;*/
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0;
    text-align:center;
    padding: 12px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
  }
  #colorButton:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-top: 16px solid rgba(0, 0, 0, 0.4);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
  /*カート画面*/
  .dialogBody#cartDialog {
    width: 100%;
    height: 100%;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    color: #ffffff;
    padding: 72px 18px 18px;
    background: rgba(0, 0, 0, 0.6);
  }
  .dialogBody#cartDialog #cartCancel {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #ffffff;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .dialogBody#cartDialog #cartCancel .fas.fa-times{
    font-weight: 300 !important;
    font-size: 28px !important;
  }
  .dialogBody#cartDialog .header {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    padding: 0 18px;
  }
  .dialogBody#cartDialog h3 {
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
  }
  .dialogBody#cartDialog .cart-list-wrap {
    height: 100%;
    overflow: auto;
  }
  .dialogBody#cartDialog table.cart-list {
    width: 100%;
    border-collapse: collapse;
  }
  .dialogBody#cartDialog .cell-image {
    position: relative;
    width: 45%;
    text-align: center;
    vertical-align: middle;
    padding: 12px 0;
  }
  .dialogBody#cartDialog .cell-text {
    width: 55%;
    text-align: left;
    vertical-align: middle;
    padding: 12px 0;
  }
  .dialogBody#cartDialog .item-image {
    width: 70%;
    max-width: 200px;
  }
  .dialogBody#cartDialog .item-quantity {
    position: absolute;
    top: 12px;
    right: 12px;
    box-sizing: content-box;
    width: 3em;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    padding: 1em 0;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .dialogBody#cartDialog .item-name {
    display: inline-block;
    font-size: 14px;
    margin-right: 1em;
  }
  .dialogBody#cartDialog .item-color {
    display: inline-block;
    font-size: 10px;
  }
  .dialogBody#cartDialog .item-size {
    display: block;
    font-size: 10px;
    margin-top: 8px;
  }
  .dialogBody#cartDialog .item-price {
    display: block;
    font-size: 14px;
    margin-top: 8px;
  }
  /* 部屋選択画面 */
  .room {}
  .room-wall {
    display: flex;
    align-items: center;
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    color: #000000;
  }
  .room-floor {
    display: flex;
    align-items: center;
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    color: #ffffff;
  }
  .room-wall .navi,
  .room-floor .navi {
    cursor: pointer;
    width: 20%;
    text-align: center;
  }
  .room-wall .label,
  .room-floor .label {
    width: 60%;
    font-size: 24px;
    text-align: center;
  }
  /**/
  .selected {
    display: none;
    position: absolute;
    margin: auto;
    width: 240px;
    /*left: 50%;*/
    /*top: 50px;*/
    -webkit-transform: translate(-75%, -50%);
    transform: translate(-75%, -50%);
    font-size: 0;
    text-align:center;
    padding: 12px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
  }
  .selected div {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
    display: inline-block;
    width: 32px;
    text-align: center;
    margin: 0 9px;
  }
  .selected div img {
    max-width: 100%;
    height: auto;
  }
  .selected label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
  }
  .selected:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-top: 16px solid rgba(0, 0, 0, 0.4);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
  .putit {
    display: none;
  }
  .rotate {
    display: none;
  }
  /*チュートリアル*/
  div#driver-popover-item {
    color: #fff;
  }
  div#driver-popover-item .driver-popover-tip {
    border: 7px solid #fff;
  }
  div#driver-popover-item .driver-popover-tip.bottom {
    bottom: -14px;
  }
  div#driver-popover-item .driver-popover-description {
    color: #fff;
  }
  div#driver-popover-item .driver-popover-footer {
    text-align: center;
  }
  div#driver-popover-item .driver-popover-footer button {
    cursor: pointer;
    outline: 0;
    color: #2d2d2d;
    font: 12px/normal sans-serif;
    line-height: 1;
    text-decoration: none;
    text-shadow: none;
    padding: 5px 1em;
    background-color: #fff;
    border-radius: 11px;
    border: none;
    zoom: 1;
  }
  div#driver-popover-item .driver-popover-footer .driver-close-btn{
    float: none;
  }
  div#driver-popover-item .driver-popover-footer .driver-btn-group,
  div#driver-popover-item .driver-popover-footer .driver-close-only-btn{
    float: none;
  }
  .driver-navigation-btns {
    display: inline-block;
  }
  /*タブレット・PC表示*/
  @media screen and (min-width: 960px) {

    .dialogBody#deleteDialog label,
    .dialogBody#deleteAllDialog label,
    .dialogBody#cameraDialog label,
    .dialogBody#cartPostDialog label {
      font-size: 14px;
    }
    /* 商品選択画面 */
    .dialogBody#productDialog {
      width: 45%;
      -webkit-transform: translate(10px, 10px);
      transform: translate(10px, 10px);
      border-radius: 8px 8px 0 0;
    }
    .product {
      display: block;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
    .product tbody {
      display: flex;
      flex-wrap: wrap;
    }
    .product tr {
      display: block;
      flex-basis: 50%;
      width: 50%;
      margin-bottom: 20px;
    }
    .product td {
      display: block;
    }
    .product td:nth-child(1) {
      width: auto;
      padding: 0 10px;
    }
    .product td:nth-child(2) {
      width: auto;
      padding: 0 10px;
    }
    .product-image {
      width: 80%;
      padding-top: 80%;
    }
    /*カート画面*/
    .dialogBody#cartDialog table.cart-list {
      display: block;
    }
    .dialogBody#cartDialog table.cart-list tbody {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
    }
    .dialogBody#cartDialog table.cart-list tr {
      display: flex;
      align-items: center;
      flex-basis: 50%;
      width: 50%;
      margin-right: inherit;
      margin-left: inherit;
      margin-bottom: 0;
    }
    .dialogBody#cartDialog .cell-image {
      width: 35%;
    }
    .dialogBody#cartDialog .cell-text {
      width: 65%;
    }

  }
