@charset "UTF-8";
/*** THEME ***/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
@font-face {
  font-family: "FuturaHeavyBT"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("/common/css/fonts/FuturaHeavyBT.ttf");
}
html {
  overflow-y: auto;
}

body {
  background: #f1f1f1;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

main {
  min-height: 100vh;
  position: relative;
}
@media only screen and (max-width: 736px) {
  main #viewer {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  main #viewer canvas {
    width: 100%;
    height: 100%;
  }
  main #viewer .ar_btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 250px;
    background: #82c8c8;
    border-radius: 0.7142857143rem;
  }
  main #viewer .ar_btn a {
    color: #fff;
    font-size: 1.1428571429rem;
    padding: 0.7142857143rem 0.3571428571rem;
    display: block;
    text-align: center;
    text-decoration: none;
  }
}

*:focus {
  outline: none;
}

.cent_posi {
  width: 100%;
  padding: 1.4285714286rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cent_posi .txt {
  text-align: center;
  width: 100%;
  font-size: 1.1428571429rem;
  margin-bottom: 2.1428571429rem;
}
.cent_posi .QR {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.cent_posi .QR canvas {
  width: 25rem;
  height: auto;
}
@media only screen and (max-width: 736px) {
  .cent_posi .QR canvas {
    width: 100%;
    max-width: 200px;
  }
}

.info_area {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  margin-top: 2.1428571429rem;
  border-radius: 0.7142857143rem;
  padding: 0.3571428571rem;
}
@media only screen and (max-width: 736px) {
  .info_area {
    flex-direction: column;
  }
}
.info_area div {
  width: 48%;
  font-size: 0.9285714286rem;
}
@media only screen and (max-width: 736px) {
  .info_area div {
    width: 100%;
  }
}
.info_area div p {
  margin-bottom: 0.7142857143rem;
}
.info_area div ol li,
.info_area div ul li {
  margin-left: 2.8571428571rem;
  margin-bottom: 0.7142857143rem;
}

model-viewer {
  width: 100%;
  height: 100%;
  outline: none;
}
model-viewer:focus {
  outline: none;
}

#dlBtn {
  width: 21.4285714286rem;
  padding: 1.0714285714rem 0.3571428571rem;
  background: #069292;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 0.7142857143rem;
  margin: 2.8571428571rem auto 0;
  transition: 0.3s;
}
#dlBtn:hover {
  background: #057575;
  cursor: pointer;
}

.logo_posi {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: right;
  height: auto;
}
.logo_posi img {
  width: 16.4285714286rem;
  height: auto;
  vertical-align: middle;
}

#logo_pow {
  position: absolute;
  bottom: 2.1428571429rem;
  right: 3.5714285714rem;
  width: 16.4285714286rem;
  height: auto;
}
@media only screen and (max-width: 736px) {
  #logo_pow {
    bottom: auto;
    top: 7.1428571429rem;
    right: 0.7142857143rem;
    width: 12.8571428571rem;
  }
}

#screenshot {
  width: 100%;
  height: 100%;
}
#screenshot p {
  position: absolute;
  top: 4.2857142857rem;
  left: 1.0714285714rem;
  width: 22.8571428571rem;
  height: 4.2857142857rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #555;
  border-radius: 1.0714285714rem;
  font-size: 1.1428571429rem;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 736px) {
  #screenshot p {
    top: 1.4285714286rem;
    width: 40%;
    font-size: 1.1428571429rem;
    height: 2.8571428571rem;
  }
}

#arBtn {
  width: 100%;
  height: 100%;
}
#arBtn p {
  position: absolute;
  bottom: 5.7142857143rem;
  right: 3.5714285714rem;
  width: 14.2857142857rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #057575;
  color: #fff;
  border-radius: 1.0714285714rem;
  font-size: 1.2857142857rem;
  cursor: pointer;
}
@media only screen and (max-width: 736px) {
  #arBtn p {
    top: 1.4285714286rem;
    bottom: auto;
    right: 1.0714285714rem;
    width: 40%;
    font-size: 1.1428571429rem;
    height: 2.8571428571rem;
  }
}