@charset "UTF-8";
/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  /* ////////////////// フォーム ////////////////// */
  form {
    margin: 0px auto;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    width: 100%;
    padding: 0.4rem;
    border-radius: 0;
  }
  input[type=text].tel,
  input[type=email].tel,
  input[type=tel].tel,
  textarea.tel {
    width: 50%;
    min-width: 280px;
  }
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999999;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
    color: #999999;
  }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #999999;
  }
  input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #999999;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder,
  textarea::placeholder {
    color: #999999;
  }
  /* ボタン */
  button,
  input[type=button],
  input[type=submit] {
    text-transform: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    letter-spacing: 3px;
  }
  /* セレクトボックス */
  .select {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .select.block {
    display: block;
    margin-bottom: 0.5em;
  }
  .select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    min-width: 200px;
    padding: 0.75em 50px 0.75em 0.4em;
    width: 100%;
    background-color: #fff;
    border: 1px solid #6e6e6e;
    border-radius: 2px;
    font-size: 15px;
  }
  .select select::-ms-expand {
    display: none;
  }
  .select select option:not(:last-child) {
    border-bottom: 1px dashed #ccc;
  }
  .select optgroup {
    font-style: normal;
    font-weight: normal;
  }
  .select::before {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: calc(100% - 2px);
    content: "";
    background-color: #fff;
    border-radius: 0 2px 2px 0;
    z-index: 10;
  }
  .select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    margin-top: -3px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 8px solid #cccccc;
    pointer-events: none;
    z-index: 20;
  }
  /* checkbox radio 共通 */
  input[type=checkbox],
  input[type=radio] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: -0.8rem;
    color: #fff;
    cursor: pointer;
    margin: 0 8px 8px 0;
    border-radius: 10%;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  input[type=checkbox]::before,
  input[type=radio]::before {
    position: absolute;
    content: "";
    background: #fff;
  }
  input[type=checkbox]::after,
  input[type=radio]::after {
    content: "";
  }
  label {
    display: inline-block;
    cursor: pointer;
    font-size: 0.875rem;
  }
  label.label-tel:not(:last-child) {
    margin-right: 40px;
  }
  /* checkbox */
  input[type=checkbox] {
    border: 2px solid #d3a86a;
  }
  input[type=checkbox]::before, input[type=checkbox]::after {
    position: absolute;
    content: "";
    background: #fff;
  }
  input[type=checkbox]::before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  input[type=checkbox]::after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  input[type=checkbox]:checked::before, input[type=checkbox]:checked::after {
    background: #d3a86a;
  }
  input[type=checkbox]:checked::before {
    left: 0;
    top: 9px;
    width: 8px;
    height: 3px;
  }
  input[type=checkbox]:checked::after {
    right: 2px;
    bottom: 2px;
    width: 3px;
    height: 19px;
  }
  input[type=radio] {
    border-radius: 50%;
    border: 2px solid #d3a86a;
  }
  input[type=radio]::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    -webkit-transform: scale(0);
            transform: scale(0);
    background: #d3a86a;
  }
  input[type=radio]:checked::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
  .btn-area .btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 340px;
    overflow: hidden;
    margin: 0 auto 20px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }
  .btn-area .btn-submit,
  .btn-area .btn-link {
    color: #fff;
    background-color: #d3a86a;
    border: 1px solid #d3a86a;
  }
  .btn-area .btn-submit::before,
  .btn-area .btn-link::before {
    border-right: 45px solid transparent;
    border-bottom: 65px solid #fff;
  }
  .btn-area .btn-submit.disactive,
  .btn-area .btn-link.disactive {
    cursor: not-allowed;
    background-color: #fff;
    color: #cccccc;
    border: 1px solid #cccccc;
  }
  .btn-area .btn-submit.disactive::before,
  .btn-area .btn-link.disactive::before {
    display: none;
  }
  .btn-area .btn-back {
    color: #cccccc;
    background-color: #fff;
    border: 1px solid #cccccc;
  }
  .btn-area .btn-back::before {
    border-right: 45px solid transparent;
    border-bottom: 65px solid #cccccc;
  }
  /* ////////////////// 一覧 ////////////////// */
  .contact-index .contact-intro {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 60px;
    font-weight: 400;
    color: #6e6e6e;
  }
  .contact-index .contact-intro p {
    font-size: 0.875rem;
  }
  .contact-index .contact-intro p small {
    font-size: 0.75rem;
  }
  .contact-index .contact-intro .btn-g {
    margin-top: 40px;
  }
  .contact-index .contact-intro .btn-g a {
    font-weight: 400;
  }
  .contact-index .contact-index-col2 {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
  }
  .contact-index .contact-index-col2 .inner {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 20px;
    padding: 28px 18px;
    border: 1px solid #cccccc;
  }
  .contact-index .contact-index-col2 .inner .text h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #d3a86a;
    line-height: 1.5em;
    border-left: 5px solid #d3a86a;
  }
  .contact-index .contact-index-col2 .inner .text p {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6e6e6e;
  }
  .contact-index .contact-index-col2 .inner .text small {
    font-size: 0.75rem;
  }
  .contact-index .contact-index-col2 .inner .btn-b {
    margin-top: 10px;
  }
  .contact-index .contact-index-col2 .inner .btn-b a {
    width: 100%;
    font-weight: 400;
  }
  /* ////////////////// 入力 ////////////////// */
  .contact-input,
  .contact-confirm,
  .contact-thanks {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
    color: #6e6e6e;
  }
  .contact-input p,
  .contact-confirm p,
  .contact-thanks p {
    font-size: 0.875rem;
  }
  .contact-input a,
  .contact-confirm a,
  .contact-thanks a {
    color: #d3a86a;
    text-decoration: underline;
  }
  .contact-input .contact-input-intro,
  .contact-confirm .contact-input-intro,
  .contact-thanks .contact-input-intro {
    margin-bottom: 40px;
  }
  .contact-input .contact-input-intro p,
  .contact-confirm .contact-input-intro p,
  .contact-thanks .contact-input-intro p {
    font-size: 0.875rem;
  }
  .contact-input .contact-input-note,
  .contact-confirm .contact-input-note,
  .contact-thanks .contact-input-note {
    margin-bottom: 50px;
    font-size: 14px;
  }
  .contact-input .contact-input-note p,
  .contact-confirm .contact-input-note p,
  .contact-thanks .contact-input-note p {
    font-size: 14px;
  }
  .contact-input .contact-thanks-text,
  .contact-confirm .contact-thanks-text,
  .contact-thanks .contact-thanks-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
  }
  .contact-input .contact-thanks-text h2,
  .contact-confirm .contact-thanks-text h2,
  .contact-thanks .contact-thanks-text h2 {
    margin-bottom: 50px;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
  }
  .contact-input .contact-thanks-text p,
  .contact-confirm .contact-thanks-text p,
  .contact-thanks .contact-thanks-text p {
    font-size: 0.875rem;
  }
  .contact-input .memo,
  .contact-input .err-msg,
  .contact-confirm .memo,
  .contact-confirm .err-msg,
  .contact-thanks .memo,
  .contact-thanks .err-msg {
    display: block;
    margin-top: 10px;
    font-size: 12px;
  }
  .contact-input .err-msg,
  .contact-confirm .err-msg,
  .contact-thanks .err-msg {
    color: #cc0000;
  }
  .contact-input .req,
  .contact-confirm .req,
  .contact-thanks .req {
    display: inline-block;
    margin: 0 5px;
    font-weight: 500;
    color: #cc0000;
  }
  .contact-input .error,
  .contact-confirm .error,
  .contact-thanks .error {
    display: block;
  }
  .contact-input .error input[type=text],
  .contact-input .error input[type=email],
  .contact-input .error input[type=tel],
  .contact-input .error textarea,
  .contact-confirm .error input[type=text],
  .contact-confirm .error input[type=email],
  .contact-confirm .error input[type=tel],
  .contact-confirm .error textarea,
  .contact-thanks .error input[type=text],
  .contact-thanks .error input[type=email],
  .contact-thanks .error input[type=tel],
  .contact-thanks .error textarea {
    background-color: #fcf2f2;
    border: 1px solid #cccccc;
  }
  .contact-input .privacy-check,
  .contact-confirm .privacy-check,
  .contact-thanks .privacy-check {
    text-align: center;
  }
  .contact-input .form-dl,
  .contact-confirm .form-dl,
  .contact-thanks .form-dl {
    max-width: 800px;
    margin: 0 auto 20px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
  }
  .contact-input .form-dl > div,
  .contact-confirm .form-dl > div,
  .contact-thanks .form-dl > div {
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
  }
  .contact-input .form-dl dt,
  .contact-confirm .form-dl dt,
  .contact-thanks .form-dl dt {
    width: 100%;
    padding: 15px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #050033;
    background-color: #f9f5ef;
  }
  .contact-input .form-dl dd,
  .contact-confirm .form-dl dd,
  .contact-thanks .form-dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 0;
    color: #555555;
  }
  .contact-input .form-dl dd p,
  .contact-confirm .form-dl dd p,
  .contact-thanks .form-dl dd p {
    margin-bottom: 0;
  }
  /* ////////////////// 確認 ////////////////// */
  /* ////////////////// 完了 ////////////////// */
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  /* ////////////////// フォーム ////////////////// */
  form {
    margin: 0px auto;
  }
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    border: 1px solid #f5f5f5;
    background-color: #f5f5f5;
    width: 100%;
    padding: 0.4rem;
    border-radius: 0;
  }
  input[type=text].tel,
  input[type=email].tel,
  input[type=tel].tel,
  textarea.tel {
    width: 50%;
  }
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999999;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
    color: #999999;
  }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #999999;
  }
  input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #999999;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder,
  textarea::placeholder {
    color: #999999;
  }
  /* ボタン */
  button,
  input[type=button],
  input[type=submit] {
    text-transform: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    letter-spacing: 3px;
  }
  /* セレクトボックス */
  .select {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .select.block {
    display: block;
    margin-bottom: 0.5em;
  }
  .select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    min-width: 120px;
    padding: 0.75em 50px 0.75em 0.4em;
    width: 100%;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 2px;
    font-size: 15px;
  }
  .select select::-ms-expand {
    display: none;
  }
  .select optgroup {
    font-style: normal;
    font-weight: normal;
  }
  .select::before {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: calc(100% - 2px);
    content: "";
    background-color: #fff;
    border-radius: 0 2px 2px 0;
    z-index: 10;
  }
  .select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    margin-top: -3px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 8px solid #cccccc;
    pointer-events: none;
    z-index: 20;
  }
  /* checkbox radio 共通 */
  input[type=checkbox],
  input[type=radio] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    vertical-align: -0.8rem;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: 0 8px 8px 0;
    outline: none;
    border-radius: 10%;
  }
  input[type=checkbox]::before,
  input[type=radio]::before {
    position: absolute;
    content: "";
    background: #fff;
  }
  input[type=checkbox]::after,
  input[type=radio]::after {
    content: "";
  }
  label {
    cursor: pointer;
  }
  label.label-tel:not(:last-child) {
    margin-right: 80px;
  }
  /* checkbox */
  input[type=checkbox] {
    border: 2px solid #d3a86a;
  }
  input[type=checkbox]::before, input[type=checkbox]::after {
    position: absolute;
    content: "";
    background: #fff;
  }
  input[type=checkbox]::before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  input[type=checkbox]::after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  input[type=checkbox]:checked::before, input[type=checkbox]:checked::after {
    background: #d3a86a;
  }
  input[type=checkbox]:checked::before {
    left: 0;
    top: 9px;
    width: 8px;
    height: 3px;
  }
  input[type=checkbox]:checked::after {
    right: 2px;
    bottom: 2px;
    width: 3px;
    height: 19px;
  }
  input[type=radio] {
    border-radius: 50%;
    border: 2px solid #d3a86a;
  }
  input[type=radio]::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    -webkit-transform: scale(0);
            transform: scale(0);
    background: #d3a86a;
  }
  input[type=radio]:checked::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
  }
  .btn-area .btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 340px;
    overflow: hidden;
    margin: 0 20px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }
  .btn-area .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -45px;
    z-index: -1;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: calc(100% + 45px);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .btn-area .btn:hover::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .btn-area .btn-submit,
  .btn-area .btn-link {
    color: #fff;
    background-color: #d3a86a;
    border: 1px solid #d3a86a;
  }
  .btn-area .btn-submit:hover,
  .btn-area .btn-link:hover {
    color: #d3a86a;
  }
  .btn-area .btn-submit::before,
  .btn-area .btn-link::before {
    border-right: 45px solid transparent;
    border-bottom: 65px solid #fff;
  }
  .btn-area .btn-submit.disactive,
  .btn-area .btn-link.disactive {
    cursor: not-allowed;
    background-color: #fff;
    color: #cccccc;
    border: 1px solid #cccccc;
  }
  .btn-area .btn-submit.disactive::before,
  .btn-area .btn-link.disactive::before {
    display: none;
  }
  .btn-area .btn-submit.disactive:hover,
  .btn-area .btn-link.disactive:hover {
    color: #cccccc;
  }
  .btn-area .btn-back {
    color: #cccccc;
    background-color: #fff;
    border: 1px solid #cccccc;
  }
  .btn-area .btn-back:hover {
    color: white;
  }
  .btn-area .btn-back::before {
    border-right: 45px solid transparent;
    border-bottom: 65px solid #cccccc;
  }
  /* ////////////////// 一覧 ////////////////// */
  .contact-index .contact-intro {
    width: 1200px;
    margin: 0 auto 80px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #6e6e6e;
  }
  .contact-index .contact-intro .btn-g {
    margin-top: 55px;
  }
  .contact-index .contact-intro .btn-g a {
    font-weight: 400;
  }
  .contact-index .contact-index-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
  }
  .contact-index .contact-index-col2 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 580px;
    max-width: 48.5%;
    padding: 28px 18px;
    border: 1px solid #cccccc;
  }
  .contact-index .contact-index-col2 .inner .text h2 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #d3a86a;
    line-height: 1.5em;
    border-left: 5px solid #d3a86a;
  }
  .contact-index .contact-index-col2 .inner .text p {
    font-weight: 400;
    color: #6e6e6e;
  }
  .contact-index .contact-index-col2 .inner .text small {
    font-size: 14px;
  }
  .contact-index .contact-index-col2 .inner .btn-b {
    margin-top: 10px;
  }
  .contact-index .contact-index-col2 .inner .btn-b a {
    width: 100%;
    font-weight: 400;
  }
  /* ////////////////// 入力 ////////////////// */
  .contact-input,
  .contact-confirm,
  .contact-thanks {
    width: 1200px;
    margin: 0 auto;
    color: #6e6e6e;
  }
  .contact-input a,
  .contact-confirm a,
  .contact-thanks a {
    color: #d3a86a;
    text-decoration: underline;
  }
  .contact-input .contact-input-intro,
  .contact-confirm .contact-input-intro,
  .contact-thanks .contact-input-intro {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .contact-input .contact-input-note,
  .contact-confirm .contact-input-note,
  .contact-thanks .contact-input-note {
    margin-bottom: 50px;
    font-size: 14px;
  }
  .contact-input .contact-input-note p,
  .contact-confirm .contact-input-note p,
  .contact-thanks .contact-input-note p {
    font-size: 14px;
  }
  .contact-input .contact-thanks-text,
  .contact-confirm .contact-thanks-text,
  .contact-thanks .contact-thanks-text {
    margin-bottom: 60px;
    font-size: 16px;
    text-align: center;
  }
  .contact-input .contact-thanks-text h2,
  .contact-confirm .contact-thanks-text h2,
  .contact-thanks .contact-thanks-text h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 400;
  }
  .contact-input .contact-thanks-text p,
  .contact-confirm .contact-thanks-text p,
  .contact-thanks .contact-thanks-text p {
    font-size: 18px;
  }
  .contact-input .memo,
  .contact-input .err-msg,
  .contact-confirm .memo,
  .contact-confirm .err-msg,
  .contact-thanks .memo,
  .contact-thanks .err-msg {
    display: block;
    margin-top: 10px;
    font-size: 12px;
  }
  .contact-input .err-msg,
  .contact-confirm .err-msg,
  .contact-thanks .err-msg {
    color: #cc0000;
  }
  .contact-input .req,
  .contact-confirm .req,
  .contact-thanks .req {
    display: inline-block;
    margin: 0 5px;
    font-weight: 500;
    color: #cc0000;
  }
  .contact-input .error,
  .contact-confirm .error,
  .contact-thanks .error {
    display: block;
  }
  .contact-input .error input[type=text],
  .contact-input .error input[type=email],
  .contact-input .error input[type=tel],
  .contact-input .error textarea,
  .contact-confirm .error input[type=text],
  .contact-confirm .error input[type=email],
  .contact-confirm .error input[type=tel],
  .contact-confirm .error textarea,
  .contact-thanks .error input[type=text],
  .contact-thanks .error input[type=email],
  .contact-thanks .error input[type=tel],
  .contact-thanks .error textarea {
    background-color: #fcf2f2;
    border: 1px solid #cccccc;
  }
  .contact-input .privacy-check,
  .contact-confirm .privacy-check,
  .contact-thanks .privacy-check {
    text-align: center;
  }
  .contact-input .form-dl,
  .contact-confirm .form-dl,
  .contact-thanks .form-dl {
    margin-bottom: 35px;
    border-top: 1px solid #eeeeee;
  }
  .contact-input .form-dl > div,
  .contact-confirm .form-dl > div,
  .contact-thanks .form-dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eeeeee;
  }
  .contact-input .form-dl dt,
  .contact-confirm .form-dl dt,
  .contact-thanks .form-dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 250px;
    padding: 20px;
    font-weight: 400;
    color: #050033;
    background-color: #f9f5ef;
  }
  .contact-input .form-dl dd,
  .contact-confirm .form-dl dd,
  .contact-thanks .form-dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
    color: #555555;
  }
  .contact-input .form-dl dd p,
  .contact-confirm .form-dl dd p,
  .contact-thanks .form-dl dd p {
    margin-bottom: 0;
  }
  /* ////////////////// 確認 ////////////////// */
  /* ////////////////// 完了 ////////////////// */
}