@charset "utf-8";

/* ======================================================
 * parts_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Element >>> Heading
 * - Element >>> Text
 * - Element >>> List
 * - Element >>> Form
 * - Layout >>> Table
 * - Layout >>> Other
====================================================== */

@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Element >>> Heading
  ------------------------------------------------------ */
  /* ----- heading-lv1 ----- */
  .heading-lv1 .heading_image img {
    width: 100%;
  }

  /* ----- heading-lv2 ----- */
  .heading-lv2 {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
  }
  .flow-layout + section > .heading-lv2:first-child {
    margin-top: 25px;
  }
  .heading-lv2 .heading_title {
    position: relative;
    font-size: 2.6rem;
    line-height: 1.1;
    padding: 0 0 10px;
  }
  .heading-lv2 .heading_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e71718;
  }
  .heading-lv2[class*=" type-icon"] .heading_block {
    position: relative;
  }
  .heading-lv2[class*=" type-icon"] .heading_block::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 100% auto;
  }
  .heading-lv2.type-icon1 .heading_block {
    padding-left: 66px;
  }
  .heading-lv2.type-icon1 .heading_block::before {
    width: 57px;
    height: 38px;
    background-image: url("../img/guidebook/h2_ic01.png");
  }
  .heading-lv2.type-icon2 .heading_block {
    padding-left: 54px;
  }
  .heading-lv2.type-icon2 .heading_block::before {
    width: 45px;
    height: 44px;
    background-image: url("../img/guidebook/h2_ic02.png");
  }
  .heading-lv2.type-icon3 .heading_block {
    padding-left: 57px;
  }
  .heading-lv2.type-icon3 .heading_block::before {
    width: 46px;
    height: 44px;
    margin-top: -6px;
    background-image: url("../img/guidebook/h2_ic03.png");
  }
  .heading-lv2.type-icon3 .heading_title .lts {
    letter-spacing: -0.3em;
  }

  /* ------------------------------------------------------
   * Element >>> Text
  ------------------------------------------------------ */
  /* ----- text-paragraph ----- */
  .text-paragraph {
    margin-top: 1em;
  }

  /* ------------------------------------------------------
   * Element >>> List
  ------------------------------------------------------ */
  /* ----- list-note ----- */
  .list-note {
    margin: 0.4em 0 0;
  }
  .list-note > li {
    position: relative;
    padding: 0 0 0 1em;
    font-size: 1.2rem;
  }
  .list-note > li .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }

  /* ----- list-order ----- */
  .list-order > li {
    position: relative;
    padding-left: 2.5em;
  }
  .list-order > li:nth-child(n+10) {
    padding-left: 3em;
  }
  .list-order > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  /* v2 */
  .list-order-v2 > li {
    position: relative;
    padding-left: 1.5em;
  }
  .list-order-v2 > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }

  /* ------------------------------------------------------
   * Element >>> Form
  ------------------------------------------------------ */
  [class*="form-textfield-item"],
  [class*="form-select-item"] select {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
  }
  [class*="form-textfield-item"],
  [class*="form-select-item"] select {
    width: 100%;
  }

  /* ----- form-textfield-item ----- */
  .form-textfield-item {
    height: 40px;
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    line-height: 40px;
    transition: all .2s ease-out 0s;
  }
  .form-textfield-item::-webkit-input-placeholder {
    color: #888;
  }
  .form-textfield-item::placeholder {
    color: #888;
  }

  /* ----- form-select-item ----- */
  .form-select-item {
    position: relative;
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.1);
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    transition: all .2s ease-out 0s;
  }
  .form-select-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: rotate(135deg);
    width: 8px;
    height: 8px;
    margin: -6px 1px 0 0;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    pointer-events: none;
  }
  .form-select-item select {
    height: 45px;
    padding: 0 40px 0 15px;
    line-height: 45px;
    transition: all .2s ease-out 0s;
  }

  /* ----- form-checkbox-item ----- */
  .table-layout .form-checkbox-item {
    margin: -15px !important;
  }
  .form-checkbox-item {
    background-color: #fff;
    transition: all .2s ease-out 0s;
  }
  .form-checkbox-item .checkbox_list > li + li {
    border-top: 1px solid #d8d8d8;
  }
  .form-checkbox-item .checkbox_list .checkbox_label {
    position: relative;
    display: block;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .checkbox_input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_wrap {
    display: block;
    padding: 10px 15px 10px 60px;
    background-color: transparent;
    transition: all .2s ease-out 0s;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_wrap::before,
  .form-checkbox-item .checkbox_list .checkbox_label .label_wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_wrap::before {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_wrap::after {
    background-image: url("../img/guidebook/checkbox_ic01.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    transition: all .2s ease-out 0s;
    opacity: 0;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .checkbox_input:checked ~ .label_wrap {
    background-color: #e71718;
    color: #fff;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .checkbox_input:checked ~ .label_wrap::after {
    opacity: 1;
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_outer {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: calc((16px * 1.75) + (12px * 1.75));
  }
  .form-checkbox-item .checkbox_list .checkbox_label .label_outer .label_inner {
    width: 100%;
    font-weight: 700;
  }
  .form-checkbox-item .checkbox_title {
    font-size: 1.6rem;
  }
  .form-checkbox-item .checkbox_note {
    display: block;
    margin: -0.2em 0 0;
    padding: 0 0 0 1em;
    font-size: 1.2rem;
    text-indent: -1em;
  }

  /* ----- form-radio-item ----- */
  .form-radio-item {
    display: flex;
    flex-wrap: wrap;
  }
  .form-radio-item > li {
    display: flex;
    margin: 10px 0 0 10px;
  }
  .form-radio-item.type-sp-col2 > li {
    width: calc((100% - 10px) / 2);
  }
  .form-radio-item.type-sp-col3 > li {
    width: calc((100% - 10px * 2) / 3);
  }
  .form-radio-item.type-sp-col2 > li:nth-child(-n+2),
  .form-radio-item.type-sp-col3 > li:nth-child(-n+3) {
    margin-top: 0;
  }
  .form-radio-item.type-sp-col2 > li:nth-child(2n+1),
  .form-radio-item.type-sp-col3 > li:nth-child(3n+1) {
    margin-left: 0;
  }
  .form-radio-item > li > .radio_label {
    position: relative;
    display: flex;
    width: 100%;
  }
  .form-radio-item > li > .radio_label > .radio_input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .form-radio-item > li > .radio_label > .label_inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 10px 10px 30px;
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    transition: all .2s ease-out 0s;
  }
  .form-radio-item > li > .radio_label > .label_inner::before,
  .form-radio-item > li > .radio_label > .label_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .form-radio-item > li > .radio_label > .label_inner::before {
    left: 8px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
  }
  .form-radio-item > li > .radio_label > .label_inner::after {
    left: 12px;
    width: 8px;
    height: 8px;
    background-color: #898989;
    border-radius: 50%;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .form-radio-item > li > .radio_label > .radio_input:checked + .label_inner {
    background-color: #e71718;
    color: #fff;
  }
  .form-radio-item > li > .radio_label > .radio_input:checked + .label_inner::after {
    opacity: 1;
  }
  .form-radio-item > li > .radio_label .radio_text {
    line-height: 1.3;
  }

  /* ----- form-layout ----- */
  .form-layout .form_list {
    line-height: 1.1;
  }
  .form-layout .form_list + .form_list {
    margin: 1em 0 0;
  }
  .form-layout .form_list > dt {
    font-size: 1.6rem;
  }
  .form-layout .form_list > dd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5em 0 0;
  }
  .form-layout .form_list > dd > * {
    width: calc((100% - 15px) / 2);
  }
  .form-layout .form_unit {
    display: flex;
    align-items: center;
  }
  .form-layout .form_unit > .form_text {
    width: 2em;
    text-align: right;
  }
  .form-layout .form_unit > .form_input {
    flex: 1;
    margin: 0 0 0 10px;
  }
  .form-layout + .list-note {
    margin-left: 1em;
  }

  /* v2 */
  .form-layout-v2 .form_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .form-layout-v2 .form_list > li {
    display: flex;
    align-items: center;
    width: calc((100% - 10px * 2) / 3);
  }
  .form-layout-v2 .form_list > li > .form-select-item {
    flex: 1;
  }
  .form-layout-v2 .form_list > li > .list_text {
    margin: 0 0 0 5px;
  }
  .form-layout-v2 .form_list > li > .form-select-item select {
    padding-left: 8px;
    padding-right: 30px;
  }

  /* v3 */
  .form-layout-v3 .form_list + .form_list {
    margin-top: 1.3em;
  }
  .form-layout-v3 .form_list > dt {
    display: flex;
    align-items: baseline;
    font-size: 1.6rem;
    line-height: 1.1;
  }
  .form-layout-v3 .form_list > dt > * {
    margin-top: 0 !important;
  }
  .form-layout-v3 .form_list > dt > .list-note {
    margin-left: 0.5em;
  }
  .form-layout-v3 .form_list > dd {
    margin: 0.5em 0 0;
  }

  /* v4 */
  .form-layout-v4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .form-layout-v4 > li {
    position: relative;
    width: calc((100% - 21px * 2) / 3);
  }
  .form-layout-v4 > li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background-color: #888;
  }

  /* v5 */
  .form-layout-v5 {
    margin: 2.9em 0 0;
  }
  .form-layout-v5 .form_heading {
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: center;
  }
  .form-layout-v5 .form_heading_2 {
    margin: 1.1em 0 0;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }
  .form-layout-v5 .form_heading_2 .heading_title {
    position: relative;
    display: inline-block;
    padding: 0 0 0 50px;
    font-size: 1.6rem;
  }
  .form-layout-v5 .form_heading_2 .heading_title::before {
    content: "必須";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 20px;
    background-color: #e71718;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
  }
  .form-layout-v5 .form_heading_2 .heading_shoulder {
    display: block;
    margin: 0.6em 0 0;
    font-size: 1.2rem;
  }
  .form-layout-v5 .form_heading_3 {
    margin: 2.1em 0 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .form-layout-v5 .form_scroll {
    margin: 1em 0 0;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
  }
  .form-layout-v5 .form_scroll .scroll_outer {
    overflow-y: scroll;
    height: 197px;
  }
  .form-layout-v5 .form_scroll .scroll_outer::-webkit-scrollbar {
    width: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
  }
  .form-layout-v5 .form_scroll .scroll_outer::-webkit-scrollbar-thumb {
    background-color: #777;
    background-clip: content-box;
    border: 3px solid transparent;
    border-radius: 6px;
  }
  .form-layout-v5 .form_scroll .scroll_inner {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
  .form-layout-v5 .form_checkbox {
    margin: 1em -15px 0;
  }
  .form-layout-v5 .form_checkbox .checkbox_label {
    position: relative;
    display: block;
  }
  .form-layout-v5 .form_checkbox .checkbox_input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .form-layout-v5 .form_checkbox .checkbox_text {
    display: block;
    padding: 20px 15px;
    background-color: #fff;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    transition: all .2s ease-out 0s;
  }
  .form-layout-v5 .form_checkbox .checkbox_text > span {
    position: relative;
    display: inline-block;
    padding: 0 0 0 45px;
  }
  .form-layout-v5 .form_checkbox .checkbox_text > span::before,
  .form-layout-v5 .form_checkbox .checkbox_text > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
  }
  .form-layout-v5 .form_checkbox .checkbox_text > span::before {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
  }
  .form-layout-v5 .form_checkbox .checkbox_text > span::after {
    background-image: url("../img/guidebook/checkbox_ic01.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    transition: all .2s ease-out 0s;
    opacity: 0;
  }
  .form-layout-v5 .form_checkbox  .checkbox_input:checked + .checkbox_text {
    background-color: #e71718;
    color: #fff;
  }
  .form-layout-v5 .form_checkbox  .checkbox_input:checked + .checkbox_text > span::after {
    opacity: 1;
  }
  .form-layout-v5 .form_button {
    margin: 2.1em 0 0;
    padding: 0 13px;
  }
  .form-layout-v5 .form_button > li + li {
    margin-top: 1em;
  }
  .form-layout-v5 .form_button > li > [class*="button_"] {
    position: relative;
    width: 100%;
    height: 0;
    padding: 21.9% 0 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
  }
  .form-layout-v5 .form_button > li input[type="submit"] {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    text-indent: -9999em;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form-layout-v5 .form_button > li > .button_disable {
    background-image: url("../img/guidebook/button_bt02_sp.png");
  }
  .form-layout-v5 .form_button > li > .button_enable {
    background-image: url("../img/guidebook/button_bt01_sp.png");
  }

  /* ----- error ----- */
  .form-textfield-item.is-error,
  .form-select-item.is-error,
  .form-checkbox-item.is-error,
  .form-radio-item.is-error > li > .radio_label > .label_inner,
  .form-layout-v5 .form_checkbox.is-error .checkbox_text {
    background-color: #ffefef;
  }
  .form-select-item.is-error select {
    color: #888;
  }
  .form-select-item.is-error select option {
    color: #000;
  }

  /* ------------------------------------------------------
   * Layout >>> Table
  ------------------------------------------------------ */
  /* ----- table-layout ----- */
  .table-layout {
    margin: 1.4em -15px 0;
  }
  .table-layout table,
  .table-layout table tbody,
  .table-layout table tr,
  .table-layout table th,
  .table-layout table td {
    display: block;
  }
  .table-layout table {
    border-top: 1px solid #d8d8d8;
    border-bottom: 2px solid #d8d8d8;
  }
  .table-layout table > tbody > tr > * {
    border-top: 1px solid #d8d8d8;
    text-align: left;
  }
  .table-layout table > tbody > tr > * > *:first-child {
    margin-top: 0;
  }
  .table-layout table > tbody > tr > th {
    padding: 20px 15px;
    background-color: #f7f7f7;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .table-layout table > tbody > tr > td {
    padding: 15px;
    background-color: #fff;
  }
  .table-layout .table_th {
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0 0 0 48px;
  }
  .table-layout .table_th::before {
    position: absolute;
    top: 0.4em;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 20px;
    font-size: 1.3rem;
    line-height: 1.1;
    text-align: center;
  }
  .table-layout .table_th.type-required::before {
    content: "必須";
    background-color: #e71718;
    color: #fff;
  }
  .table-layout .table_th.type-optional::before {
    content: "任意";
    background-color: #aaa;
    color: #fff;
  }
  .table-layout .table_th > * + * {
    margin-left: 0.5em;
  }
  .table-layout .table_th .th_title .title_small {
    font-size: 1.2rem;
  }
  .table-layout .table_th .list-note > li {
    font-weight: 400;
  }

  /* ------------------------------------------------------
   * Layout >>> Other
  ------------------------------------------------------ */
  /* ----- flow-layout ----- */
  .flow-layout .flow_list {
    display: flex;
    margin: 0 -15px;
    padding-right: 6%;
  }
  .flow-layout .flow_list + .flow_list {
    margin-top: 10px;
  }
  .flow-layout .flow_list > li {
    position: relative;
    width: 33.33%;
  }
  .flow-layout .flow_list > li:nth-child(1) {
    z-index: 3;
  }
  .flow-layout .flow_list > li:nth-child(2) {
    z-index: 2;
  }
  .flow-layout .flow_list > li:nth-child(3) {
    z-index: 1;
  }
  .flow-layout .flow_list > li.is-active {
    z-index: 4;
  }
  .flow-layout .flow_list > li > span {
    display: block;
    margin-right: -15%;
  }
  .flow-layout .flow_list > li img {
    width: 100%;
  }
  .flow-layout .flow_text {
    margin: 1.4em 0 0;
  }

  /* ----- toggle-layout ----- */
  .toggle-layout .toggle_trigger {
    position: relative;
    padding: 15px 50px 15px 15px;
    background-color: #fafafa;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    line-height: 1.4;
  }
  .toggle-layout .toggle_trigger::before,
  .toggle-layout .toggle_trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 13px;
    height: 1px;
    background-color: #777;
  }
  .toggle-layout .toggle_trigger::before {
  }
  .toggle-layout .toggle_trigger::after {
    transform: rotate(90deg);
    transition: all .2s ease-out 0s;
  }
  .toggle-layout.is-active .toggle_trigger::after {
    opacity: 0;
  }
  .toggle-layout .toggle_panel {
    padding: 10px 0 0;
  }
  .toggle-layout .toggle_text {
    font-weight: 700;
  }

  /* v2 */
  .toggle-layout-v2 {
    margin: 1em 0 0;
  }
  .toggle-layout-v2 .toggle_trigger {
    position: relative;
    padding: 15px 45px 15px 15px;
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.1);
    background-color: #f7f7f7;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .toggle-layout-v2 .toggle_trigger::before,
  .toggle-layout-v2 .toggle_trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
  }
  .toggle-layout-v2 .toggle_trigger::before {
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #888;
    border-radius: 50%;
  }
  .toggle-layout-v2 .toggle_trigger::after {
    width: 6px;
    height: 6px;
    margin: -6px 8px 0 0;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    transform: rotate(135deg) translateY(-50%);
  }
  .toggle-layout-v2 .toggle_panel {
    padding: 15px 0 0;
  }

  .mod-form_error {
    margin-top: 7px;
    color: #f20000;
    font-weight: bold;
  }
  .mod-form_error:first-child {
    margin-top: 0;
  }

  /* */
.page-title {
  margin: 10px 10px 15px;
  padding-top: 1px;
  background: url(../img/parts/page-title_bg02.png) repeat-y 0 0;
  background-size: 5px auto;
}

.page-title h1 {
  padding-left: 10px;
  background: url(../img/parts/page-title_bg01.png) no-repeat left bottom;
  background-size: 5px auto;
  font-size: 2rem;
}

.page-title h1 {
  font-weight: bold;
  line-height: 1.2;

  padding-left: 10px;
  background: url(../img/parts/page-title_bg01.png) no-repeat left bottom;
  background-size: 5px auto;
  font-size: 2rem;
}

/* 資料請求確認画面ボタン */

  .form-layout-v5 .form_button > div + div {
    margin-top: 1em;
  }
  .form-layout-v5 .form_button > [class*="button_"] {
    position: relative;
    width: 100%;
    height: 0;
    padding: 21.9% 0 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
  }
  .form-layout-v5 .form_button > div input[type="submit"] {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    text-indent: -9999em;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form-layout-v5 .form_button > .button_modify {
    background-image: url("../img/guidebook/button_modify_sp.png");
  }
  .form-layout-v5 .form_button > .button_send {
    background-image: url("../img/guidebook/button_send_sp.png");
  }

  /* 資料請求完了画面ボタン */
  .form-layout-v5 .form_button > li > .button_close {
    background-image: url("../img/guidebook/button_close_sp.png");
  }
      .form-layout-v5 .form_button > li > .button_close:hover {
    background-image: url("../img/guidebook/button_close_onmouse_sp.png");
  }
.form-layout-v5 .form_button > .button_send:hover{
background-image: url("../img/guidebook/button_send_onmouse_sp.png");
}
.form-layout-v5 .form_button > .button_modify:hover{
background-image: url("../img/guidebook/button_modify_onmouse_sp.png");
}
}
