@charset "UTF-8";
/*===============================================
 *	ブラウザリセット
===============================================*/
body {
  font-size: 100%;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  letter-spacing: 0.05em;
  height: 100%;
  position: relative;
}

table {
  font-size: inherit;
}

select, input, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre, code {
  font: 115% monospace;
  font-size: 100%;
}

br {
  letter-spacing: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

strong, th {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

th, td {
  text-align: left;
  border: none;
  font-weight: normal;
}

hr {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
  letter-spacing: 0.05em;
}

img, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul, ol, dl {
  margin: 0;
  list-style-position: outside;
  list-style-type: none;
}

li, dt, dd {
  font-size: 100%;
}

dt {
  font-weight: normal;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

form, input {
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
}

figure {
  margin: 0;
}

img {
  height: auto;
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*====================== clearFix ======================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*=============================================== *
	パターン
===============================================*/
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.row-rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.space-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.js-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.al-base {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*===============================================

 *	common

===============================================*/

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}

html body {
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

a {
  color: #0071B4;
  border-bottom: 1px solid #0071B4;
  outline: none;
  text-decoration: none;
}

a:hover {
  border-bottom: none;
}

em {
  font-weight: bold;
}

.sp {
  display: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.robot {
  font-family: 'Robot';
}

.annotation_txt {
  font-size: 14px;
  line-height: 1.75;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media only screen and (max-width: 1024px) {
  html body {
    font-size: 16px;
  }
  .inner {
    margin: 0 auto;
    max-width: initial;
    width: 94%;
  }
}

@media only screen and (max-width: 568px) {
  html body {
    font-size: 15px;
    letter-spacing: 0.03em;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
  }
  .inner {
    margin: 0 auto;
    width: 89.4vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_center {
    text-align: center;
  }
  .annotation_txt {
    font-size: 10px;
  }
}

/*===============================================
 *	br
===============================================*/
@media screen and (min-width: 1025px) {
  .br-pc {
    display: block;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-sp {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
}

/*===============================================
 *	パンくず
===============================================*/
@font-face {
  font-family: 'icon';
  src: url("../fonts/icon.eot?n1r1w2");
  src: url("../fonts/icon.eot?n1r1w2#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?n1r1w2") format("truetype"), url("../fonts/icon.woff?n1r1w2") format("woff"), url("../fonts/icon.svg?n1r1w2#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.bread_box {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto;
}

.bread_box ul {
  gap: 0 18px;
}

.bread_box li {
  font-size: 14px;
}

.bread_box li:not(.current)::after {
  content: '/';
  color: #aaa;
  padding-left: 16px;
}

.bread_box a {
  border-bottom: 1px solid #0071B4;
}

@media only screen and (max-width: 960px) {
  .bread_box {
    width: 92%;
  }
  .bread_box span {
    font-size: 13px;
  }
}

@media only screen and (max-width: 568px) {
  .bread_box {
    display: none;
  }
}

/*===============================================
 *	header
===============================================*/
.lp_header .row {
  padding: 14px 60px 12px;
}

.lp_header .hd_logo {
  border-bottom: none;
  width: 32%;
}
@media only screen and (max-width: 960px) {
  .lp_header .hd_logo {
    width: 42%;
  }
}
@media only screen and (max-width: 960px) {
  .lp_header .row {
    padding: 14px 4.5vw 12px;
  }
  .lp_header .hd_discount {
    width: 28%;
  }
}
@media only screen and (max-width: 568px) {
  .lp_header .row {
    padding: 10px 15px 10px;
  }
  .lp_header .hd_logo {
    width: 60%;
  }
  .lp_header .hd_discount {
    width: 34%;
  }
}
/*===============================================
 *	main_ttl_box
===============================================*/
.main_ttl_box {
  background: url(../img/lp-form/main_ttl_bg.png) no-repeat center;
  background-size: cover;
  padding: 55px 0;
}

.main_ttl_box .main_ttl {
  color: #fff;
  font-size: 40px;
  line-height: 1.4;
}

.main_ttl_box .main_ttl > span {
  display: block;
}

.main_ttl_box .main_ttl .txt_sub {
  font-size: 0.625em;
}

.main_ttl_box .txt_yellow {
  color: #F4E621;
}

@media only screen and (max-width: 568px) {
  .main_ttl_box {
    padding: 25px 0;
  }
  .main_ttl_box .main_ttl {
    font-size: 30px;
  }
}

/*===============================================
 *	main form
===============================================*/
.main {
  background: #EAEAEA;
  padding: 20px 0 0;
}

.main .camp_bnr {
  display: block;
  margin: 0 auto;
  max-width: 620px;
}
.mw_wp_form_confirm .camp_bnr {
  display: none;
}

.form_wrapper {
  background: #fff;
  width: 84%;
  max-width: 1000px;
  margin: 62px auto 0;
  padding: 50px 50px 80px;
}

.lpform_table {
  border-top: 1px solid #E5E5E5;
  margin-top: 50px;
  width: 100%;
}

.lpform_table th, .lpform_table td {
  border-bottom: 1px solid #E5E5E5;
}

.lpform_table th {
  width: 250px;
  font-weight: bold;
  vertical-align: text-top;
  padding: 30px 20px 0;
}

.lpform_table tr:nth-child(1) th, .lpform_table tr:nth-child(3) th, .lpform_table tr:nth-child(4) th, .mw_wp_form_confirm .lpform_table tr:nth-child(5) th {
  vertical-align: middle;
  padding-top: 0;
}

.lpform_table th .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10px;
}

.lpform_table td {
  padding: 30px 20px 30px 0;
}

.lpform_table .input_name {
  padding-top: 3px;
  font-weight: bold;
}

.lpform_table .must, .lpform_table .any {
  font-size: 14px;
  font-weight: normal;
  border-radius: 50px;
  width: 70px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.lpform_table .must {
  color: #fff;
  background: #FF5554;
}

.lpform_table .any {
  background: #ddd;
}

.lpform_table .base_input {
  width: 100%;
  background: #F3F3F3;
  height: 70px;
  border: none;
  border-radius: 0;
  padding: 0 30px;
  font-size: 18px;
  font-family: 'Noto Sans JP';
  letter-spacing: 0.05em;
  font-weight: normal;
}

.lpform_table .base_input::-webkit-input-placeholder {
  color: #bbb;
  font-weight: normal;
}

.lpform_table .base_input:-ms-input-placeholder {
  color: #bbb;
  font-weight: normal;
}

.lpform_table .base_input::-ms-input-placeholder {
  color: #bbb;
  font-weight: normal;
}

.lpform_table .base_input::placeholder {
  color: #bbb;
  font-weight: normal;
}

.lpform_table .zip_box {
  height: 70px;
  width: 500px;
  background: #F3F3F3;
  position: relative;
  margin-bottom: 20px;
}

.lpform_table .zip_box #zip {
  padding-left: 60px;
}

.lpform_table .zip_box label {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.lpform_table .zip_txt.txt02 {
  margin: 5px 0 28px;
  position: relative;
}

.lpform_table .zip_txt.txt02::before {
  content: '';
  background: url(../img/lp-form/icon_link.png) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
}

.lpform_table .zip_txt.txt02 a {
  margin-left: 22px;
}

.lpform_table #pref {
  height: 70px;
  width: 400px;
  border: 1px solid #333;
  font-size: 18px;
  font-family: 'Noto Sans JP';
  padding-left: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../img/lp-form/icon_arrow_down_gray.svg) no-repeat right 20px center;
  background-size: 12px 7px;
  margin-bottom: 30px;
}

.lpform_table #addr {
  margin-bottom: 20px;
}

.lpform_table .check_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}

.lpform_table .check_item_wrapper .mwform-checkbox-field {
  width: 30%;
}

.lpform_table .check_item_wrapper .mwform-checkbox-field > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lpform_table .check_item_wrapper .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.lpform_table .check_item_wrapper .mwform-checkbox-field input {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.lpform_table .uploads li {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.lpform_table .uploads .img_box {
  width: 152px;
  height: 152px;
  border: 1px solid #333;
  margin-right: 20px;
  position: relative;
  display: flex;
}

.lpform_table .uploads .img_box img {
  object-fit: scale-down;
  /* width: 150px;
  height: 150px; */
}

.lpform_table .uploads .operate_box > span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

.lpform_table .uploads .upload_box {

}

.lpform_table .uploads .upload_box [type="file"] {
  display: none !important;
}

.lpform_table .uploads .upload_box .upload_btn {
  color: #fff;
  background: #0071B4;
  width: 250px;
  height: 60px;
  display: block;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}

.lpform_table .uploads .delete_image_btn {
  display: none;
  background: #DDDDDD;
  border-radius: 0;
  border: none;
  cursor: pointer;
  position: relative;
  /* left: 0;
  top: 0; */
  font-size: 18px;
  font-family: 'Noto Sans JP';
  text-align: center;
  width: 250px;
  height: 60px;
}

.lpform_table .uploads .upload_box .filename {
  display: none;
}

.lpform_table .uploads .upload_box .mwform-file-delete {
  display: none;
}

.form_txt {
  margin: 30px 0 30px;
  line-height: 2.0;
  font-weight: 500;
}

#form_btn ul {
  gap: 0 10px;
}

#form_btn input, .sent_content .top_btn {
  width: 300px;
  height: 67px;
  border: none;
  border-radius: 10px;
  background: url(../img/lp-form/icon_arrow_right_black.svg) no-repeat, -webkit-gradient(linear, left bottom, left top, from(#dddddd), to(whitesmoke));
  background: url(../img/lp-form/icon_arrow_right_black.svg) no-repeat, linear-gradient(0deg, #dddddd 0%, whitesmoke 100%);
  background-position: right 20px top 50%;
  font-size: 18px;
  font-family: 'Noto Sans JP';
  font-weight: 500;
  color: #333;
  -webkit-box-shadow: 0px 3px 0px #bbb;
          box-shadow: 0px 3px 0px #bbb;
  cursor: pointer;
  position: relative;
}

.mw_wp_form_confirm #form_btn .next input {
  background: url(../img/lp-form/icon_arrow_right_white.svg) no-repeat, -webkit-gradient(linear, left bottom, left top, from(#ff5554), to(#ff7776));
  background: url(../img/lp-form/icon_arrow_right_white.svg) no-repeat, linear-gradient(0deg, #ff5554 0%, #ff7776 100%);
  background-position: right 20px top 50%;
  color: #fff;
  -webkit-box-shadow: 0px 3px 0px #DC0B0A;
          box-shadow: 0px 3px 0px #DC0B0A;
}
.mw_wp_form_input .confirm_txt {
  display: none;
}
.mw_wp_form_confirm .zip_txt{
  display: none;
}
.mw_wp_form_confirm .annotation_txt {
  display: none;
}
.mw_wp_form_confirm .zip_box {
  background: none;
  height: initial;
  margin-bottom: 0;
}
.mw_wp_form_confirm .zip_box label {
  position: relative;
  left: initial;
  top: initial;
  transform: translateY(0);
}
.mw_wp_form_confirm .uploads {
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
}
.mw_wp_form_confirm .uploads .img_box {
  display: none;
}
/* .mw_wp_form_confirm .uploads .upload_box label {
  background: none;
  height: initial;
  width: initial;
} */
.mw_wp_form_confirm .lpform_table .uploads .upload_box .upload_btn {
  display: none;
}
.mw_wp_form_confirm .lpform_table .uploads .delete_image_btn {
  display: none !important;
}
.mw_wp_form_confirm .mw-wp-form_image {
  border: 1px solid #333;
  width: 152px;
  height: 152px;
  display: flex;
}
.mw_wp_form_confirm .mw-wp-form_image img {
  object-fit: scale-down;
}
.mw_wp_form_confirm .form_txt {
  display: none;
}
.mw_wp_form_confirm #form_btn {
  margin-top: 30px;
}
.mw_wp_form_input .mw-wp-form_image img {
  position: absolute;
  z-index: -1;
  /* display: none; */
}

@media only screen and (max-width: 960px) {
  .form_wrapper {
    width: 92%;
    padding: 6vw 6vw 8vw;
    margin-top: 6.5vw;
  }
  .lpform_table th {
    padding: 30px 10px 0;
  }
  .lpform_table th .row {
    flex-wrap: wrap;
  }
  .lpform_table .base_input {
    font-size: 16px;
  }
  .lpform_table #pref {
    font-size: 16px;
  }
  .lpform_table .zip_box {
    width: 370px;
  }
  .lpform_table .zip_txt {
    font-size: 14px;
  }
  .lpform_table .check_item_wrapper .mwform-checkbox-field {
    width: 33%;
  }
  .lpform_table .check_item_wrapper .mwform-checkbox-field input {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
  
}

@media only screen and (max-width: 568px) {
  .form_wrapper {
    padding: 15px 15px 20px;
    margin-top: 0;
  }
  .lpform_table {
    border: none;
    margin-top: 15px;
  }
  .lpform_table th, .lpform_table td {
    display: block;
    width: 100%;
  }
  .lpform_table th {
    border-bottom: 0;
    padding: 15px 0 8px !important;
  }
  .lpform_table td {
    padding: 0 0 15px;
  }
  .lpform_table .must, .lpform_table .any {
    font-size: 10px;
    width: 50px;
    height: 23px;
    line-height: 23px;
  }
  .lpform_table .input_name {
    font-size: 13px;
  }
  .lpform_table .base_input {
    height: 50px;
    font-size: 14px;
    padding: 0 15px;
  }
  .lpform_table .zip_box {
    width: 80%;
    height: 50px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .lpform_table .zip_box:has(span) {
    height: 60px;
  }
  .lpform_table .zip_box .error {
    background: #fff;
  }
  .lpform_table .zip_box #zip {
    padding-left: 37px;
  }
  .lpform_table .zip_box label {
    left: 15px;
  }
  .lpform_table .zip_txt {
    font-size: 10px;
  }
  .lpform_table .zip_txt.txt02 {
    margin-bottom: 20px;
  }
  .lpform_table .zip_txt.txt02::before {
    width: 10px;
    height: 10px;
  }
  .lpform_table .zip_txt.txt02 a {
    margin-left: 14px;
  }
  .lpform_table #pref {
    width: 64%;
    height: 50px;
    font-size: 14px;
    padding-left: 15px;
    background-position: right 10px center;
    margin-bottom: 10px;
  }
  .lpform_table #addr {
    margin-bottom: 10px;
  }
  .lpform_table .check_item_wrapper .mwform-checkbox-field {
    width: 50%;
  }
  .lpform_table .check_item_wrapper .mwform-checkbox-field input {
    margin-right: 7px;
  }
  .lpform_table .check_item_wrapper .mwform-checkbox-field-text {
    font-size: 13px;
    padding-top: 3px;
  }
  .lpform_table .uploads li {
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .lpform_table .uploads .img_box {
    width: 100px;
    height: 100px;
    margin: 0;
  }
  .lpform_table .uploads .img_box img {
    width: 100%;
    height: 100%;
  }
  .lpform_table .uploads .operate_box {
    width: calc(100% - 100px - 4.75%);
  }
  .lpform_table .uploads .operate_box > span {
    font-size: 14px;
  }
  .lpform_table .uploads .upload_box .upload_btn {
    width: 100%;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
  }
  .lpform_table .uploads .delete_image_btn {
    width: 100%;
    font-size: 14px;
    height: 50px;
  }
  .form_txt {
    font-size: 13px;
    margin: 18px 0 18px;
    line-height: 1.8;
  }
  #form_btn ul {
    flex-direction: column-reverse;
    gap: 15px 0;
  }
  #form_btn input, .sent_content .top_btn {
    width: 100%;
  }
  .mw_wp_form_confirm .zip_box {
    height: initial;
    margin-bottom: 0;

  }
  .mw_wp_form_confirm .zip_box label {
    left: initial;
  }
  .mw_wp_form_confirm .uploads {
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .mw_wp_form_confirm .uploads .upload_box label {
    height: initial;
    width: initial;
  }
  .mw_wp_form_confirm .uploads .operate_box {
    width: initial;
  }
  .mw_wp_form_confirm #form_btn {
    margin-top: 15px;
  }
}

/*===============================================
 *	現行フォーム用にスタイル調整
===============================================*/
.bread_box {
  max-width: 1120px;
}
.main {
  background: #fff;
}
.form_wrapper {
  padding: 0;
  max-width: 1120px;
  background: none;
  margin-bottom: 100px;
}
#contact_form tr:first-child td {
  border-radius: 0 20px 0 0;
}
#contact_form tr:last-child td {
  border-radius: 0 0 20px 0;
}
#contact_form table th span.hissu {
  background: #f5253e;
}
#contact_form #form_btn input {
  background: #f5253e;
  box-shadow: 0px 6px 1px #b91b2e;
}
#form_btn input {
  width: 100%;
}
#contact_form .form_txt a {
  color: #0071B4;
  border-bottom: 1px solid #0071B4;
}
#contact_form .form_txt a:hover {
  border-bottom: none;
}
.textarea_box {
  position: relative;
  background: #f5f5f5;
  z-index: 1;
 }
 .textarea_box textarea {
  background: transparent !important;
 }
 .textarea_box #placeholder_txt {
  position: absolute;
  top: 9px;
  left: 15px;
  color: #999;
  z-index: -1;
 }
 .textarea_box #placeholder_txt.none {
  display: none;
 }
