@charset "UTF-8";

/* ========================================
   こんな方におすすめです — recommend box
   Scope: #new_table + section.contents_box01
   ======================================== */

#new_table + section.contents_box01 .content_wrapper {
  background: #fff;
  border: 1px solid #EA8B8F;
  border-radius: 16px;
  padding: 36px 24px;
  max-width: 520px !important;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Title */
#new_table + section.contents_box01 .heading.block_header_1 {
  margin-bottom: 24px;
}

#new_table + section.contents_box01 .heading.block_header_1 .h {
  text-align: center;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

/* Pink underline under title */
#new_table + section.contents_box01 .heading.block_header_1 .h::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #EA8B8F;
  margin: 12px auto 0;
}

/* List area */
#new_table + section.contents_box01 .wrapper_item {
  padding-bottom: 0;
}

#new_table + section.contents_box01 .inner_item_txt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Reset global li styles */
#new_table + section.contents_box01 .inner_item_txt ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  position: relative;
  color: #333;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}

/* Check icon */
#new_table + section.contents_box01 .inner_item_txt ul li::before {
  content: "";
  display: block;
  position: static;
  left: auto;
  top: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9.5' stroke='%23EA8B8F' stroke-width='1.6'/%3E%3Cpath d='M7.5 12.2 L10.8 15.5 L16.8 8.8' stroke='%23EA8B8F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
}

/* Mobile */
@media screen and (max-width: 768px) {

  #new_table + section.contents_box01 {
    padding-left: 16px;
    padding-right: 16px;
    overflow: visible;
    box-sizing: border-box;
  }

  #new_table + section.contents_box01 .content_wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 28px 18px;
  }

  #new_table + section.contents_box01 .inner_item_txt ul li {
    max-width: 100%;
  }
}