@charset "UTF-8";
/* ============================================================
  tile
============================================================ */
#check .sub-title {
  padding-bottom: 72px;
}
/* ============================================================
  card
============================================================ */
#check .check-inner {
  background-color: var(--color-accent-light);
  padding-top: 120px;
  padding-bottom: 120px;
}

#check .card {
  background-color: var(--color-white);
  border-radius: 60px;
  margin-bottom: 80px;
  padding: 80px;
}
#check .card:last-child {
  margin-bottom: 0;
}

#check .card-head {
  display: flex;
  gap: 48px;
  align-items: center;
}

#check .card-box__image {
  width: 144px;
  height: 112px;
}

#check .card-box__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#check .card-box__title {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  border-bottom: 15px solid var(--color-primary-light);
  padding-bottom: 24px;
}

#check .card-box__title h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 49px;
  letter-spacing: 5.12px;
}

#check .card-box__title .price {
  font-family: var(--font-inter);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 5px;
}

#check .card-box__title .price span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.2px;
  font-family: var(--font-noto);
}

#check .card-body {
  display: flex;
  gap: 48px;
}

#check .card-body__list {
  flex: 1;
}

#check .card-body__list ul {
  padding-top: 48px;
}

#check .card-body__list ul li {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  border-bottom: 1px solid var(--color-gray-dark);
}
#check .card-body__list ul li:first-child {
  padding-top: 0;
}

#check .card-body__list ul li:last-child {
  border-bottom: none;
}

/* オプション */
#check table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

#check table td {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

#check table td.text {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 20px;
}
#check table td.text:after {
  content: "";
  border-top: 1px dotted #aaa;
  width: 100%;
  margin-left: 1em;
}

#check table td.price {
  text-align: right;
  width: 200px;
}

#check table .marker .text {
  margin-left: 1em;
  padding-bottom: 0;
}
#check table .marker .text:after {
  content: "";
  border-top: none;
}

#check table .marker.marker-bottom td {
  padding-bottom: 26px;
}

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  #check .card {
    padding: 40px;
  }
  #check .card-head {
    gap: 24px;
  }
  #check .card-box__image {
    width: 100px;
    height: 80px;
  }

  #check .card-box__title {
    padding-bottom: 16px;
    border-bottom: 10px solid var(--color-primary-light);
  }
  #check .card-box__title h3 {
    font-size: 24px;
    line-height: 36px;
  }
  #check .card-box__title .price {
    font-size: 32px;
    line-height: 36px;
  }
  #check .card-box__title .price span {
    font-size: 16px;
    line-height: 16px;
  }
  #check .card-body__list ul li {
    font-size: 16px;
    line-height: 32px;
  }
  #check table td {
    font-size: 16px;
  }
  #check table td.text {
    font-size: 16px;
    line-height: 32px;
  }

  #check table td.price {
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  #check .check-inner {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  #check .card {
    padding: 24px 40px 48px 40px;
    margin-bottom: 60px;
  }
  #check .card-head {
    flex-direction: column;
    gap: 16px;
  }
  #check .card-box__image {
    width: 71.653px;
    height: 55.83px;
  }
  #check .card-box__title {
    width: 100%;
  }
  #check .card-box__title h3,
  #check .card-box__title .price {
    font-size: 21px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: 3.78px;
  }
  #check .card-box__title .price {
    line-height: 1.5;
  }
  #check .card-box__title .price span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
    text-align: right;
  }
  #check .card-box__title .price .tax {
    display: block;
    margin-right: -0.5em;
  }
  #check .card.option .card-box__title {
    justify-content: center;
  }
  #check table {
    padding-top: 32px;
  }
  #check table tr {
    display: block;
  }
  #check table td.text {
    padding-bottom: 8px;
  }

  #check table td.text:after {
    display: none;
  }
  #check table td.price {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    padding-bottom: 16px;
  }
  #check table td.price:before {
    content: "";
    border-top: 1px dotted #aaa;
    width: 100%;
    margin-right: 1em;
  }
  #check table .marker .text {
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  #check .card-box__title h3 {
    line-height: 1.5;
  }
  #check .card-box__title h3 small {
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
  }
  #check .card-body {
    flex-direction: column;
    gap: 0;
  }
  #check .card-body__list:nth-child(2) ul {
    padding-top: 16px;
  }
  #check .card-body__list:first-child ul li {
    border-bottom: 1px solid var(--color-gray-dark);
  }
  #check .card-body__list ul {
    padding-top: 24px;
  }
  #check .card-body__list ul li {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  #check table tr {
    padding-bottom: 15px;
  }
  #check table tr.marker-title,
  #check table tr .marker-bottom{
    padding-bottom: 0;
  }
  #check table td.text,
  #check table td.price {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
    white-space:normal;
  }
  #check table td.price {
    white-space: nowrap;
  }
}
