@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: form.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
div#mfp_overlay {
	@include sp() {
		padding: 20px 0 30px;
	}

	&_inner {
		@include sp() {
			@include box-sizing(border-box);
			position: fixed;
			width: 90%;
			height: 90%;
			left: 50%;
			top: 50%;
			z-index: 99;
			transform: translate(-50%, -50%);
			overflow-y: scroll;
		}
	}
}

table#mfp_confirm_table {
	tr {
		th,
		td {
			@include sp() {
				display: list-item;
				list-style: none;
			}
		}

		th {
			@include sp() {
				width: auto;
			}
		}

		td {
			@include sp() {
				padding-left: 22px;
				border-top: none;
			}
		}
	}
}

div.mfp_buttons button {
	@include sp() {
		font-size: 18px;
	}
}
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover > * {
  text-decoration: none;
}

@media screen and (min-width: 1025px) {
  body {
    overflow-x: initial;
  }
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
@media screen and (max-width: 1024px) {
  #container {
    overflow-x: hidden;
  }
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 1025px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .pc_none {
    display: block;
  }
}

.topicpath-list {
  display: flex;
  width: 1050px;
  margin: 10px auto 60px;
}
@media screen and (max-width: 1050px) {
  .topicpath-list {
    display: none;
  }
}

.topicpath-item a {
  font-size: 13px;
}
.topicpath-item:not(:last-child) a:after {
  content: "＞";
  margin: 0 3px;
}

