@charset "UTF-8";

#film_sec_title + section .content_wrapper .heading > p{
  background-color: #f39a35;
  color: #fff;
  padding: 8px 15px;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
}
/* Desktop: 2 equal columns using grid */
#list_types_difficulity + div .wrapper_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

#list_types_difficulity + div .inner_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}

#list_types_difficulity + div .inner_item_img {
  width: 100%;
  box-sizing: border-box;
  padding-right: 15px;
  flex-shrink: 0;
}

#list_types_difficulity + div .inner_item_img img {
  width: 100%;
  height: auto;
  display: block;
}

#list_types_difficulity + div .inner_item_txt {
  width: 100%;
  box-sizing: border-box;
  padding-left: 15px;
}

/* SP mode: 1 column grid, image top / text bottom, centered */
@media screen and (max-width: 768px) {
  #list_types_difficulity + div .wrapper_item {
    grid-template-columns: 1fr;
  }

  #list_types_difficulity + div .inner_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #list_types_difficulity + div .inner_item_img,
  #list_types_difficulity + div .inner_item_txt {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  #list_types_difficulity + div .inner_item_img {
    margin-bottom: 15px;
  }
#list_types_difficulity + div .inner_item .heading.block_header_4 .h {
 text-align:center;
}

#list_types_difficulity + div .inner_item .inner_item_txt > p {
 text-align:left;
}

}



/* hide the empty header row */
#repair_table + div table thead {
  display: none;
}

/* left column styling */
#repair_table + div table td:first-child {
  background-color: #fff0df;
  text-align: left;
  padding: 0;
}

#repair_table + div table td:first-child div {
  background-color: #fff0df;
  text-align: left;
  padding: 10px 15px;
  box-sizing: border-box;
}

/* right column styling */
#repair_table + div table td:last-child {
  background-color: #fff;
  text-align: right;
  padding: 0;
}

#repair_table + div table td:last-child div {
  background-color: #fff;
  text-align: right;
  padding: 10px 15px;
  box-sizing: border-box;
}

/* equal 50/50 columns */
#repair_table + div table {
  width: 100%;
  table-layout: fixed;
}

#repair_table + div table td {
  width: 50%;
}

/* SP mode: scrollable, keep 50/50 */
@media screen and (max-width: 768px) {
  #repair_table + div .outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #repair_table + div table {
    min-width: 400px; /* adjust if content still feels cramped */
    table-layout: fixed;
  }

  #repair_table + div table td {
    width: 50%;
  }
}


/*コメントアウト 260812*/
/*.width_fixed>.content_wrapper {
max-width: 100% !important
}*/