<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Contact CSS */
/* _setting CSS */
/* Desktops and laptops */
@media print, screen and (min-width: 751px) {
  body {
    background-color: transparent;
  }

  .inner {
    width: 1140px;
    margin: 0 auto;
  }

  .lead {
    font-size: 2.4rem;
    line-height: 1.8;
    color: #296cb7;
    text-align: center;
    margin-bottom: 60px;
  }

  .caution {
    text-align: center;
    margin-bottom: 85px;
  }
  .caution .desc {
    font-size: 1.6rem;
    line-height: 2;
    border: 1px solid #333;
    padding: 55px 0;
  }
  .caution .desc a {
    color: #296cb7;
    text-decoration: underline;
  }
  .caution .desc a:hover {
    text-decoration: none;
  }

  .table_wrap {
    width: 100%;
    background-color: #f8f8f8;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-bottom: 80px;
  }

  .table_wrap_confirm {
    padding-bottom: 70px;
  }
  .table_wrap_confirm tr {
    border-bottom: 1px solid #ccc;
  }
  .table_wrap_confirm tr:last-child {
    border-bottom: none;
  }

  .table_contact {
    width: 840px;
    margin: 0 auto;
  }
  .table_contact .required {
    display: inline-block;
    width: 40px;
    color: #fff;
    font-size: 1.3rem;
    line-height: 22px;
    text-align: center;
    background-color: #e91f34;
    border-radius: 2px;
    margin-left: 10px;
  }
  .table_contact .tr_long th {
    vertical-align: top;
    padding-top: 33px;
  }
  .table_contact th {
    width: 240px;
    font-size: 1.6rem;
    text-align: left;
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .table_contact td {
    width: calc(840px - 240px);
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .table_contact td .item_wrap {
    margin-bottom: 25px;
  }
  .table_contact input[type="text"],
  .table_contact input[type="email"],
  .table_contact input[type="tel"],
  .table_contact input[type="num"] {
    border: 1px solid #ccc;
    padding: 10px 5px;
    width: 100%;
  }
  .table_contact input[type="radio"] {
    display: none;
  }
  .table_contact input[type="radio"]:checked + .radio::before {
    opacity: 1;
  }
  .table_contact .input_s {
    width: 140px !important;
    margin-bottom: 10px;
  }
  .table_contact .radio {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 0 0 0 35px;
    margin: 0 30px 0 0;
  }
  .table_contact .radio::before {
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #296cb7;
    content: '';
    opacity: 0;
    z-index: 99;
  }
  .table_contact .radio::after {
    content: '';
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #cdcdcd;
    border-radius: 50%;
    background: #fff;
  }
  .table_contact textarea {
    width: 100%;
    height: 200px;
    line-height: 1.3;
    padding: 10px 5px;
    border: 1px solid #ccc;
  }

  input[type="submit"]:hover {
    opacity: .8;
  }
  input[type="submit"]:disabled {
    background-color: #aaa;
  }
  input[type="submit"]:disabled:hover {
    opacity: 1;
    cursor: auto;
  }

  .privacy {
    margin-bottom: 40px;
  }
  .privacy .privacy_lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .privacy .detail {
    width: 1140px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 40px 0;
    margin: 0 auto;
  }
  .privacy .detail .title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .privacy .detail_inner {
    height: calc(250px - 33px - 33px);
    padding: 0 40px;
    overflow-y: scroll;
  }
  .privacy .list {
    list-style-type: none;
  }
  .privacy .item {
    margin-bottom: 30px;
  }
  .privacy .item:last-child {
    margin-bottom: 0;
  }
  .privacy .item .item_title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .privacy .item .desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .agree_btn {
    position: relative;
    width: 260px;
    margin: 0 auto 35px;
    text-align: center;
    font-size: 1.6rem;
    padding: 0;
    margin-bottom: 70px;
  }
  .agree_btn input[type="checkbox"] {
    display: none;
  }
  .agree_btn .agree_label {
    padding-left: 15px;
  }
  .agree_btn .agree_label:before, .agree_btn .agree_label:after {
    position: absolute;
    content: '';
    display: block;
  }
  .agree_btn .agree_label:before {
    top: -1px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #222;
  }
  .agree_btn .agree_label:after {
    top: -5px;
    left: 7px;
    width: 12px;
    height: 17px;
    border-bottom: 3px solid #296cb7;
    border-right: 3px solid #296cb7;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }

  .agree_btn #agree:checked + .agree_label:after {
    opacity: 1;
  }

  .btn_contact_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btn_contact_wrapper input[type="submit"] {
    margin: 0 40px;
  }

  .btn_contact_wrap {
    position: relative;
    width: 220px;
    margin: 0 auto;
  }
  .btn_contact_wrap:before {
    position: absolute;
    top: 19px;
    right: 23px;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
  }
  .btn_contact_wrap::after {
    position: absolute;
    top: 25px;
    right: 29px;
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    -webkit-transform: rotate(45deg) translate(-1px, 1px);
        -ms-transform: rotate(45deg) translate(-1px, 1px);
            transform: rotate(45deg) translate(-1px, 1px);
  }

  .btn_contact {
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    width: 220px;
    height: 56px;
    background-color: #222;
    color: #fff;
    display: block;
    border-radius: 28px;
    text-decoration: none;
  }
  .btn_contact:hover {
    text-decoration: none;
  }

  .btn_contact2 {
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    width: 220px;
    height: 56px;
    position: relative;
    display: block;
    background-color: #f8f8f8;
    color: #000;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 28px;
  }
  .btn_contact2:hover {
    text-decoration: none;
  }

  .message {
    font-size: 2.4rem;
    color: #296cb7;
    text-align: center;
  }

  .tnks_box {
    width: 1140px;
    background-color: #f8f8f8;
    text-align: center;
    padding: 90px 0;
    margin: 60px auto 80px;
  }
  .tnks_box p {
    font-size: 1.6rem;
    line-height: 2;
  }

  .btn_top {
    width: 220px;
    height: 56px;
    margin: 0 auto;
  }
  .btn_top a {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 10px;
  }
  .btn_top a:before {
    position: absolute;
    top: 19px;
    right: 20px;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
  }
  .btn_top a::after {
    position: absolute;
    top: 25px;
    right: 27px;
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/* Smartphones (portrait and landscape) */
@media screen and (max-width: 750px) {
  body {
    background-color: transparent;
  }

  .inner {
    width: 100%;
    max-width: 89.33333vw;
    margin: 0 auto;
  }

  .lead {
    font-size: 5.33333vw;
    line-height: 1.6;
    color: #296cb7;
    margin-bottom: 6.66667vw;
  }

  .caution {
    background-color: #fff;
    margin-bottom: 10.66667vw;
  }
  .caution .desc {
    font-size: 3.73333vw;
    line-height: 2;
    border: 0.26667vw solid #ccc;
    padding: 4.66667vw 5.33333vw;
  }
  .caution .desc a {
    color: #296cb7;
    text-decoration: underline;
  }
  .caution .desc a:hover {
    text-decoration: none;
  }

  .table_wrap {
    width: 100%;
    background-color: #f8f8f8;
    padding: 8vw 5.33333vw 0;
    margin-bottom: 9.33333vw;
  }

  .table_wrap_confirm tr {
    border-bottom: 0.26667vw solid #ccc;
  }
  .table_wrap_confirm tr:last-child {
    border-bottom: none;
  }
  .table_wrap_confirm th {
    padding-top: 6vw;
  }
  .table_wrap_confirm td {
    padding-bottom: 5.33333vw !important;
  }

  .table_contact {
    width: 100%;
    margin: 0 auto;
  }
  .table_contact .required {
    display: inline-block;
    width: 10.66667vw;
    color: #fff;
    font-size: 3.2vw;
    font-weight: bold;
    text-align: center;
    background-color: #e91f34;
    padding: 1.06667vw 1.33333vw;
    margin-left: 2.66667vw;
  }
  .table_contact th, .table_contact td {
    display: block;
  }
  .table_contact th {
    width: 100%;
    font-size: 4.26667vw;
    text-align: left;
    padding-bottom: 4vw;
  }
  .table_contact td {
    width: 100%;
    padding-bottom: 10.66667vw;
  }
  .table_contact td .item_wrap {
    margin-bottom: 5.33333vw;
  }
  .table_contact td .item_wrap:last-child {
    margin-bottom: 0;
  }
  .table_contact input[type="text"],
  .table_contact input[type="email"],
  .table_contact input[type="tel"],
  .table_contact input[type="num"] {
    border: 0.26667vw solid #ccc;
    padding: 2vw 1.33333vw;
    width: 100%;
  }
  .table_contact input[type="radio"] {
    display: none;
  }
  .table_contact input[type="radio"]:checked + .radio::before {
    opacity: 1;
  }
  .table_contact .input_s {
    width: 140px !important;
    margin-bottom: 10px;
  }
  .table_contact .radio {
    position: relative;
    display: inline-block;
    font-size: 3.73333vw;
    padding: 0 0 0 8vw;
  }
  .table_contact .radio::before {
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: 1.33333vw;
    width: 2.66667vw;
    height: 2.66667vw;
    border-radius: 50%;
    background: #296cb7;
    content: '';
    opacity: 0;
    z-index: 99;
  }
  .table_contact .radio::after {
    content: '';
    position: absolute;
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5.33333vw;
    height: 5.33333vw;
    border: 0.26667vw solid #cdcdcd;
    border-radius: 50%;
    background: #fff;
  }
  .table_contact textarea {
    width: 100%;
    height: 200px;
    line-height: 1.3;
    padding: 10px 5px;
    border: 1px solid #ccc;
  }

  input[type="submit"]:hover {
    opacity: .8;
  }
  input[type="submit"]:disabled {
    background-color: #aaa;
  }
  input[type="submit"]:disabled:hover {
    opacity: 1;
    cursor: auto;
  }

  .privacy {
    margin-bottom: 8vw;
  }
  .privacy .privacy_lead {
    text-align: center;
    font-size: 4vw;
    line-height: 1.8;
    margin-bottom: 8vw;
  }
  .privacy .detail {
    width: 100%;
    border: 0.26667vw solid #ccc;
    background-color: #fff;
    padding: 8vw 0;
    margin: 0 auto;
  }
  .privacy .detail .title {
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 5.33333vw;
  }
  .privacy .detail_inner {
    height: 80vw;
    padding: 0 5.33333vw;
    overflow-y: scroll;
  }
  .privacy .list {
    list-style-type: none;
  }
  .privacy .item {
    margin-bottom: 5.33333vw;
  }
  .privacy .item:last-child {
    margin-bottom: 0;
  }
  .privacy .item .item_title {
    font-size: 3.73333vw;
    font-weight: bold;
    margin-bottom: 2.4vw;
  }
  .privacy .item .desc {
    font-size: 3.46667vw;
    line-height: 1.8;
  }

  .agree_btn {
    position: relative;
    width: 66.66667vw;
    margin: 0 auto 8vw;
    text-align: center;
    font-size: 4.26667vw;
    padding: 0;
    margin-bottom: 10.66667vw;
  }
  .agree_btn input[type="checkbox"] {
    display: none;
  }
  .agree_btn .agree_label {
    padding-left: 4vw;
  }
  .agree_btn .agree_label:before, .agree_btn .agree_label:after {
    position: absolute;
    content: '';
    display: block;
  }
  .agree_btn .agree_label:before {
    top: -.2vw;
    left: 0;
    width: 5.33333vw;
    height: 5.33333vw;
    background-color: #fff;
    border: 0.53333vw solid #222;
  }
  .agree_btn .agree_label:after {
    top: -.4vw;
    left: 1.86667vw;
    width: 2.66667vw;
    height: 4vw;
    border-bottom: 0.8vw solid #296cb7;
    border-right: 0.8vw solid #296cb7;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }

  .agree_btn #agree:checked + .agree_label:after {
    opacity: 1;
  }

  .btn_contact_wrapper {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .btn_contact_wrap {
    position: relative;
    width: 220px;
    margin: 0 auto;
  }
  .btn_contact_wrap:before {
    position: absolute;
    top: 19px;
    right: 23px;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
  }
  .btn_contact_wrap::after {
    position: absolute;
    top: 25px;
    right: 29px;
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    -webkit-transform: rotate(45deg) translate(-1px, 1px);
        -ms-transform: rotate(45deg) translate(-1px, 1px);
            transform: rotate(45deg) translate(-1px, 1px);
  }

  .btn_contact {
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    width: 100%;
    background-color: #222;
    color: #fff;
    display: block;
    border-radius: 6.66667vw;
    text-decoration: none;
    padding: 5.06667vw 0;
  }
  .btn_contact:hover {
    text-decoration: none;
  }

  .btn_contact2 {
    outline: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    width: 100%;
    position: relative;
    display: block;
    background-color: #f8f8f8;
    color: #000;
    font-size: 3.73333vw;
    border: 0.26667vw solid #ccc;
    border-radius: 6.66667vw;
    padding: 5.06667vw 0;
    margin-top: 5.33333vw;
  }
  .btn_contact2:hover {
    text-decoration: none;
  }

  .message {
    font-size: 5.33333vw;
    color: #296cb7;
    text-align: center;
  }

  .tnks_box {
    width: 100%;
    background-color: #f8f8f8;
    padding: 6.66667vw 5.33333vw;
    margin: 8vw auto 13.33333vw;
  }
  .tnks_box p {
    font-size: 3.73333vw;
    line-height: 2;
  }

  .btn_top {
    width: 100%;
    margin: 0 auto;
  }
  .btn_top a {
    position: relative;
    width: 100%;
    padding: 5.06667vw 0;
    padding: 20px 10px;
  }
  .btn_top a:before {
    position: absolute;
    top: 4vw;
    right: 5.33333vw;
    content: '';
    display: inline-block;
    width: 6.4vw;
    height: 6.4vw;
    border-radius: 50%;
    background-color: #fff;
  }
  .btn_top a::after {
    position: absolute;
    top: 5.86667vw;
    right: 7.73333vw;
    content: '';
    display: inline-block;
    width: 2.4vw;
    height: 2.4vw;
    border-top: 0.53333vw solid #222;
    border-right: 0.53333vw solid #222;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
</pre></body></html>