.lower .main-visual {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 300px;
  margin-top: 130px;
  color: #231815;
  text-align: center;
}
@media only screen and (max-width: 1140px) {
  .lower .main-visual {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .lower .main-visual {
    display: block;
    align-items: inherit;
    width: auto;
    height: 0;
    padding-top: 40%;
  }
}
@media only screen and (max-width: 570px) {
  .lower .main-visual {
    height: 220px;
    padding-top: 0;
  }
}
.lower .main-visual-title {
  position: relative;
  z-index: 1;
  width: 1050px;
  margin: 20px auto 0;
  color: #FFF;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #000;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .lower .main-visual-title {
    font-size: 30px;
    font-size: 8vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
}
.lower .main-visual-text {
  display: block;
  width: 390px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.85714;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
@media screen and (max-width: 1024px) {
  .lower .main-visual-text {
    display: none;
  }
}
.lower .box {
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .lower .box {
    padding: 8% 0 10%;
  }
}
.lower .box-title {
  position: relative;
  margin-bottom: 70px;
  color: #313940;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lower .box-title {
    margin: 0 0 10%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.lower .box-title:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 74px;
  height: 4px;
  margin: 0 auto;
  background: #C41C1C;
}
@media screen and (max-width: 1024px) {
  .lower .box-title:before {
    bottom: -70%;
    width: 9.86667%;
    height: 2px;
  }
}
.lower .box-title em {
  color: #C41C1C;
  font-style: normal;
}
.lower .box-lead {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lower .box-lead {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.53846;
  }
}

.topicpath-list.-thanks {
  margin-bottom: 0;
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .footer-contact {
    padding: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact div div:first-child p, .footer-contact div div:nth-child(2) p {
    margin: 0 0 5%;
    padding: 2%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
@media only screen and (max-width: 570px) {
  .footer-contact div div:first-child p:before, .footer-contact div div:nth-child(2) p:before {
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact div div:nth-child(2) {
    padding-top: 7%;
  }
}

@media screen and (max-width: 1024px) {
  .footer-contact2 .form-item {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact2 .form-item a {
    padding: 5% 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact2 .form-item a:before {
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    font-size: 20px;
    font-size: 5.33333vw;
  }
}

.footer-contact.-form {
  width: 1050px;
  margin: 50px auto 30px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form {
    width: auto;
    margin: 0;
  }
}
.footer-contact.-form .viewport-l {
  padding: 15px 30px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .viewport-l {
    padding: 5%;
  }
}
.footer-contact.-form .viewport-l div:first-child {
  width: 430px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .viewport-l div:first-child {
    width: 100%;
  }
}
.footer-contact.-form .viewport-l div:last-child {
  width: 540px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .viewport-l div:last-child {
    width: 100%;
  }
}
.footer-contact.-form .viewport-l div:last-child p {
  margin-bottom: 38px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .viewport-l div:last-child p {
    margin-bottom: 5%;
  }
}
.footer-contact.-form .viewport-l p {
  margin: 0 0 20px;
  padding: 6px 10px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .viewport-l p {
    margin: 0 0 5%;
    padding: 2%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.footer-contact.-form .viewport-l p em {
  color: #FDB10B;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-list {
    flex-wrap: wrap;
  }
}
.footer-contact.-form .form-item {
  width: 32%;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-item:first-child, .footer-contact.-form .form-item:nth-child(2) {
    width: 48%;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-item:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-item:last-child a {
    padding: 2.4% 0;
  }
}
.footer-contact.-form .form-item a {
  padding: 8px 0;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-item a {
    padding: 5% 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.footer-contact.-form .form-item a:before {
  right: 0;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .footer-contact.-form .form-item a:before {
    right: 5px;
    font-size: 20px;
    font-size: 5.33333vw;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.main-visual {
  background: url("../img/form-ie/main_visual.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main-visual {
    background: url("../img/form-ie/main_visual_sp.jpg") center top no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.main-visual.-kigyou {
  background: url("../img/form-kigyou/main_visual.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main-visual.-kigyou {
    background: url("../img/form-kigyou/main_visual_sp.jpg") center top no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.main-visual.-survey {
  background: url("../img/form-survey/main_visual.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main-visual.-survey {
    background: url("../img/form-survey/main_visual_sp.jpg") center top no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
.main-visual.-campaign {
  background: url("../img/campaign_1/main_visual.jpg") center top no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main-visual.-campaign {
    background: url("../img/campaign_1/main_visual_sp.jpg") center top no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

.main-notice {
  margin-bottom: 60px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .main-notice {
    margin: 5% 0;
    padding: 0 5%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.92308;
    text-align: left;
  }
}
.main-notice em {
  color: #E50012;
  font-style: normal;
}
.main-notice a {
  color: #FCB227;
  text-decoration: underline;
}
.main-notice a:hover {
  color: #FFBE31;
  text-decoration: none;
}

form#mailformpro {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  form#mailformpro input,
  form#mailformpro textarea {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

.request,
.survey,
.campaign {
  padding-top: 35px !important;
  background: #FFE9E9;
}
@media screen and (max-width: 1024px) {
  .request,
  .survey,
  .campaign {
    padding: 0 0 20% !important;
    background: #FFF;
  }
}
.request.-thanks,
.survey.-thanks,
.campaign.-thanks {
  margin-top: 10px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .request.-thanks,
  .survey.-thanks,
  .campaign.-thanks {
    margin-top: 0;
  }
}
.request-inner,
.survey-inner,
.campaign-inner {
  width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .request-inner,
  .survey-inner,
  .campaign-inner {
    width: auto;
  }
}
.request-lead,
.survey-lead,
.campaign-lead {
  margin: 15px 0 40px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .request-lead,
  .survey-lead,
  .campaign-lead {
    margin: 3% 0 5%;
    padding: 0 5%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.92308;
    text-align: left;
  }
}
.request-lead.-thanks,
.survey-lead.-thanks,
.campaign-lead.-thanks {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .request-lead.-thanks,
  .survey-lead.-thanks,
  .campaign-lead.-thanks {
    margin-bottom: 10%;
  }
}
.request-lead em,
.survey-lead em,
.campaign-lead em {
  color: #E50012;
  font-style: normal;
}
@media screen and (max-width: 1024px) {
  .request-progress,
  .survey-progress,
  .campaign-progress {
    padding: 0 5%;
  }
}
.request-progress.-thanks,
.survey-progress.-thanks,
.campaign-progress.-thanks {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .request-progress.-thanks,
  .survey-progress.-thanks,
  .campaign-progress.-thanks {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .request-progress img,
  .survey-progress img,
  .campaign-progress img {
    width: 100%;
  }
}
.request-form,
.survey-form,
.campaign-form {
  margin-top: 50px;
}
.request-form-title,
.survey-form-title,
.campaign-form-title {
  margin-bottom: 20px;
  padding-left: 15px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.66667;
  border-left: 7px solid #C41C1C;
}
@media screen and (max-width: 1024px) {
  .request-form-title,
  .survey-form-title,
  .campaign-form-title {
    margin: 0 0 3% 5%;
    padding-left: 3%;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1;
    border-left: 5px solid #C41C1C;
  }
}
.request-form-table,
.survey-form-table,
.campaign-form-table {
  -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  width: 100%;
  background: #FFF;
}
.request-form-table th,
.request-form-table td,
.survey-form-table th,
.survey-form-table td,
.campaign-form-table th,
.campaign-form-table td {
  padding: 15px 20px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #c0c2c4;
}
@media screen and (max-width: 1024px) {
  .request-form-table th,
  .request-form-table td,
  .survey-form-table th,
  .survey-form-table td,
  .campaign-form-table th,
  .campaign-form-table td {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: list-item;
    padding: 3% 5%;
    font-size: 16px;
    font-size: 4.26667vw;
    border-bottom: none;
  }
}
.request-form-table th,
.survey-form-table th,
.campaign-form-table th {
  position: relative;
  width: 220px;
  background: #F4F5F5;
}
@media screen and (max-width: 1024px) {
  .request-form-table th,
  .survey-form-table th,
  .campaign-form-table th {
    width: 100%;
    background: #E8F5F2;
    line-height: 1.1;
  }
}
.request-form-table th .required,
.survey-form-table th .required,
.campaign-form-table th .required {
  display: flex;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .request-form-table th .required,
  .survey-form-table th .required,
  .campaign-form-table th .required {
    display: inline-block;
    position: unset;
    margin-left: 10px;
  }
}
.request-form-table th .required-wrapper,
.survey-form-table th .required-wrapper,
.campaign-form-table th .required-wrapper {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  padding: 2px 5px;
  background: #FDEDE4;
  color: #E60012;
  font-size: 13px;
  line-height: 1;
  border: 1px solid #E60012;
}
.request-form-table td,
.survey-form-table td,
.campaign-form-table td {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .request-form-table td,
  .survey-form-table td,
  .campaign-form-table td {
    line-height: 1.2;
  }
}
.request-form-table .other-service td,
.survey-form-table .other-service td,
.campaign-form-table .other-service td {
  width: 400px;
}
@media screen and (max-width: 1024px) {
  .request-form-table .other-service td,
  .survey-form-table .other-service td,
  .campaign-form-table .other-service td {
    width: auto;
    padding: 1% 5% 0;
  }
}
@media screen and (max-width: 1024px) {
  .request-form-table.quantity tr,
  .survey-form-table.quantity tr,
  .campaign-form-table.quantity tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.request-form-table.quantity td,
.survey-form-table.quantity td,
.campaign-form-table.quantity td {
  padding: 15px 50px 15px 20px;
  border-right: 1px solid #C0C2C4;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .request-form-table.quantity td,
  .survey-form-table.quantity td,
  .campaign-form-table.quantity td {
    width: 33.33333%;
    padding: 3%;
    font-size: 11px;
    font-size: 2.93333vw;
    list-style: none;
    text-align: left;
  }
}
.request-form-table.quantity td:last-child,
.survey-form-table.quantity td:last-child,
.campaign-form-table.quantity td:last-child {
  border-right: none;
}
.request-form-table.quantity label,
.survey-form-table.quantity label,
.campaign-form-table.quantity label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .request-form-table.quantity label,
  .survey-form-table.quantity label,
  .campaign-form-table.quantity label {
    margin: 0 !important;
  }
}
.request-form-table.quantity input,
.survey-form-table.quantity input,
.campaign-form-table.quantity input {
  width: 31px;
  height: 31px;
  margin-left: 8px;
}
@media screen and (max-width: 1024px) {
  .request-form-table.quantity input,
  .survey-form-table.quantity input,
  .campaign-form-table.quantity input {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}
.request-form-table.-survey th,
.request-form-table.-survey td,
.survey-form-table.-survey th,
.survey-form-table.-survey td,
.campaign-form-table.-survey th,
.campaign-form-table.-survey td {
  border: 1px solid #c0c2c4;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .request-form-table.-survey th,
  .request-form-table.-survey td,
  .survey-form-table.-survey th,
  .survey-form-table.-survey td,
  .campaign-form-table.-survey th,
  .campaign-form-table.-survey td {
    border: none;
  }
}
.request-form-table.-survey .flex label,
.survey-form-table.-survey .flex label,
.campaign-form-table.-survey .flex label {
  display: inline !important;
  margin-right: 10px !important;
}
@media screen and (max-width: 1024px) {
  .request-form-table.-survey .flex label,
  .survey-form-table.-survey .flex label,
  .campaign-form-table.-survey .flex label {
    margin-right: 2% !important;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.request-form-text,
.survey-form-text,
.campaign-form-text {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .request-form-text,
  .survey-form-text,
  .campaign-form-text {
    margin: 0 0 3% 5%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.request-form-submit,
.survey-form-submit,
.campaign-form-submit {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .request-form-submit,
  .survey-form-submit,
  .campaign-form-submit {
    margin-top: 10%;
  }
}
.request-form-submit input,
.survey-form-submit input,
.campaign-form-submit input {
  margin: 0;
  padding: 20px 0 !important;
  border: none;
}
.request-form-notice,
.survey-form-notice,
.campaign-form-notice {
  margin: 50px 0 0;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .request-form-notice,
  .survey-form-notice,
  .campaign-form-notice {
    margin-top: 10%;
    padding: 0 5%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.71429;
    text-align: left;
  }
}

.survey {
  padding-top: 0 !important;
  background: #FFF;
}

.inputtext-list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .inputtext-list {
    flex-wrap: wrap;
  }
}
.inputtext-item {
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .inputtext-item {
    width: 100%;
    margin: 0 0 3% 0;
  }
}
.inputtext-item:last-child {
  margin-right: 0;
}
.inputtext-item-box1 {
  display: inline-block;
  margin-right: 5px;
  line-height: 1.2;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .inputtext-item-box1 {
    width: auto;
    margin-right: 0;
  }
}
.inputtext-item-box1.sp_none {
  display: none;
}
.inputtext-item-box2 {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .inputtext-item-box2 {
    width: auto;
    margin-right: 0;
  }
}
.inputtext-item2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .inputtext-item2 {
    margin-bottom: 3%;
  }
}
.inputtext-item2:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .inputtext-item2 .multi {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .inputtext-item2 .multi:last-child {
    margin-top: 3%;
  }
}

.campaign {
  padding: 0 !important;
  background: #FFF;
}
.campaign .main-lead-title {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .campaign .main-lead-title {
    width: 90%;
    margin: 10% auto;
  }
}
.campaign .main-lead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1050px;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  .campaign .main-lead-inner {
    width: 90%;
    padding-bottom: 10%;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 1050px) {
  .campaign .main-lead-inner img {
    display: none;
  }
}
.campaign .main-lead-box .term {
  position: relative;
  margin-bottom: 70px;
  color: #313940;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .campaign .main-lead-box .term {
    margin: 0 0 10%;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.campaign .main-lead-box .term:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 74px;
  height: 4px;
  margin: 0 auto;
  background: #C41C1C;
}
@media screen and (max-width: 1024px) {
  .campaign .main-lead-box .term:before {
    bottom: -30%;
    width: 9.86667%;
    height: 2px;
  }
}
.campaign .main-lead-box .description {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .campaign .main-lead-box .description {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.53846;
    text-align: left;
  }
}
.campaign .main-lead-box .description em {
  color: #C41C1C;
  font-style: normal;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .campaign .main-lead-box .description em {
    font-size: 15px;
    font-size: 4vw;
  }
}
.campaign .apply {
  background: #FFE9E9;
}
.campaign .apply-subbox {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
  width: 1050px;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  .campaign .apply-subbox {
    width: 90%;
  }
}
.campaign .apply-subbox-title {
  background: #C41C1C;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-title {
    padding: 2%;
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1;
  }
}
.campaign .apply-subbox-inner {
  padding: 35px 175px;
  background: #FFF;
}
@media screen and (max-width: 1050px) {
  .campaign .apply-subbox-inner {
    padding: 5%;
  }
}
.campaign .apply-subbox-lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-lead {
    margin-bottom: 5%;
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.46667;
  }
}
.campaign .apply-subbox-text {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.625;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-text {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.53846;
  }
}
.campaign .apply-subbox-text:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.campaign .apply-subbox-text:not(:last-child) {
  margin-bottom: 10px;
}
.campaign .apply-subbox-table {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-table {
    margin-bottom: 5%;
  }
}
.campaign .apply-subbox-table th,
.campaign .apply-subbox-table td {
  padding: 20px;
  font-size: 16px;
  border: 1px solid #E4E5E6;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-table th,
  .campaign .apply-subbox-table td {
    display: list-item;
    padding: 3%;
    font-size: 13px;
    font-size: 3.46667vw;
    list-style: none;
  }
}
.campaign .apply-subbox-table th {
  background: #F4F5F5;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-table th {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-table td {
    line-height: 1.2;
  }
}
.campaign .apply-subbox-table .notice {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox-table .notice {
    margin-top: 2%;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.campaign .apply-subbox .term,
.campaign .apply-subbox .description {
  font-size: 14px;
  line-height: 1.64286;
}
@media screen and (max-width: 1024px) {
  .campaign .apply-subbox .term,
  .campaign .apply-subbox .description {
    font-size: 11px;
    font-size: 2.93333vw;
    line-height: 1.72727;
  }
}
.campaign .apply-subbox .term a,
.campaign .apply-subbox .description a {
  color: #F2AC1D;
  text-decoration: underline;
}
.campaign .apply-subbox .term a:hover,
.campaign .apply-subbox .description a:hover {
  text-decoration: none;
}
.campaign .request {
  padding: 70px 0 !important;
  background: #FFF;
}
@media screen and (max-width: 1024px) {
  .campaign .request {
    padding: 8% 0 10% !important;
  }
}
.campaign .request-lead-required {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 3px;
  padding: 2px 5px;
  background: #FDEDE4;
  color: #E60012;
  font-size: 13px;
  line-height: 1;
  border: 1px solid #E60012;
}
.campaign .request-form-table.-campaign {
  border: 1px solid #c0c2c4;
  vertical-align: middle;
}
.campaign .request-form-table.-thanks th,
.campaign .request-form-table.-thanks td {
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .campaign .request-form-table th,
  .campaign .request-form-table td {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.campaign .request-form-table td a {
  color: #C41C1C;
  text-decoration: underline;
}
.campaign .request-form-table td a:hover {
  text-decoration: none;
}
.campaign .request-form-table .notice {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.campaign .request-form-table .notice.-mgt {
  margin: 10px 0 0;
}
@media screen and (max-width: 1024px) {
  .campaign .request-form-table label {
    display: inline-block;
  }
}
.campaign .request-form-table input[type=checkbox] {
  height: 30px;
}
@media screen and (max-width: 1024px) {
  .campaign .request-form-table .input-short2 {
    width: 25%;
  }
}
.campaign .request-inner-footer {
  width: 1050px;
  margin: 70px auto 0;
  background: #FBFBFB;
  border: 1px solid #E1E2E3;
}
@media screen and (max-width: 1050px) {
  .campaign .request-inner-footer {
    width: 90%;
    margin: 10% auto 0;
  }
}
.campaign .request-inner-footer-text {
  padding: 15px 0;
  font-size: 16px;
  line-height: 2.1875;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .campaign .request-inner-footer-text {
    padding: 5%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.53846;
    text-align: left;
  }
}
.campaign .request-inner-footer-text a {
  color: #C41C1C;
  text-decoration: underline;
}
.campaign .request-inner-footer-text a:hover {
  text-decoration: none;
}
.campaign .textfieldInvalidFormatMsg,
.campaign .checkboxMinSelectionsMsg,
.campaign .textareaMaxCharsMsg,
.campaign .checkboxRequiredMsg {
  display: none;
}

.input-short {
  width: 220px;
}
@media screen and (max-width: 1024px) {
  .input-short {
    width: 100%;
  }
}
.input-short2 {
  width: 100px;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .input-short2 {
    width: 100%;
    margin-right: 0;
  }
}
.input-long {
  width: 505px;
}
@media screen and (max-width: 1024px) {
  .input-long {
    width: 100%;
  }
}

textarea {
  width: 500px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  textarea {
    width: 100% !important;
  }
}

@media screen and (max-width: 1024px) {
  .notice {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.23077;
  }
}

.image-item {
  margin-bottom: 20px;
}
.image-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  div#mfp_overlay {
    padding: 20px 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  div#mfp_overlay_inner {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
  }
}

@media screen and (max-width: 1024px) {
  table#mfp_confirm_table tr th,
  table#mfp_confirm_table tr td {
    display: list-item;
    list-style: none;
  }
}
@media screen and (max-width: 1024px) {
  table#mfp_confirm_table tr th {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  table#mfp_confirm_table tr td {
    padding-left: 22px;
    border-top: none;
  }
}

@media screen and (max-width: 1024px) {
  div.mfp_buttons button {
    font-size: 18px;
  }
}

/*# sourceMappingURL=form.css.map */
