
/* body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, "Helvetica Neue", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  line-height: 24px;
  color: #FFFFFF;
  background-color: #000000;
} */
.footer {
  position: absolute;
  z-index: 1000;
  font-size: 85%;
  bottom: 0px;
  width: 100%;
  padding: 5px 10px 2px;
  box-sizing: border-box;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
color: #333;
}

@media all and ( max-width: 640px ) {
}

body {
    margin: 0;
    padding: 0;
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 10000;
    width: 400px;
    height: 400px;
    visibility: hidden;
  }
  
  .icon-base {
    
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-radius: 50%;
    opacity: 0.9;
    /* transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s, opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s; */
    /* background-color: #8b8b8b; */
    /* transform: translate(50%, 50%); */
  }

  .icon_circle {
    width: 400px;
    height: 400px;
    z-index: 1;
    border-radius: 50%;
    /* transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s, opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s; */
    background-color: rgba(135,135,135,0.5);
    transform: translate(-50%, 50%);
    visibility: hidden;

  }
  
  .icon_outline {
    position: relative;
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: 50px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 100001;
    /* transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1); */
    /* transform: translate(50%, 50%); */
    /* visibility: hidden; */
  }
  
  .icon {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 100001;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(450%, 150%);
    visibility: visible;
    text-align: center;
    display: block;
    visibility: hidden;
    opacity: 0.5;
  }

  svg {
    margin-top: 7.5px;
  }

  .text_capture {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    margin: 10px;
    z-index: 100001;
    border: 2px solid #fff;
    cursor: pointer;
    transform: translate(285%, 200%);
    visibility: hidden;
    opacity: 0.8;
  }

  .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    z-index: 100000;
    background-color: #fff;
  }
  
  .popup {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
  }

  #logoanim {
    position: absolute;
    z-index: 1;
    
  }
  
  img {
    max-width: 100%;
    height: auto;
    animation: blink 1s infinite alternate;
  }
  
  @keyframes blink {
    from {
      opacity: 0.7;
    }
    to {
      opacity: 0.5;
    }
  }