@charset "UTF-8";

img {
  max-width: 100%;
}
li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.site-title {
  width: 109px;
  line-height: 1px;
  margin: 0 auto 36px auto;
}
.site-title a {
  display: block;
}
.wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/*-------------------------------------------
商品ページ
-------------------------------------------*/
#item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
/*
flex-shrink: 0;
画像が縮小されるのを防ぐ
*/
#item .item-image {
  max-width: 300px;
  flex-shrink: 0;
  margin-right: 30px;
}
#item .item-info p {
  font-size: 20px;
  width: 430px;
}
#item .item-info .item-price {
  margin-bottom: 15px;
	font-size: 28px;
	font-weight: bold;
  color: red;
}
/*
「display: flex;」と「align-items: center;」で、
高さを中央にそろえる
*/
#item .item-info .item-title {
  height: 80px;
  display: flex;
  align-items: center;
  border-top: solid 1px #c3c3c3;
  border-bottom: solid 1px #c3c3c3;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.with-line {
  border-left: 2px solid #c3c3c3; /* 線太さ2px、色を青に設定 */
  padding-left: 10px; /* 線とテキストの間隔を調整 */
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 896px) {

  .site-title {
    margin-bottom: 26px;
  }

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header {
    margin-bottom: 0;
    border-bottom: none;
    padding: 36px 16px 16px 16px;
  }
  /*
  横スクロールできるようにする
  */
  nav {
    overflow-x: scroll;
  }

  /*-------------------------------------------
  商品ページ
  -------------------------------------------*/
  #item {
    flex-direction: column;
  }
  #item .item-image {
    max-width: 100%;
    margin: 0 0 10px 0;
  }
  #item .item-info {
    padding: 0 16px;
  }
}

/*-------------------------------------------
特典
-------------------------------------------*/

.bonus-container {
  display: flex;
  gap: 24px; /* 特典同士の間隔 */
  margin: 20px auto;
}
.bonus-item01 {
  background: #fff;
  border-radius: 8px;
  padding: 16px 16px;
  flex: 1;
  min-width: 240px;
  border: solid 5px #EE0000;/*線*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.bonus-item02 {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 16px;
  flex: 1;
  min-width: 240px;
  border: solid 5px #EE0000;/*線*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.bonus-title01 {
  font-size: 1.1em;
  font-weight: bold;
  color: #00004C;
  margin-bottom: 10px;
  font-size: 20px;
}
.bonus-title02 {
  font-size: 1.1em;
  font-weight: bold;
  color: #00004C;
  margin-bottom: 10px;
  font-size: 20px;
}
.bonus-desc01 {
  font-size: 1em;
  color: #00004C;
  line-height: 1.6;
  font-size: 20px;
}
.bonus-desc02 {
  font-size: 1em;
  color: #00004C;
  line-height: 1.6;
  font-size: 20px;
}
.bonus-note {
  font-size: 0.93em;
  color: #00004C;
  font-size: 14px;
}

.wallpaper-highlight {
  font-size: 1.4em;
  font-weight: bold;
}
.wallpaper-highlight02 {
  color: #EE0000;
}