@media only screen and (max-width: 568px) {
  .form_wrapper {
    margin-bottom: 58px;
    width: 89.4vw;
  }
  #contact_form tr:first-child td {
    border-radius: 0;
  }
  #contact_form tr:last-child td {
    border-radius: 0;
  }
  #contact_form table th span {
    padding: 2px 8px 3px;
  }
  .textarea_box #placeholder_txt {
    font-size: 14px;
  }
}

/*===============================================
 *	sent_content
===============================================*/
.main.sent {
  background: #fff;
}
.sent_content {
  background: #fff;
  padding: 50px 50px 80px;
}
.sent_content h2 {
  font-size: 25px;
  margin-bottom: 30px;
}
.sent_content p {
  line-height: 1.75;
}
.sent_content .top_btn {
  display: flex;
  margin: 50px auto;
  align-items: center;
  justify-content: center;
}
.main .company_info {
  background: #EAEAEA;
}

@media only screen and (max-width: 568px) {
  .sent_content {
    padding: 15px 15px 20px;
  }
  .sent_content h2 {
    font-size: 20px;
  }
  .sent_content p {
    font-size: 14px;
    text-align: left;
  }
  .sent_content .top_btn {
    margin: 30px auto;
  }
}

/*===============================================
 *	footer
===============================================*/
.company_info {
  padding: 90px 0 100px;
}

.company_info .company_ttl {
  font-size: 40px;
  margin-bottom: 30px;
}

.company_info .company_ttl span {
  display: block;
}

.company_info .company_ttl .sub_ttl {
  font-size: 0.75em;
}

.company_info p {
  line-height: 1.8;
}

.copyright {
  color: #fff;
  background: #4D4D4D;
  padding: 25px 0 25px;
}
@media only screen and (max-width: 960px) {
  .company_info {
    padding: 9vw 0 10vw;
  }
  .company_info .company_ttl {
    font-size: 32px;
  }
  .copyright {
    font-size: 14px;
  }
}
@media only screen and (max-width: 568px) {
  .company_info .company_ttl {
    font-size: 20px;
  }
  .copyright {
    font-size: 11px;
  }
}
/*# sourceMappingURL=lp-form.css.map */