@charset "utf-8";

/* ======================================================
 * common_form.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Override
 * - Parts
 * - PageComponent
 * - Clearfix
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Common
 * - Override
 * - Parts
 * - PageComponent
 * - Clearfix
 * SP Media Queries
 * Print
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  
  /* ------------------------------------------------------
   * Override
  ------------------------------------------------------ */
  
  /* ------------------------------------------------------
   * Parts
  ------------------------------------------------------ */
  /* ----- cmn-form-step ----- */
  .cmn-form-step {
    display: flex;
    margin: 0 0 3.4375rem;
  }
  .cmn-form-step > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    margin: 0;
    padding: 0 12px 0 0;
    background-color: #cccccc;
  }
  .cmn-form-step > li:last-child {
    padding-left: 12px;
  }
  .cmn-form-step > li.is-current {
    background-color: #e94829;
  }
  .cmn-form-step > li::before,
  .cmn-form-step > li::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
  }
  .cmn-form-step > li::before {
    top: 0;
    border-width: 0 24px 30px 0;
    border-right-color: #fff;
  }
  .cmn-form-step > li::after {
    bottom: 0;
    border-width: 0 0 30px 24px;
    border-bottom-color: #fff;
  }
  .cmn-form-step > li:last-child::before,
  .cmn-form-step > li:last-child::after {
    display: none;
  }
  .cmn-form-step.type-col3 > li {
    width: calc((100% - 15px * 2) / 3);
    margin-left: 15px;
  }
  .cmn-form-step.type-col4 > li {
    width: calc((100% - 16px * 3) / 4);
    margin-left: 16px;
  }
  .cmn-form-step > li:first-child {
    margin-left: 0;
  }
  .cmn-form-step > li .step_text {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .cmn-form-step > li .step_text > * {
    color: #fff;
    font-weight: 700;
  }
  .cmn-form-step.type-col3 > li .step_text > * {
    font-size: 1.25rem;
  }
  .cmn-form-step.type-col4 > li .step_text > * {
    font-size: 1.125rem;
  }
  .cmn-form-step > li .step_text > dd {
    margin: 0 0 0 1em;
  }
  .cmn-form-step > li .step_order {
    display: none;
  }
  
  /* ----- cmn-form-icon ----- */
  .cmn-form-icon {
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: 0 5px 0 0;
    background-color: #e94829;
    border-radius: 3px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
  }
  
  /* ----- cmn-form-frame ----- */
  .cmn-form-frame {
    overflow-y: scroll;
    height: 280px;
    margin: 1.875rem 0;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  .cmn-form-frame > .frame_inner {
    padding: 25px 30px 30px;
  }
  .cmn-form-frame > .frame_inner > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* v2 */
  .cmn-form-frame-v2 {
    margin: 0 0 2.1875rem;
    padding: 25px 30px;
    background-color: #fef6f4;
    border: 1px solid #e94829;
    border-radius: 10px;
  }
  .cmn-form-frame-v2 > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-frame-v2 > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-frame-v2 > .cmn-form-text-v3 {
    position: relative;
    margin: 0 0 0.625rem;
    padding: 0 0 0 25px;
    color: #e94829;
    font-weight: 700;
  }
  .cmn-form-frame-v2 > .cmn-form-text-v3::before {
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 4px solid #f79f8e;
    border-radius: 50%;
    content: "";
  }
  .cmn-form-frame-v2 .form_list > li {
    position: relative;
    margin: 0 0 0.625rem;
    padding: 0 0 0 25px;
    color: #e94829;
    font-weight: 700;
  }
  .cmn-form-frame-v2 .form_list > li::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid #f79f8e;
  }
  .cmn-form-frame-v2 .form_list > li:last-child {
    margin-bottom: 0;
  }
  
  /* ----- cmn-form-button ----- */
  .cmn-form-button {
    display: flex;
    justify-content: center;
    margin: 0 0 3.75rem;
  }
  .cmn-form-button > li {
    display: flex;
    margin: 0;
  }
  .cmn-form-button > li > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 0;
    padding: 10px 30px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,0.15);
    background-color: #1bb8ce;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  .cmn-form-button > li > *:hover {
    border-color: #09c2dc;
    background-color: #09c2dc;
  }
  .cmn-form-button > li > a {
    text-decoration: none;
  }
  .cmn-form-button > li > label {
    cursor: pointer;
  }
  .cmn-form-button > li > label > input[type="checkbox"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span {
    position: relative;
    padding-left: 30px;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-button > li > label > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: -2px 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-button > li > label > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* v2 */
  .cmn-form-button-v2 {
    display: flex;
    justify-content: center;
  }
  .cmn-form-button-v2 > li {
    display: flex;
    margin: 0;
  }
  .cmn-form-button-v2 > li + li {
    margin-left: 36px;
  }
  .cmn-form-button-v2 > li > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .cmn-form-button-v2 > li > a {
    text-decoration: none;
  }
  .cmn-form-button-v2 > li > button {
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-form-button-v2 > li > .type-return {
    min-height: 50px;
    padding: 10px 40px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,0.15);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    color: #333;
    line-height: 1.1;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  .cmn-form-button-v2 > li > .type-return:hover {
    background-color: #f7f9fb;
    color: #333;
  }
  .cmn-form-button-v2 > li > .type-confirm,
  .cmn-form-button-v2 > li > .type-submit {
    min-height: 50px;
    padding: 10px 40px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,0.15);
    background-color: #1bb8ce;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  .cmn-form-button-v2 > li > .type-confirm:hover,
  .cmn-form-button-v2 > li > .type-submit:hover {
    border-color: #09c2dc;
    background-color: #09c2dc;
  }
  .cmn-form-button-v2 > li > .type-confirm {
    min-width: 396px;
  }
  .cmn-form-button-v2 > li > .type-submit {
    min-width: 316px;
  }
  .cmn-form-button-v2 > li > .type-confirm[disabled] {
    pointer-events: none;
    background-color: #aaa;
  }
  
  /* ----- cmn-form-heading ----- */
  .cmn-form-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 3.75rem 0 1.875rem;
    padding: 20px 30px 17px;
    background-color: #f4f4f4;
  }
  .cmn-form-heading > * {
    margin-bottom: 0 !important;
  }
  .cmn-form-heading > .heading_title {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .cmn-form-heading.is-required > .heading_title::after {
    content: "必須";
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: -2px 0 0 10px;
    background-color: #e94829;
    border-radius: 3px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
  }
  .cmn-form-heading > .heading_title > label {
    margin-bottom: 0;
  }
  .cmn-form-heading > .heading_note {
    position: relative;
    padding: 0 0 0 1em;
    color: #7d7a78;
    font-size: 0.75rem;
    white-space: nowrap; /* for Edge bug */
  }
  .cmn-form-heading > .heading_note .note_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cmn-form-heading > .heading_title + .heading_note {
    margin-left: 1.25rem;
  }
  
  /* ----- cmn-form-section ----- */
  .cmn-form-section {
    margin: 1.875rem 30px 3.75rem;
  }
  .cmn-form-section > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-description ----- */
  .cmn-form-description {
    display: flex;
    margin: 0 0 1.5625rem;
  }
  .cmn-form-description > dt {
    width: 243px;
    margin: 0 30px 0 0;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .cmn-form-description > dd {
    flex: 1;
    padding: 1px 0 0 6px;
  }
/*  .cmn-form-description.is-error > dd {
    background-color: #fef6f4;
  }*/
  .cmn-form-description > dd .cmn-form-radio[class*="type-pc-col"] {
    display: flex;
    flex-wrap: wrap;
  }
  .cmn-form-description > dd .cmn-form-radio.type-pc-col4 > li {
    width: calc((100% - 25px * 3) / 4);
    margin-left: 25px;
  }
  .cmn-form-description > dd .cmn-form-radio.type-pc-col4 > li:nth-child(4n+1) {
    margin-left: 0;
  }
  .cmn-form-description > dd .cmn-form-radio.type-pc-col4 > li:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  
  /* v2 */
  .cmn-form-description-v2 {
    margin: 1.5625rem 0;
  }
  .cmn-form-text-v3 + .cmn-form-description-v2 {
    margin-top: 1rem;
  }
  .cmn-form-description-v2 > dt {
    margin: 0 0 0.9375rem;
  }
  .cmn-form-description-v2 > * > *:last-child,
  .cmn-form-description-v2 > * > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-radio ----- */
  .cmn-form-radio.is-error {
    background-color: #fef6f4;
  }
  .cmn-form-radio > li {
    margin: 0 0 1.25rem;
    line-height: 1.75;
  }
  .cmn-form-radio > li:last-child {
    margin-bottom: 0;
  }
  .cmn-form-radio > li > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-radio > li label {
    position: relative;
    margin: 0;
    cursor: pointer;
  }
  .cmn-form-radio > li label > input[type="radio"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .cmn-form-radio > li label > input[type="radio"] + span {
    position: relative;
    display: inline-block;
    padding: 0 0 0 30px;
  }
  .cmn-form-radio > li label > input[type="radio"] + span::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
  }
  .cmn-form-radio > li label > input[type="radio"] + span::after {
    content: "";
    position: absolute;
    top: calc(0.2em + 4px);
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #4b4948;
    border-radius: 50%;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-radio > li label > input[type="radio"]:checked + span::after {
    opacity: 1;
  }
  .cmn-form-radio > li label + .cmn-form-text-v2 {
    margin-top: 0.3125rem;
    margin-bottom: 0.625rem;
  }
  .cmn-form-radio[class*="type-pc-col"] {
    display: flex;
    flex-wrap: wrap;
    padding: 2px 6px;
  }
  .cmn-form-radio.type-pc-col3 > li {
    width: calc((100% - 36px * 2) / 3);
    margin-left: 36px;
  }
  [data-browser="ie11"] .cmn-form-radio.type-pc-col3 > li,
  [data-browser="edge"] .cmn-form-radio.type-pc-col3 > li {
    width: calc(((100% - 36px * 2) / 3) - 0.1px);
  }
  .cmn-form-radio.type-pc-col4 > li {
    width: calc((100% - 36px * 3) / 4);
    margin-left: 36px;
  }
  [data-browser="ie11"] .cmn-form-radio.type-pc-col4 > li,
  [data-browser="edge"] .cmn-form-radio.type-pc-col4 > li {
    width: calc(((100% - 36px * 3) / 4) - 0.1px);
  }
  .cmn-form-radio.type-pc-col6 > li {
    width: calc((100% - 36px * 5) / 6);
    margin-left: 36px;
  }
  [data-browser="ie11"] .cmn-form-radio.type-pc-col6 > li,
  [data-browser="edge"] .cmn-form-radio.type-pc-col6 > li {
    width: calc(((100% - 36px * 5) / 6) - 0.1px);
  }
  .cmn-form-radio.type-pc-col3 > li:nth-child(3n+1),
  .cmn-form-radio.type-pc-col4 > li:nth-child(4n+1),
  .cmn-form-radio.type-pc-col6 > li:nth-child(6n+1) {
    margin-left: 0 !important;
  }
  .cmn-form-radio.type-pc-col3 > li:nth-last-child(-n+3),
  .cmn-form-radio.type-pc-col4 > li:nth-last-child(-n+4),
  .cmn-form-radio.type-pc-col6 > li:nth-last-child(-n+6) {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-text ----- */
  .cmn-form-text {
    color: #7b7b7b;
  }
  
  /* v2 */
  .cmn-form-text-v2 {
    color: #7b7b7b;
    font-size: 0.875rem;
  }
  
  /* v3 */
  .cmn-form-text-v3 {
    margin-top: 1.5625rem;
    color: #e94829;
    font-weight: 700;
  }
  
  /* ----- cmn-form-textarea ----- */
  .cmn-form-textarea {
    width: 100%;
    height: 220px;
    padding: 25px 30px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    resize: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-form-textarea.is-error {
    border-color: #e94829;
    background-color: #fef6f4;
  }
  
  /* ----- cmn-from-textfield ----- */
  .cmn-from-textfield {
    width: 100%;
    height: 35px;
    margin: 0 0 1.25rem;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #4b4948;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-from-textfield.type-zip {
    width: 160px;
  }
  .cmn-from-textfield.is-error {
    border-color: #e94829;
    background-color: #fef6f4;
  }
  
  /* ----- cmn-form-table ----- */
  .cmn-form-table {
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 2.5rem 0 3.75rem;
  }
  .cmn-form-table > * > tr > * {
    border-bottom: 1px solid #ddd;
    vertical-align: top;
  }
  .cmn-form-table > * > tr > * > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-table > * > tr > * > *:last-child,
  .cmn-form-table > * > tr > * > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-table > tbody > tr > th {
    width: 273px;
    padding: 30px;
    background-color: #f4f4f4;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .cmn-form-table > tbody > tr > th.is-required::after {
    content: "必須";
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: -2px 0 0 10px;
    background-color: #e94829;
    border-radius: 3px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
  }
  .cmn-form-table > tbody > tr > td {
    padding: 30px 36px;
    background-color: #fff;
  }
  .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col3 > li {
    width: calc((100% - 20px * 2) / 3);
    margin-left: 20px;
  }
  [data-browser="ie11"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col3 > li,
  [data-browser="edge"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col3 > li {
    width: calc(((100% - 20px * 2) / 3) - 0.1px);
  }
  .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col4 > li {
    width: calc((100% - 20px * 3) / 4);
    margin-left: 20px;
  }
  [data-browser="ie11"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col4 > li,
  [data-browser="edge"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col4 > li {
    width: calc(((100% - 20px * 3) / 4) - 0.1px);
  }
  .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col6 > li {
    width: calc((100% - 20px * 5) / 6);
    margin-left: 20px;
  }
  [data-browser="ie11"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col6 > li,
  [data-browser="edge"] .cmn-form-table > tbody > tr > td .cmn-form-radio.type-pc-col6 > li {
    width: calc(((100% - 20px * 5) / 6) - 0.1px);
  }
  
  /* v2 */
  .cmn-form-table-v2 {
    width: 100%;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0 0 3.125rem;
  }
  .cmn-form-table-v2 > * > tr > * {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
  }
  .cmn-form-table-v2 > * > tr > * > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-table-v2 > * > tr > * > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-table-v2 > tbody > tr > th {
    width: 310px;
    padding: 10px 20px;
    background-color: #f4f4f4;
    font-weight: 400;
  }
  .cmn-form-table-v2 > tbody > tr > td {
    padding: 10px 15px;
    background-color: #fff;
  }
  
  /* ----- cmn-form-unit ----- */
  .cmn-form-unit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .cmn-form-unit > li {
    position: relative;
    margin: 0;
  }
  .cmn-form-unit > li + li {
    margin-left: 21px;
  }
  .cmn-form-unit > li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 5px;
    height: 1px;
    background-color: #4b4948;
  }
  .cmn-form-unit > li:nth-child(1) {
    width: 80px;
  }
  .cmn-form-unit > li:nth-child(2),
  .cmn-form-unit > li:nth-child(3) {
    width: 100px;
  }
  .cmn-form-unit > li > *:last-child,
  .cmn-form-unit > li > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-select ----- */
  .cmn-form-select {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .cmn-form-select.is-error {
    background-color: #fef6f4;
    border-color: #e94829;
  }
  .cmn-form-select.type-prefecture {
    width: 180px;
  }
  .cmn-form-select::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #7d7a78 transparent transparent transparent;
  }
  .cmn-form-select select {
    width: 100%;
    height: 40px;
    padding: 0 35px 0 20px;
    background: transparent;
    border: none;
    outline: none;
    color: #4b4948;
    font-size: 0.875rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-form-select select::-ms-expand {
    display: none;
  }
  
  /* ----- cmn-form-note ----- */
  .cmn-form-note {
    display: block;
    margin: 0 0 1rem;
  }
  .cmn-form-note > li {
    position: relative;
    padding: 0 0 0 1em;
  }
  .cmn-form-note > li > .note_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- cmn-form-list ----- */
  .cmn-form-list {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 30px;
  }
  .cmn-form-list.is-error {
    background-color: #fef6f4;
  }
  .cmn-form-list > li {
    width: calc((100% - (35px * 3)) / 4);
    margin: 0 0 50px 35px;
  }
  [data-browser="ie11"] .cmn-form-list > li {
    width: calc(((100% - (35px * 3)) / 4) - 0.1px);
  }
  .cmn-form-list > li:nth-child(4n+1) {
    margin-left: 0;
  }
  .cmn-form-list > li:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  
  /* ----- cmn-form-checkbox ----- */
  .cmn-form-checkbox > li label {
    position: relative;
    display: inline-block;
    margin: 0;
    cursor: pointer;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span {
    display: block;
    position: relative;
    padding-left: 25px;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    top: calc(0.2em + 3px);
    left: 0;
    transform: rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: 0 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* ----- cmn-form-label ----- */
  .cmn-form-label {
    display: inline;
  }
  
  /* ----- cmn-form-index-layout ----- */
  .cmn-form-index-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 2rem;
  }
  .cmn-form-index-layout > .index_heading {
    font-size: 1.375rem;
    font-weight: 700;
  }
  .cmn-form-index-layout > .index_telephone {
    font-size: 1.625rem;
    font-weight: 700;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:"] {
    color: #4b4948;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:0120"] {
    position: relative;
    padding-left: 58px;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:0120"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 47px;
    height: 27px;
    background: url("/common_img/cmn_form_ic01.png") no-repeat 50% 50%;
  }
  .cmn-form-index-layout > * + * {
    margin-left: 40px;
  }
  
  /* ----- cmn-form-tab ----- */
  .cmn-form-tab {
    margin-bottom: 36px;
  }
  .cmn-form-tab > .cmn-form-tab__navi {
    border-bottom: 2px solid #e94829;
  }
  .cmn-form-tab .cmn-form-tab__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .cmn-form-tab .cmn-form-tab__list > li {
    width: calc((100% - (8px * 1)) / 2);
    margin-left: 8px;
    margin-bottom: 0;
  }
  [data-browser="ie11"] .cmn-form-tab .cmn-form-tab__list > li {
    width: calc(((100% - (8px * 1)) / 2) - 0.1px);
  }
  .cmn-form-tab .cmn-form-tab__list > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .cmn-form-tab .cmn-form-tab__list > li > a {
    display: block;
    padding: 16px 15px 14px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    color: #494948;
  }
  .cmn-form-tab .cmn-form-tab__list > li.is-current > a {
    pointer-events: none;
    background-color: #e94829;
    border-color: #e94829;
    color: #fff;
  }
  .cmn-form-tab .cmn-form-tab__list > li:not(.is-current) > a:hover {
    background-color: #f7f9fb;
  }
  
  /* ------------------------------------------------------
   * PageComponent
  ------------------------------------------------------ */
  /* ----- choice-layout ----- */
  .choice-layout {
  }
  .choice-layout > .choice-layout__block {
    display: -webkit-flex;
    display: flex;
    margin: 0;
  }
  .choice-layout > label.choice-layout__block {
    cursor: pointer;
  }
  .choice-layout .choice-layout__image {
    display: block;
    width: 120px;
    margin: 0 8px 0 0;
    background-color: #fff;
    pointer-events: none;
  }
  .choice-layout .choice-layout__image > img {
    width: 100%;
    border: 1px solid #ddd;
    -webkit-transition: opacity .3s cubic-bezier(.4,0,.2,1);
    transition: opacity .3s cubic-bezier(.4,0,.2,1);
  }
  .choice-layout > label.choice-layout__block:hover > .choice-layout__image > img {
    opacity: .7;
  }
  .choice-layout .choice-layout__detail {
    flex: 1;
    display: block;
    padding: 70px 0 0;
  }
  .choice-layout .choice-layout__checkbox {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-left: 25px;
    cursor: pointer;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] {
    display: none;
  }
  .choice-layout .choice-layout__checkbox > span {
    display: block;
    word-break: break-all;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    top: calc(0.2em + 3px);
    left: 0;
    transform: rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: 0 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * PC Media Queries
====================================================== */
@media screen and (min-width: 1921px) {
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
}
@media screen and (min-width: 768px) and (max-width: 1536px) {
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 1232px) {
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
}
@media screen and (min-width: 768px) and (max-width: 1112px) {
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (min-width: 768px) and (max-width: 896px) {
}
@media screen and (min-width: 768px) and (max-width: 834px) {
}
@media screen and (min-width: 768px) and (max-width: 812px) {
}


/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  
  /* ------------------------------------------------------
   * Override
  ------------------------------------------------------ */
  
  /* ------------------------------------------------------
   * Parts
  ------------------------------------------------------ */
  /* ----- cmn-form-step ----- */
  .cmn-form-step {
    margin: 0 0 1.25rem;
  }
  .cmn-form-step > li {
    display: none;
    margin: 0;
  }
  .cmn-form-step > li.is-current {
    display: flex;
    align-items: center;
  }
  .cmn-form-step > li.is-current > .step_order {
    width: 79px;
    margin: 0 13px 0 0;
  }
  .cmn-form-step > li.is-current > .step_order + * {
    flex: 1;
  }
  .cmn-form-step > li .step_text > * {
    line-height: 1.1;
    font-weight: 700;
  }
  .cmn-form-step > li .step_text > dt {
    font-size: 0.9375rem;
  }
  .cmn-form-step > li .step_text > dd {
    margin: 0.3125rem 0 0;
    font-size: 1.375rem;
  }
  .cmn-form-step > li .step_order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79px;
    height: 79px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .cmn-form-step.type-col3 > li:nth-child(1) .step_order {
    background-image: url("/common_img/cmn_form_ex01.png");
  }
  .cmn-form-step.type-col3 > li:nth-child(2) .step_order {
    background-image: url("/common_img/cmn_form_ex02.png");
  }
  .cmn-form-step.type-col3 > li:nth-child(3) .step_order {
    background-image: url("/common_img/cmn_form_ex03.png");
  }
  .cmn-form-step.type-col4 > li:nth-child(1) .step_order {
    background-image: url("/common_img/cmn_form_ex04.png");
  }
  .cmn-form-step.type-col4 > li:nth-child(2) .step_order {
    background-image: url("/common_img/cmn_form_ex05.png");
  }
  .cmn-form-step.type-col4 > li:nth-child(3) .step_order {
    background-image: url("/common_img/cmn_form_ex06.png");
  }
  .cmn-form-step.type-col4 > li:nth-child(4) .step_order {
    background-image: url("/common_img/cmn_form_ex07.png");
  }
  .cmn-form-step > li .step_order .order_index {
    font-size: 1.375rem;
    line-height: 0;
  }
  
  /* ----- cmn-form-icon ----- */
  .cmn-form-icon {
    display: inline-block;
    width: 36px;
    height: 16px;
    margin: 0 4px 0 0;
    background-color: #e94829;
    border-radius: 2px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
  }
  
  /* ----- cmn-form-frame ----- */
  .cmn-form-frame {
    overflow-y: scroll;
    height: 350px;
    margin: 0.9375rem 0 1.25rem;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  .cmn-form-frame > .frame_inner {
    padding: 15px 20px 20px;
  }
  .cmn-form-frame > .frame_inner > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* v2 */
  .cmn-form-frame-v2 {
    margin: 0 0 1.25rem;
    padding: 15px;
    background-color: #fef6f4;
    border: 1px solid #e94829;
    border-radius: 5px;
  }
  .cmn-form-frame-v2 > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-frame-v2 > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-frame-v2 > .cmn-form-text-v3 {
    position: relative;
    margin: 0 0 0.3125rem;
    padding: 0 0 0 20px;
    color: #e94829;
    font-weight: 700;
  }
  .cmn-form-frame-v2 > .cmn-form-text-v3::before {
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid #f79f8e;
    content: "";
  }
  .cmn-form-frame-v2 .form_list > li {
    position: relative;
    margin: 0 0 0.3125rem;
    padding: 0 0 0 20px;
    color: #e94829;
    font-weight: 700;
  }
  .cmn-form-frame-v2 .form_list > li::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid #f79f8e;
  }
  .cmn-form-frame-v2 .form_list > li:last-child {
    margin-bottom: 0;
  }
  
  /* ----- cmn-form-button ----- */
  .cmn-form-button {
    display: flex;
    justify-content: center;
    margin: 0 0 1.875rem;
  }
  .cmn-form-button > li {
    display: flex;
    margin: 0;
  }
  .cmn-form-button > li > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin: 0;
    padding: 10px 25px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.15);
    background-color: #1bb8ce;
    border-radius: 23px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }
  .cmn-form-button > li > a {
    text-decoration: none;
  }
  .cmn-form-button > li > label > input[type="checkbox"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span {
    position: relative;
    padding-left: 25px;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-button > li > label > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .cmn-form-button > li > label > input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: -1px 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-button > li > label > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* v2 */
  .cmn-form-button-v2 {
    display: flex;
    flex-direction: column-reverse;
  }
  .cmn-form-button-v2 > li {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 0;
  }
  .cmn-form-button-v2 > li:last-child {
    margin-top: 0;
  }
  .cmn-form-button-v2 > li > * {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
  }
  .cmn-form-button-v2 > li > a {
    text-decoration: none;
  }
  .cmn-form-button-v2 > li > button {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-form-button-v2 > li > .type-return {
    max-width: 215px;
    min-height: 45px;
    padding: 10px 20px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.15);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 23px;
    color: #333;
    line-height: 1.1;
    text-align: center;
  }
  .cmn-form-button-v2 > li > .type-confirm,
  .cmn-form-button-v2 > li > .type-submit {
    min-height: 45px;
    padding: 10px 20px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.15);
    background-color: #1bb8ce;
    border-radius: 23px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }
  .cmn-form-button-v2 > li > .type-confirm {
    width: 100%;
  }
  .cmn-form-button-v2 > li > .type-submit {
    max-width: 305px;
  }
  .cmn-form-button-v2 > li > .type-confirm[disabled] {
    pointer-events: none;
    background-color: #aaa;
  }
  
  /* ----- cmn-form-heading ----- */
  .cmn-form-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.875rem -15px 0.9375rem;
    padding: 10px 15px;
    background-color: #f4f4f4;
  }
  .cmn-form-heading > * {
    margin-bottom: 0 !important;
  }
  .cmn-form-heading > .heading_title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .cmn-form-heading.is-required > .heading_title::after {
    content: "必須";
    display: inline-block;
    width: 36px;
    height: 16px;
    margin: -2px 0 0 10px;
    background-color: #e94829;
    border-radius: 2px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
  }
  .cmn-form-heading > .heading_title > label {
    margin-bottom: 0;
  }
  .cmn-form-heading > .heading_note {
    position: relative;
    padding: 0 0 0 1em;
    color: #7d7a78;
    font-size: 0.75rem;
  }
  .cmn-form-heading > .heading_note .note_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cmn-form-heading > .heading_title + .heading_note {
    margin-left: 0.625rem;
  }
  
  /* ----- cmn-form-section ----- */
  .cmn-form-section {
    margin: 1.25rem 0 1.875rem;
  }
  .cmn-form-section > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-description ----- */
  .cmn-form-description {
    display: flex;
    justify-content: space-between;
  }
  .cmn-form-description + .cmn-form-description {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f4f4f4;
  }
  .cmn-form-description > * {
    width: calc((100% - 15px) / 2);
  }
  .cmn-form-description > dt {
    font-weight: 700;
  }
  .cmn-form-description.is-error > dd {
    background-color: #fef6f4;
  }
  /* v2 */
  .cmn-form-description-v2 {
    margin: 0.625rem 0;
  }
  .cmn-form-description-v2 > dt {
    margin: 0 0 0.625rem;
  }
  .cmn-form-description-v2 > dt br + .cmn-form-text {
    display: inline-block;
    margin-top: 0.3125rem;
  }
  .cmn-form-description-v2 > * > *:last-child,
  .cmn-form-description-v2 > * > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-radio ----- */
  .cmn-form-radio {
    padding: 4px 6px;
  }
  .cmn-form-radio.is-error {
    background-color: #fef6f4;
  }
  .cmn-form-radio > li {
    margin: 0 0 1.25rem;
  }
  .cmn-form-radio > li:last-child {
    margin-bottom: 0;
  }
  .cmn-form-radio > li > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-radio > li label {
    position: relative;
    margin: 0;
    cursor: pointer;
  }
  .cmn-form-radio > li label > input[type="radio"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .cmn-form-radio > li label > input[type="radio"] + span {
    position: relative;
    display: inline-block;
    padding: 0 0 0 25px;
  }
  .cmn-form-radio > li label > input[type="radio"] + span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
  }
  .cmn-form-radio > li label > input[type="radio"] + span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #4b4948;
    border-radius: 50%;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-radio > li label > input[type="radio"]:checked + span::after {
    opacity: 1;
  }
  .cmn-form-radio > li label + .cmn-form-text-v2 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
  .cmn-form-radio[class*="type-sp-col"] {
    display: flex;
    flex-wrap: wrap;
  }
  .cmn-form-radio.type-sp-col2 > li {
    width: calc((100% - 15px) / 2);
    margin-left: 15px;
  }
  .cmn-form-radio.type-sp-col2 > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .cmn-form-radio.type-sp-col2 > li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  
  /* ----- cmn-form-text ----- */
  .cmn-form-text {
    color: #7b7b7b;
  }
  
  /* v2 */
  .cmn-form-text-v2 {
    color: #7b7b7b;
    font-size: 0.75rem;
  }
  
  /* v3 */
  .cmn-form-text-v3 {
    margin-bottom: 0.625rem;
    color: #e94829;
    font-weight: 700;
  }
  
  /* ----- cmn-form-textarea ----- */
  .cmn-form-textarea {
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    resize: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-form-textarea.is-error {
    border-color: #e94829;
    background-color: #fef6f4;
  }
  
  /* ----- cmn-from-textfield ----- */
  .cmn-from-textfield {
    width: 100%;
    height: 40px;
    margin: 0 0 0.625rem;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #4b4948;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .cmn-from-textfield.type-zip {
    width: 165px;
  }
  .cmn-from-textfield.is-error {
    border-color: #e94829;
    background-color: #fef6f4;
  }
  
  /* ----- cmn-form-table ----- */
  .cmn-form-table,
  .cmn-form-table > *,
  .cmn-form-table > * > tr,
  .cmn-form-table > * > tr > * {
    display: block;
  }
  .cmn-form-table {
    margin: 1.875rem -15px 2.5rem;
  }
  .cmn-form-table > * > tr > * > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-table > * > tr > * > *:last-child,
  .cmn-form-table > * > tr > * > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-table > tbody > tr > th {
    margin: 30px 0 0;
    padding: 15px;
    background-color: #f4f4f4;
    font-size: 1rem;
    font-weight: 700;
  }
  .cmn-form-table > tbody > tr > th.is-required::after {
    content: "必須";
    display: inline-block;
    width: 36px;
    height: 16px;
    margin: -2px 0 0 10px;
    background-color: #e94829;
    border-radius: 2px;
    vertical-align: middle;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
  }
  .cmn-form-table > tbody > tr:first-child > th:first-child {
    margin-top: 0;
  }
  .cmn-form-table > tbody > tr > td {
    margin: 20px 0 0;
    padding: 0 15px;
  }
  
  /* v2 */
  .cmn-form-table-v2,
  .cmn-form-table-v2 > *,
  .cmn-form-table-v2 > * > tr,
  .cmn-form-table-v2 > * > tr > * {
    display: block;
  }
  .cmn-form-table-v2 {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0 0 1.875rem;
  }
  .cmn-form-table-v2 > * > tr {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .cmn-form-table-v2 > tbody > tr > * {
    padding: 10px 15px;
  }
  .cmn-form-table-v2 > * > tr > * > *:first-child {
    margin-top: 0 !important;
  }
  .cmn-form-table-v2 > * > tr > * > *:last-child {
    margin-bottom: 0 !important;
  }
  .cmn-form-table-v2 > tbody > tr > th {
    background-color: #f4f4f4;
    font-weight: 400;
  }
  .cmn-form-table-v2 > tbody > tr > td {
    background-color: #fff;
  }
  
  /* ----- cmn-form-unit ----- */
  .cmn-form-unit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .cmn-form-unit > li {
    position: relative;
    margin: 0;
  }
  .cmn-form-unit > li + li {
    margin-left: 21px;
  }
  .cmn-form-unit > li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    width: 5px;
    height: 1px;
    background-color: #4b4948;
  }
  .cmn-form-unit > li:nth-child(1) {
    width: calc((100% - (21px * 2)) * 0.28);
  }
  .cmn-form-unit > li:nth-child(2),
  .cmn-form-unit > li:nth-child(3) {
    width: calc((100% - ((100% - (21px * 2)) * 0.28) - (21px * 2)) / 2);
  }
  .cmn-form-unit > li > *:last-child,
  .cmn-form-unit > li > *:last-child > *:last-child {
    margin-bottom: 0 !important;
  }
  
  /* ----- cmn-form-select ----- */
  .cmn-form-select {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .cmn-form-select.is-error {
    background-color: #fef6f4;
    border-color: #e94829;
  }
  .cmn-form-select.type-prefecture {
    width: 190px;
  }
  .cmn-form-select::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #7d7a78 transparent transparent transparent;
  }
  .cmn-form-select select {
    width: 100%;
    height: 40px;
    padding: 0 32px 0 15px;
    background: transparent;
    border: none;
    outline: none;
    color: #4b4948;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* ----- cmn-form-note ----- */
  .cmn-form-note {
    display: block;
    margin: 0 0 0.625rem;
  }
  .cmn-form-note > li {
    position: relative;
    padding: 0 0 0 1em;
  }
  .cmn-form-note > li > .note_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- cmn-form-list ----- */
  .cmn-form-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0 40px;
  }
  .cmn-form-list.is-error {
    background-color: #fef6f4;
  }
  .nav-tabs__detail > .cmn-form-list {
    margin-top: -18px;
    margin-bottom: -15px;
  }
  .cmn-form-list > li {
    width: calc((100% - 15px) / 2);
    margin: 0 0 40px;
  }
  .cmn-form-list > li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  
  /* ----- cmn-form-checkbox ----- */
  .cmn-form-checkbox > li label {
    position: relative;
    display: inline-block;
    margin: 0;
    cursor: pointer;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span {
    display: block;
    position: relative;
    padding-left: 25px;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    top: calc(0.2em + 3px);
    left: 0;
    transform: rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: 0 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
  }
  .cmn-form-checkbox > li label > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* ----- cmn-form-label ----- */
  .cmn-form-label {
    display: inline;
  }
  
  /* ----- cmn-form-index-layout ----- */
  .cmn-form-index-layout {
  }
  .cmn-form-index-layout > .index_heading {
    margin: 0 0 0.9375rem;
    font-weight: 700;
    text-align: center;
  }
  .cmn-form-index-layout > .index_telephone {
    display: flex;
    justify-content: center;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:"] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 50px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,0.15);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 23px;
    color: #4b4948;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:0120"] > span {
    position: relative;
    display: inline-block;
    padding-left: 25px;
  }
  .cmn-form-index-layout > .index_telephone a[href^="tel:0120"] > span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 14px;
    background: url("/common_img/cmn_form_ic01.png") no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  
  /* ----- cmn-form-tab ----- */
  .cmn-form-tab {
    margin-bottom: 31px;
  }
  .cmn-form-tab > .cmn-form-tab__navi {
    border-bottom: 2px solid #e94829;
  }
  .cmn-form-tab .cmn-form-tab__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .cmn-form-tab .cmn-form-tab__list > li {
    width: calc((100% - (4px * 1)) / 2);
    margin-left: 4px;
    margin-bottom: 0;
  }
  .cmn-form-tab .cmn-form-tab__list > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .cmn-form-tab .cmn-form-tab__list > li > a {
    display: block;
    padding: 18px 10px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    font-size: .875rem;
    font-weight: bold;
    text-align: center;
    color: #494948;
  }
  .cmn-form-tab .cmn-form-tab__list > li.is-current > a {
    pointer-events: none;
    background-color: #e94829;
    border-color: #e94829;
    color: #fff;
  }
  
  /* ----- choice-layout ----- */
  .choice-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .choice-layout > .choice-layout__block {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
  }
  .choice-layout .choice-layout__image {
    display: block;
    width: 120px;
    margin: 0 0 0.625rem;
    pointer-events: none;
  }
  .choice-layout .choice-layout__image > img {
    width: 100%;
    border: 1px solid #ddd;
  }
  .choice-layout .choice-layout__detail {
    display: block;
  }
  .choice-layout .choice-layout__checkbox {
    position: relative;
    display: block;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] {
    display: none;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] + span {
    display: block;
    position: relative;
    padding-left: 25px;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-out 0s;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"]:checked + span::before {
    background-color: #4b4948;
    border-color: #4b4948;
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"] + span::after {
    position: absolute;
    top: calc(0.1em + 3px);
    left: 0;
    transform: rotate(-45deg);
    width: 11px;
    height: 7px;
    margin: 0 0 0 2px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    opacity: 0;
    transition: all .2s ease-out 0s;
    content: "";
  }
  .choice-layout .choice-layout__checkbox > input[type="checkbox"]:checked + span::after {
    opacity: 1;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}


/* ======================================================
 * SP Media Queries
====================================================== */
@media only screen and (max-width: 736px) {
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 414px) {
}
@media only screen and (max-width: 375px) {
}
@media only screen and (max-width: 360px) {
}
@media only screen and (max-width: 320px) {
}


/* ======================================================
 * Print
====================================================== */
@media print {
}