@charset "UTF-8";
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Meiryo, “Hiragino Kaku Gothic ProN”, “Hiragino Sans”, “Helvetica Neue”, Arial, sans-serif;
}

/* ヘッダー */
.header h1 {
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 3.47vw;
  font-weight: bold;
}

/* メインコンテンツ */
body {
  background-color: #e00422;
  position: relative;
}

.container {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -4px 14px rgba(0, 0, 0, 0.25);
}
.container h2 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .container {
    display: none;
  }
}
/* 製品リスト */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* 製品カード */
.product-card {
  background: white;
  width: 100%;
  padding: 15px;
  text-align: left;
  display: flex;
  gap: 10px;
  border: #C0C0C0 solid 1px;
  border-radius: 10px;
  position: relative;
}
.product-card img {
  width: 40%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .product-info {
  width: 60%;
}
.product-card .product-info .margin-s {
  margin: 7px 0;
}
.product-card .product-info h3 {
  font-size: 16px;
  font-weight: bold;
}
.product-card .product-info p {
  font-size: 12px;
  color: #000000;
}
.product-card .product-info p.maker {
  font-size: 18px;
}
.product-card .product-info h3.model {
  font-size: 12px;
  font-weight: normal;
}
.product-card .product-info p.support {
  font-size: 12px;
  border: 1px solid black;
  padding: 3px 4px 1px;
  display: inline-block;
  border-radius: 4px;
  line-height: 1.2;
}
.product-card .product-info p.price {
  font-size: 18px;
  font-weight: bold;
}

.product-card.recommend::before {
  width: 70px;
  height: 70px;
  content: "";
  background-image: url(../img/recommend.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  top: -5px;
  left: -5px;
}

/* ARボタン */
.ar-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  margin-top: 10px;
  background-color: #e00422;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

/* フッター */
.cmnFooter {
  background: #4d4d4d;
  color: white;
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  /* フッター内部 */
  /* リンクリスト */
  /* 著作権表記 */
  /* ドコモロゴ */
}
.cmnFooter .cmnFooter_inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 15px;
}
.cmnFooter .cmnFooter_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.cmnFooter .cmnFooter_link li {
  display: inline-block;
}
.cmnFooter .cmnFooter_link a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  padding: 5px;
  transition: opacity 0.3s;
}
.cmnFooter .cmnFooter_link a:hover {
  opacity: 0.7;
}
.cmnFooter .cmnFooter_copyright {
  font-size: 10px;
  margin: 10px 0 20px 0;
}
.cmnFooter .footer-ci {
  background-color: #ffffff;
  padding: 30px 0;
}
.cmnFooter .footer-ci img {
  width: 120px;
  height: auto;
}

#pc-message {
  background-color: white;
  color: black;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

/* 案内テキスト */
.guide-box {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 10px;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.guide-box h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
}
.guide-box h3:nth-of-type(1) {
  margin-top: 0;
}
.guide-box li {
  list-style-position: inside;
  text-indent: -1.3em;
  padding-left: 1.4em;
  margin-bottom: 8px;
  font-size: 14px;
}

/* タブ */
.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  width: 100%;
}

.tab-button {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  font-weight: bold;
  background: #f5f5f5;
  border: none;
  border-bottom: 2px solid transparent;
  color: black;
}

.tab-button.active {
  border-bottom: 2px solid #e00422;
  background: white;
  color: #e00422;
}

.tab-content {
  display: none;
  background: #fff;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .tab-button {
    font-size: 14px;
  }
  .tab-content {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */