@charset "utf-8";

/* ======================================================
 * search.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Parts
 * - Clearfix
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Parts
 * - Clearfix
 * SP Media Queries
 * Print
====================================================== */
/* ----- placeholder ----- */
input::placeholder,
textarea::placeholder {
  color: #999!important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999!important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999!important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999!important;
  opacity: 1!important;
}
/* ----- appearance ----- */
.form-section input[type="text"],
.form-section input[type="radio"],
.form-section input[type="checkbox"],
.form-section input[type="submit"],
.form-section select,
.form-section textarea,
.form-section button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
/* ----- transition ----- */
.form-input-field input[class*="input-text"] ,
.form-input-field .input_placeholder,
.form-select-field select {
  -webkit-transition: all .25s cubic-bezier(.4,0,.2,1);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
/* ----- focus ----- */
.form-input-field.form-group input[class*="input-text"]:focus,
.form-input-field.form-group.is-focused input[class*="input-text"],
.form-select-field.form-group select:hover,
.form-select-field.form-group select:focus,
.form-select-field.form-group.is-focused select,
.form-textarea-field textarea:focus,
.form-textarea-field.form-group.is-focused textarea {
  border-color: #005bac;
  outline: 0;
}
/* ----- error ----- */
.form-input-field.form-group.is-error input[class*="input-text"],
.form-select-field.form-group.is-error select,
.form-textarea-field.form-group.is-error textarea {
  border-color: #da2d5b;
  background-color: #ffedf5;
}
.form-select-field.is-error::before {
  border-top-color: #da2d5b;
}

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  #formBody .mainContents {
    margin-bottom: 80px;
  }
  /* ----- focus ----- */
  .form-input-field.form-group.is-focused input[class*="input-text"],
  .form-input-field.form-group.is-filled input[class*="input-text"] {
    padding-top: 26px;
  }
  .form-input-field.form-group.is-focused > .input_placeholder,
  .form-input-field.form-group.is-filled > .input_placeholder {
    top: 10px;
    font-size: .75rem;
  }
  /* ------------------------------------------------------
   * Parts
  ------------------------------------------------------ */
  /* ----- form-flow-layout ----- */
  .form-flow-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 582px;
    margin: 0 auto 34px;
  }
  .form-flow-layout li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
  }
  .form-flow-layout li .list_mark {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    padding: 12px 10px 10px;
    border-radius: 50%;
    background: #005bac;
    color: #fff;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1;
  }
  .form-flow-layout li .list_mark::before {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: 100%;
    width: 228px;
    height: 2px;
    background: #005bac;
  }
  .form-flow-layout li:first-child .list_mark::before {
    display: none;
  }
  .form-flow-layout li .list_mark + span {
    color: #005bac;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
  }
  .form-flow-layout li:nth-child(1).is-current + li .list_mark,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark,
  .form-flow-layout li:nth-child(1).is-current + li .list_mark::before,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark::before,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark::before {
    background: #ddd;
  }
  .form-flow-layout li:nth-child(1).is-current + li .list_mark + span,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark + span,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark + span {
    color: #ddd;
  }
  
  /* ----- form-section ----- */ 
  .form-section {
    margin-top: 80px;
  }
  .form-section > .heading-lv2:first-child {
    margin-top: 0;
    margin-bottom: 34px;
  }
  .form-section > :last-child {
    margin-bottom: 0;
  }
  .form-section table th,
  .form-section table td {
    padding: 20px;
  }
  
  /* ----- form-button-layout ----- */ 
  .form-button-layout {
    position: relative;
    margin-top: 40px;
    padding: 0 300px;
  }
  .form-button-layout button {
    width: auto!important;
    min-width: 376px;
    margin: 0 auto;
  }
  
  /* ----- form-correct-layout ----- */ 
  .form-correct-layout {
    margin-top: -60px;
  }
  .form-correct-layout .form-correct-button {
    width: auto;
  }
  
  /* ----- form-required-icon ----- */
  .form-required-icon {
    display: inline-block;
    padding: 3px 15px 2px;
    border-radius: 3px;
    background: #da2d5b;
    color: #fff;
    font-size: .875rem;
    font-weight: bold;
  }
  li .form-required-icon {
    margin-right: 10px;
  }
  
  /* ----- form-required-item ----- */
  .form-required-item th > span {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 70px;
  }
  .form-required-item th > span::before {
    content: "必須";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 15px 2px;
    border-radius: 3px;
    background: #da2d5b;
    color: #fff;
    font-size: .875rem;
    font-weight: bold;
  }
  .form-required-item th.align-middle > span::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* ----- input-text ----- */
  .input-text-short {
    width: 262px;
  }
  .input-text-middle {
    width: 468px;
  }
  .input-text-long {
    width: 100%;
  }
  /* ----- form-input-field ----- */
  .form-input-field {
    position: relative;
  }
  .form-input-field input[class*="input-text"] {
    min-height: 56px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1rem;
  }
  .form-input-field .input_placeholder {
    position: absolute;
    top: 18px;
    left: 16px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
  }
  
  /* ----- form-select-field ----- */
  .form-select-field {
    display: inline-block;
    position: relative;
  }
  .form-select-field::before {
    content: "";
    display: block;
    position: absolute;
    top: 24px;
    right: 21px;
    border-style: solid;
    border-width: 8px 6px 0;
    border-color: #005bac transparent transparent;
    cursor: pointer;
    pointer-events: none;
  }
  .form-select-field select {
    width: 262px;
    min-height: 56px;
    padding: 15px 40px 15px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
  }
  
  /* ----- form-textarea-field ----- */
  .form-textarea-field textarea {
    width: 100%;
    min-height: 200px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1rem;
    resize: vertical;
  }
  
  /* ----- form-word-count ----- */
  .form-word-count {
    display: block;
    margin: 5px 0 0 0;
    font-size: .875rem;
    text-align: right;
  }
  
  /* ----- form-error-text ----- */
  .form-error-text {
    display: block;
    margin: 12px 0 0 0;
    color: #b50030;
    font-size: 1rem;
    font-weight: bold;
  }
  
  /* ----- form-error-list ----- */
  .form-error-list {
    display: block;
    margin-bottom: 1.5rem;
    padding: 24px 30px;
    border-radius: 20px;
    background: #ffedf5;
  }
  .form-error-list li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 18px;
    color: #b50030;
    font-size: 1rem;
    font-weight: bold;
  }
  .form-error-list li::before {
    position: absolute;
    top: .5rem;
    left: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    content: "";
    background-color: #b50030;
  }
  
  /* ------------------------------------------------------
   * 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: 1480px) {
}
@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: 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
  ------------------------------------------------------ */
  /* ----- focus ----- */
  .form-input-field.form-group.is-focused input[class*="input-text"],
  .form-input-field.form-group.is-filled input[class*="input-text"] {
    padding-top: 21px;
  }
  .form-input-field.form-group.is-focused > .input_placeholder,
  .form-input-field.form-group.is-filled > .input_placeholder {
    top: 8px;
    font-size: .625rem;
  }
  /* ------------------------------------------------------
   * Parts
  ------------------------------------------------------ */
  /* ----- form-flow-layout ----- */
  .form-flow-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 273px;
    margin: 0 auto 22px;
  }
  .form-flow-layout li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
  }
  .form-flow-layout li .list_mark {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    margin-bottom: 8px;
    padding: 10px 8px 8px;
    border-radius: 50%;
    background: #005bac;
    color: #fff;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1;
  }
  .form-flow-layout li .list_mark::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: 100%;
    width: 87px;
    height: 2px;
    background: #005bac;
  }
  .form-flow-layout li:first-child .list_mark::before {
    display: none;
  }
  .form-flow-layout li .list_mark + span {
    color: #005bac;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
  }
  .form-flow-layout li:nth-child(1).is-current + li .list_mark,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark,
  .form-flow-layout li:nth-child(1).is-current + li .list_mark::before,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark::before,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark::before {
    background: #ddd;
  }
  .form-flow-layout li:nth-child(1).is-current + li .list_mark + span,
  .form-flow-layout li:nth-child(1).is-current + li + li .list_mark + span,
  .form-flow-layout li:nth-child(2).is-current + li .list_mark + span {
    color: #ddd;
  }
  
  /* ----- form-section ----- */ 
  .form-section {
    margin-top: 40px;
  }
  .form-section > .heading-lv2:first-child {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .form-section > :last-child {
    margin-bottom: 0;
  }
  .form-section table th,
  .form-section table td {
    padding: 15px;
  }
  
  /* ----- form-button-layout ----- */ 
  .form-button-layout {
    position: relative;
    margin-top: 20px;
  }
  .form-button-layout .form-submit-button {
    width: 100%;
    margin: 0 auto;
  }
  
  /* ----- form-correct-layout ----- */ 
  .form-correct-layout {
    margin-top: 20px;
  }
  .form-correct-layout .form-correct-button {
    width: auto;
    margin: 0 auto;
  }
  
  /* ----- form-required-icon ----- */
  .form-required-icon {
    display: inline-block;
    padding: 2px 11px 1px;
    border-radius: 3px;
    background: #da2d5b;
    color: #fff;
    font-size: .75rem;
    font-weight: bold;
  }
  li .form-required-icon {
    margin-right: 6px;
  }
  
  /* ----- form-required-item ----- */
  .form-required-item th {
    position: relative;
    padding-right: 70px!important;
    z-index: -1;
  }
  .form-required-item th::before {
    content: "必須";
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 16px;
    padding: 2px 11px 1px;
    border-radius: 3px;
    background: #da2d5b;
    color: #fff;
    font-size: .75rem;
    font-weight: bold;
  }
  
  /* ----- input-text ----- */
  .input-text-short {
    width: 210px;
    max-width: 100%;
  }
  .input-text-middle {
    width: 100%;
  }
  .input-text-long {
    width: 100%;
  }
  /* ----- form-input-field ----- */
  .form-input-field {
    position: relative;
  }
  .form-input-field input[class*="input-text"] {
    min-height: 45px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: #333;
    font-size: .875rem;
  }
  .form-input-field .input_placeholder {
    position: absolute;
    top: 13px;
    left: 14px;
    color: #999;
    font-size: .875rem;
    pointer-events: none;
  }
  
  /* ----- form-select-field ----- */
  .form-select-field {
    display: block;
    position: relative;
  }
  .form-select-field::before {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    border-style: solid;
    border-width: 7px 5px 0;
    border-color: #005bac transparent transparent;
    cursor: pointer;
    pointer-events: none;
  }
  .form-select-field select {
    width: 100%;
    min-height: 45px;
    padding: 8px 35px 8px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
  }
  
  /* ----- form-textarea-field ----- */
  .form-textarea-field textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: #333;
    font-size: .875rem;
    resize: vertical;
  }
  
  /* ----- form-word-count ----- */
  .form-word-count {
    display: block;
    margin: 5px 0 0 0;
    font-size: .75rem;
    text-align: right;
  }
  
  /* ----- form-error-text ----- */
  .form-error-text {
    display: block;
    margin: 12px 0 0 0;
    color: #b50030;
    font-size: .875rem;
    font-weight: bold;
  }
  
  /* ----- form-error-list ----- */
  .form-error-list {
    display: block;
    margin-bottom: 1.5rem;
    padding: 14px 15px;
    border-radius: 10px;
    background: #ffedf5;
  }
  .form-error-list li {
    position: relative;
    margin-bottom: .5rem;
    padding-left: 18px;
    color: #b50030;
    font-size: .875rem;
    font-weight: bold;
  }
  .form-error-list li::before {
    position: absolute;
    top: .4em;
    left: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    content: "";
    background-color: #b50030;
  }
  
  /* ------------------------------------------------------
   * 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 {
}