html,
body {
  height: 100%;
  font-size: 18px;
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体',
    'YuGothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ',
    'Meiryo', 'verdana', sans-serif;

  background-color: #f5f5f7;
}
h2 {
  font-size: 26px;
  text-align: left;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  text-align: left;
  font-weight: bold;
}
h4 {
  font-size: 18px;
  text-align: left;
  font-weight: bold;
}
.center{
  text-align:center;
}
.buy_text01{
  font-size:15px;
  font-weight:100;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
  }
}
p {
  margin: 0;
  padding: 0;
}
.header {
  background-image: url(../images//bg_black01.jpg);
  background-size: cover;
  background-repeat: none;
  background-position: center center;
  padding: 10px 0;
}
.navbar {
  padding: 10px;
  position: relative;
}
.nav-block {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.logo {
  width: 100%;
  max-width: 900px;
}
.logo2 {
  position: absolute;
  right: 14px;
  top: 6px;
}
.logo2-img {
  width: 120px;
}
@media (max-width: 991.98px) {
  .logo2-img {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 100%;
    max-width: 400px;
  }
  .logo2 {
    position: absolute;
    right: 14px;
    top: 2px;
  }
  .logo2-img {
    width: 70px;
  }
}
.main-block {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 10px 0;
}
@media (max-width: 991.98px) {
  .main-block {
    padding: 16px 10px 0;
  }
}
.block-left {
  width: 100%;
  max-width: 980px;
  padding: 10px;
}
@media (max-width: 991.98px) {
  .block-left {
    width: 100%;
    max-width: 100%;
  }
}
.left_box {
  padding: 30px;
  background: #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
  border-radius: 10px;
  box-shadow: 2px 2px 4px #00000026;
  margin: 35px 0 15px;
}
@media (max-width: 991.98px) {
  .left_box {
    padding: 20px;
  }
}
.product-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-left {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.product-content {
  align-items: start;
}
.product-img {
  width: 100%;
  max-width: 100px;
}
.product-img img {
  width: 100%;
  min-width: 100px;
}
.product-price {
  text-align: right;
  font-size: 24px;
}
.product-text {
  font-size: 16px;
}
.product-title {
  font-size: 20px;
}
.product-right-price {
  font-size: 20px;
  font-weight: bold;
}
.card-img {
  width: 100%;
  max-width: 80px;
}
.card-img img {
  width: 100%;
}
.product-list-text {
  text-align: right;
}
@media (max-width: 768px) {
  .product-box {
    flex-direction: column;
    align-items: normal;
  }
  .product-right {
    text-align: right;
  }
  .product-text {
    font-size: 12px;
  }
  .product-title {
    font-size: 14px;
  }
  .product-price {
    font-size: 20px;
  }
  .product-list {
    padding: 0 14px;
  }
}
.block-right {
  width: 100%;
  max-width: 280px;
  font-size: 16px;
  padding: 20px;
  border: 5px solid #cccccc;
  background-color: #ffffff;
  position: sticky;
  top: 20px;
}
.block-right-sm {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 15px 0 50px;
}
.order-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.buy01 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
    background: #dbedf7;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    position: relative; /* ← 擬似要素を配置するために必須 */
    animation: move01 3s ease-in-out infinite; /* アニメーション名を move01 に変更 */
}

.buy01::after {
    content: "";
    position: absolute;
    bottom: -30px;  /* ボックスの下に配置 */
    left: 50%;
    transform: translateX(-50%);
    border-width: 30px 60px 0 60px;  /* 下向き三角形 */
    border-style: solid;
    border-color: #dbedf7 transparent transparent transparent; /* 背景色に合わせる */
}

@keyframes move01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 上に動く距離 */
  }
  100% {
    transform: translateY(0);
  }
}

.tokuten {
    color: #282828;
    background: #fff6a8;
    background: linear-gradient(180deg, rgba(255, 246, 168, 1) 0%, rgba(255, 229, 46, 1) 100%);
    padding: 5px 0px 5px 10px;
    border-radius: 3px;
}

.btn-inner {
  font-size: 16px;
  text-align: center;
}
.btn-cre {
  display: block;
  width: 100%;
  max-width: 600px;
  background: #06AC37;
  background: linear-gradient(180deg, rgba(6, 172, 55, 1) 0%, rgba(0, 153, 46, 1) 100%);
  margin: 10px auto;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  border: none;
  border-bottom: 4px solid #005f30;
  font-size: 18px;
  border-radius: 50px;
}
.link-cre {
  color: white;
  text-decoration: none;
}
.link-cre:hover .btn-cre {
  color: rgb(255, 235, 55);
}
.btn-gin {
  display: block;
  width: 100%;
  max-width: 600px;
  background: #C53D4F;
  background: linear-gradient(180deg, rgba(197, 61, 79, 1) 0%, rgba(150, 0, 20, 1) 100%);
  margin: 10px auto;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  border: none;
  border-bottom: 4px solid #7a181d;
  font-size: 18px;
  border-radius: 50px;
}
.link-gin {
  color: white;
  text-decoration: none;
}
.link-gin:hover .btn-gin {
  color: rgb(255, 235, 55);
}
.pc {
  display: block;
}
.sm {
  display: none;
}
@media (max-width: 991.98px) {
  .pc {
    display: none;
  }

  .sm {
    display: block;
  }
}

.footer-block {
  width: 100%;
  margin: 50px auto 0;
  background-color: #0a1417;
  padding: 40px 0 50px 0;
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem;
}
.footer-inner {
  width: 100%;
  max-width: 980px;
  padding: 10px;
  margin: 0 auto;
}
.footer-link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-link-wrap a {
  color: white;
  text-decoration: none;
}
.footer-link-wrap a:hover {
  text-decoration: underline;
}
.footer-link-wrap a:visited {
  color: white;
}
.footer-text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.footer-text-inner {
  padding: 5% 20px 0;
}
.copy {
  text-align: center;
}
@media (max-width: 768px) {
  .footer-link-wrap {
    flex-direction: column;
  }
}

.tx-01 {
  color: #cc0000;
}
.tx-bold {
  font-weight: bold;
}
