@charset "UTF-8";
/* form style reset and common style/
*/
input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  outline: none;
  border: none;
  padding: 0.2em 0.5em;
  min-height: 30px;
  border-radius: 0 !important;
}
select::-ms-expand {
  display: none;
}
input[type=text]:focus,
input[type=text]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=tel]:focus,
input[type=tel]:active,
select:active,
select:focus,
textarea:active,
textarea:focus {
  background: none;
}
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
pre {
  text-align: left;
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
}
img[width="0"],
img[width="1"] {
  display: none;
}
html {
  font-size: 62.5%;
}
body {
  /* font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "YuGothic Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "メイリオ", Meiryo, sans-serif; */
	font-family: "Yu Gothic M", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(206, 194, 137, 0.3);
  -webkit-touch-callout: none;
}
a:hover, a:active {
  cursor: pointer;
}
a:hover:not(.noAct), a:active:not(.noAct) {
  text-decoration: underline;
  opacity: 0.8;
}
a:hover img, a:active img {
  opacity: 0.8;
}
a img {
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  opacity: 1;
  border: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
h1,
h2,
h3,
h4,
h5,
em,
strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
em,
address {
  font-style: normal;
}
hr {
  border: 0;
  border-top: 0.1rem solid #b7b7b7;
  display: block;
  height: 0.1rem;
  margin: 1rem 0;
  padding: 0;
}

.sp {
  display: inline;
}
.pc {
  display: none;
}

.normal {
  font-weight: normal;
}
.bold {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.strong {
  font-weight: bold;
}

/*
  text
*/
.txt-c {
  text-align: center;
}
.txt-l {
  text-align: left;
}
.txt-r {
  text-align: right;
}

/*
  box,unit
*/
.db {
  display: block;
}
.dib {
  display: inline-block;
}
.unit-cl,
.unit-rl {
  display: block;
}
.unit-cl > *,
.unit-rl > * {
  display: inline-block;
  text-align: left;
}
.unit-cl {
  text-align: center;
}
.unit-rl {
  text-align: right;
}
.full-width {
  margin: 0 -9999rem;
  padding: 0 9999rem;
}

/*
  flexbox
*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.flex.nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.jc-c {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.jc-sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.jc-sa {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.ai-c {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ai-s {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ai-e {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.full-grow {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

/*
  position
*/
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.center-x {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.center-y {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.center-xy {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mt1 {
  margin-top: 10px;
  margin-top: 1rem;
}
.mt2 {
  margin-top: 20px;
  margin-top: 2rem;
}
.mt3 {
  margin-top: 30px;
  margin-top: 3rem;
}
.mt4 {
  margin-top: 40px;
  margin-top: 4rem;
}
.mt5 {
  margin-top: 50px;
  margin-top: 5rem;
}
.mb1 {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.mb3 {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.mb4 {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.mb5 {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

/*
  symbol,symbollist
*/
[class*=symbol-sign] {
  display: inline-block;
  position: relative;
}
[class*=symbol-sign]::before {
  content: ">";
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.6, 1);
          transform: translateY(-50%) scale(0.6, 1);
  line-height: 1;
  padding-bottom: 0.2em;
}

.symbol-sign-l {
  padding-left: 1em;
}
.symbol-sign-l::before {
  left: 0;
}
.symbol-sign-r {
  padding-right: 1em;
}
.symbol-sign-r::before {
  right: 0;
}

[class^=symbol-list] li, [class^=symbol-list] dd {
  text-indent: -1.1em;
  padding-left: 1.1em;
}
[class^=symbol-list] > li::before, [class^=symbol-list] > dd:before {
  font-size: 0.8em;
  padding-right: 0.3em;
}

.symbol-list-cc > li:before, .symbol-list-cc > dd::before {
  content: "●";
}
.symbol-list-sq > li:before, .symbol-list-sq > dd::before {
  content: "■";
}
.symbol-list-dt li, .symbol-list-dt dd {
  text-indent: -1em;
  padding-left: 1em;
}
.symbol-list-dt > li:before, .symbol-list-dt > dd::before {
  content: "・";
  font-size: inherit;
  padding-right: inherit;
}

/*
  clearfix
*/
.clearfix {
  *zoom: 1;
}
.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

/*
  common
*/
#wrapper {
  width: 100%;
  position: relative;
	overflow: hidden;
}
#content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
	padding: 3rem 0 4rem;
}
#content.no_pdb {
	padding-bottom: 0;
}

.brb-ttl {
	border-bottom: 1px solid;
	color: #1e50a2;
	font-size: 16px;
	font-size: 1.6rem;
	display: block;
	margin-bottom: 1em;
	padding-bottom: 1em;
	text-align: center;
}
.brb-ttl > * {
	display: inline-block;
	text-align: left;
}

.topicpath {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-end;
	font-size: 13px;
	font-size: 1.3rem;
	width: 100%;
	max-width: 980px;
	padding: 1rem;
	margin: 0 auto;
	position: relative;
	color: #666;
	line-height: 1.4;
}
.topicpath::before {
	content: "";
	display: inline-block;
	background-color: #e8f2f8;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.topicpath li:not(:first-of-type) {
	margin-left: 1em;
	padding-left: .25em;
	position: relative;
}
.topicpath li:not(:first-of-type)::before {
	content: "";
	width: 1px;
	height: 65%;
	background-color: #666;
	position: absolute;
	top: 50%;
	left: -0.5em;
	transform: translateY(-50%) rotate(25deg);
}

#header .header_box {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 1.5rem;
}
#footer {
	background-color: #e4f0fd;
	padding: 4rem 1rem;
}
#footer .footer-Logo {
	font-size: 11px;
	font-size: 1.1rem;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}
#footer .immoody-txt {
	margin-right: 1rem;
}
#footer .immoody-img {
	width: 30%;
	max-width: 200px;
}
#footer .footerLogo {
	padding: 1rem 8rem;
}

.primaryTWrapper {
	color: #1e50a2;
	display: block;
	text-align: center;
	position: relative;
	padding-bottom: 1.5rem;
	margin-bottom: 3rem;
}
.primaryTWrapper::before, .primaryTWrapper::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.primaryTWrapper::before {
	background: #173c77;
	width: 100%;
	height: 1px;
	bottom: 0;
}
.primaryTWrapper::after {
	background: #1e50a2;
	width: 93%;
	height: 3px;
	bottom: -1px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 1;
}
.primaryTWrapper .primaryTitle {
	font-size: 18px;
	font-size: 1.8rem;
	display: inline-block;
	font-weight: bold;
	padding: 0 1em;
	text-align: center;
}

.current-list .current-list-item {
	display: flex;
	align-items: center;
	counter-increment: number 1;
}
.current-list .current-list-item.active {
	color: #1e50a2;
	font-weight: bold;
}
.current-list .num {
	background-color: #999;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	display: flex;
	position: relative;
	margin-right: 1rem;
}
.current-list .num::before {
	content: counter(number) "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.25rem;
	height: 3.25rem;
}
.current-list .current-list-item.active .num {
	background-color: #1e50a2;
}
.current-list .current-list-item.active:not(:last-of-type) .num::after {
	color: #1e50a2;
}

/*
  form　common
*/
.form-content .error-text,
.form-content .hissu-text,
.form-content .confirm-text,
.form-content .emergency-text {
	color: #ff5800;
}
.form-content .error-text,
.form-content .confirm-text {
	display: flex;
	align-items: center;
	margin-top: .5em;
}
.form-content .error-text::before,
.form-content .confirm-text::before {
	content: "！";
	background: #ff5800;
	display: flex;
	color: #FFF;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	width: 3rem;
	min-width: 3rem;
	height: 3rem;
	margin-right: .5em;
	text-align: center;
}
.form-content > .error-text,
.form-content .emergency-text {
	margin: 0 auto 2rem;
}
.form-content .confirm-text {
	font-weight: bold;
}
.form-content .hissu-text,
.form-content .confirm-text {
	margin-top: 0;
	margin-bottom: 2rem;
}
.form-content .hissu-text em {
	background-color: #ff5800;
	border-radius: 3rem;
	color: #fff;
	padding: .3rem 1rem;
	margin-right: 1rem;
}
.form-content .emergency-text a {
	text-decoration: underline;
}
.form-content #customer {
	margin-top: 2rem;
}
.form-content input[type=text],
.form-content select,
.form-content textarea {
	border: 1px solid #d2dcec;
	border-radius: 1rem !important;
	width: inherit;
	padding: .5em .75em;
	min-height: 5rem;
}
.form-content select {
	appearance: auto;
}
.form-content input[type=checkbox] {
	border: 2px solid;
	border-radius: .5rem !important;
	width: 2.4rem;
	height: 2.4rem;
	min-height: auto;
	margin-right: 1rem;
	appearance: auto;
}
.form-content #customer dl {
	margin-bottom: 3rem;
}
.form-content #customer dt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 16px;
	font-size: 1.6rem;
	color: #1e50a2;
	margin-bottom: .5em;
}
.form-content #customer dt.hissu::after,
.form-content .checkbox-field label::after {
	content: "必須";
	display: block;
	background-color: #ff5800;
	border-radius: 3rem;
	color: #fff;
	font-size: .777em;
	font-weight: bold;
	padding: .3rem 1rem;
	margin-left: 1rem;
	line-height: 1;
}
.form-content #customer dt .english {
	font-size: .666em;
}
.form-content #customer dd {
	width: 100%;
}
.form-content #customer dl.error input[type=text] {
	background-color: #fee;
}
.form-content .privecy {
	background-color: #e4f0fd;
	height: 15rem;
	padding: 2rem 2.5rem;
	overflow: auto;
}
/* Let's get this party started */
.form-content .privecy::-webkit-scrollbar {
	width: 1.5rem;
}
/* Track */
.form-content .privecy::-webkit-scrollbar-track {
	-webkit-border-radius: 3rem;
	border-radius: 3rem;
	background: #d2dcec;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
/* Handle */
.form-content .privecy::-webkit-scrollbar-thumb {
	-webkit-border-radius: 3rem;
	border-radius: 3rem;
	background: #8b9dbb;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.form-content .checkbox-field {
	font-size: 16px;
	font-size: 1.6rem;
}
.form-content .checkbox-field label {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
}

.form-content .checkbox-field input[type="checkbox"]:checked,
.form-content .checkbox-field input[type="checkbox"]:not(:checked) {
	position: absolute;
	left: -9999px;
}
.form-content .checkbox-field input[type="checkbox"]:checked + .checkbox-field-text::before,
.form-content .checkbox-field input[type="checkbox"]:not(:checked) + .checkbox-field-text::before {
	content: "";
	display: inline-block;
	width: 2.6rem;
	height: 2.6rem;
	border: 2px solid #000;
	background: #fff;
	border-radius: .5rem;
	margin-right: .5em;
}
.form-content .checkbox-field input[type="checkbox"]:checked + .checkbox-field-text::after {
	content: '\2713\0020';
	position: absolute;
	top: 0.25em;
	left: 0.25em;
	font-size: 1.3em;
	line-height: 0.8;
	color: #1e50a2;
	transition: all .2s;
	font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
.form-content .checkbox-field .checkbox-field-text {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
}

.form-content .checkbox-field .checkbox-field-notes {
	margin-top: 2rem;
	text-align: center;
}
.form-content .checkbox-field .error-text {
	justify-content: center;
}
.form-content .submit-btn-wrap {
	width: 100%;
	max-width: 50rem;
	margin: 3rem auto 0;
	position: relative;
}
.form-content .submit-btn-wrap::before {
	content: "";
	display: inline-block;
	background: url(/images/icon-circleArrow.png) no-repeat;
	background-size: contain;
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
	z-index: 1;
}
.form-content .submit-btn-wrap .submit-btn {
	background: -moz-linear-gradient(bottom, #e8171e, #ff8b4d);
  background: -webkit-linear-gradient(bottom, #e8171e, #ff8b4d);
  background: linear-gradient(to top, #e8171e, #ff8b4d);
	box-shadow: 0 0 8px #9f9f9f;
	border-radius: 4rem !important;
	color: #fff;
	font-weight: bold;
	width: 100%;
	min-height: 8rem;
	padding: 0;
	text-align: center;
	cursor: pointer;
}
.form-content .submit-btn-wrap .submit-btn:hover {
	background: -moz-linear-gradient(top, #ee1b14, #ff554a);
  background: -webkit-linear-gradient(top, #ee1b14, #ff554a);
  background: linear-gradient(to bottom, #ee1b14, #ff554a);
}
.form-content #selItem li {
	display: flex;
	align-items: center;
	margin: 0 4rem 2rem 0;
}
/*
  from　確認画面
*/
.form-content__confirm #customer dd {
	background-color: #e4f0fd;
	display: flex;
	align-items: center;
	border: 1px solid #d2dcec;
	border-radius: 1rem !important;
	width: inherit;
	padding: .5em .75em;
	min-height: 5rem;
}
/*
  from　完了画面
*/
.form-complete__text p {
	margin-bottom: 1.5em;
}
.form-complete__text address dl {
	display: flex;
	margin-bottom: .25em;
}
.form-complete__download {
	background-color: #e4f0fd;
	margin-top: 5rem;
	position: relative;
}
.form-complete__download::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10rem solid transparent;
	border-left: 10rem solid transparent;
	border-top: 3rem solid #fff;
	border-bottom: 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.form-complete__download-in {
	padding: 5rem 1rem;
}
.form-complete__download-notes {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	margin: 2rem auto;
}
.form-complete__download-in .symbol-list-cc {
	color: #ff5800;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 4rem;
}
.form-complete__download-in .symbol-list-cc li {
	margin: 1.5em 0;
}
.form-complete__download-list li {
	margin-bottom: 2rem;
}
.form-complete__download-list dl {
	font-weight: bold;
	border: 3px solid #194385;
	display: flex;
}
.form-complete__download-list dt {
	background-color: #fff;
	color: #194385;
	width: 65%;
}
.form-complete__download-list dd {
	width: 35%;
}
.form-complete__download-list dt,
.form-complete__download-list dd label {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 6rem;
	cursor: pointer;
}
.form-complete__download-list dd label {
	background-color: #194385;
	color: #fff;
	cursor: pointer;
}
.form-complete__download-list dd input[type=image] {
	min-height: auto;
	padding: 0;
	margin-right: .25em;
}

/*
  資料請求
*/
.form-content__shiryou #material input[type=checkbox] {
	border: 2px solid;
	border-radius: .5rem !important;
	width: 2.4rem;
	height: 2.4rem;
	min-height: auto;
	margin-right: 1rem;
}
.form-content__shiryou #material {
	background-color: #e4f0fd;
	padding: 2rem 2.5rem;
	margin-bottom: 4rem;
}
.form-content__shiryou #material .material-list li {
	border: 3px solid #173c77;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	min-height: 6rem;
	padding: 0 1.5rem;
}
.form-content__shiryou #material .material-list li:not(:last-of-type) {
	margin-bottom: 2rem;
}
.form-content__shiryou #material dt {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-size: 1.6rem;
	color: #1e50a2;
	margin-bottom: .15em;
}
.form-content__shiryou #material dt.hissu::after {
	content: "必須";
	display: block;
	background-color: #ff5800;
	border-radius: 3rem;
	color: #fff;
	font-size: .777em;
	font-weight: bold;
	padding: .3rem 1rem;
	margin-left: 1rem;
	line-height: 1;
}
.form-content__shiryou #material dt .english {
	font-size: .666em;
}
.form-content__shiryou #material dd {
	width: 100%;
}
.form-content__shiryou .material-text {
	margin-bottom: 1em;
}
.form-content__shiryou #material .material-list li {
	color: #1e50a2;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.form-content__shiryou .material-notes {
	color: #1e50a2;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 1em;
	text-align: center;
}
.form-content__shiryou .material-notes em {
	font-size: 1.2em;
}

.form-content__bottom {
	background-color: #e4f0fd;
	margin-top: 4rem;
	margin-bottom: -4rem;
}
.form-content__bottom-in {
	padding: 3rem 1rem;
}
.form-content__bottom dt {
	background-color: #1e50a2;
	border-radius: 3rem;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	padding: .5em;
	margin-bottom: 1.5em;
	text-align: center;
}
.form-content__bottom dd {
	margin-bottom: 3rem;
}

@media screen and (max-width: 939px) {
  html {
    font-size: 2.6666666667vw;
  }

	.topicpath {
    -webkit-flex-flow: column;
    flex-flow: column;
	}

	#footer .immoody {
		margin: 0 auto 3rem;
	}
	#footer .copyright {
		font-size: 10px;
		font-size: 1rem;
	}

	.current-list,.form-content {
		padding: 0 1rem;
	}
	.current-list {
		display: flex;
		justify-content: space-between;
		margin-bottom: 3rem;
	}
	.current-list .current-list-item {
		font-size: 12px;
		font-size: 1.2rem;
	}
	.current-list .current-list-item:not(:last-of-type)::after {
		content: "・・・・・";
		display: inline-block;
		color: #999;
		letter-spacing: -.4em;
	}
	.current-list .current-list-item.active:not(:last-of-type)::after {
		color: #1e50a2;
	}

	.form-content #customer dt.sp-en_drop em {
		margin-right: 2rem;
	}
	.form-content .checkbox-field .checkbox-field-notes {
		font-size: .875em;
	}
	.form-content .submit-btn-wrap {
		padding: 0 1rem;
	}
	.form-content .submit-btn-wrap::before {
		left: 4rem;
	}
	.form-content .submit-btn-wrap .submit-btn {
		font-size: 1.125em;
		padding-left: 2rem;
	}
	.form-content #selItem li:last-of-type {
		margin-bottom: 0;
	}

	/*
		from　完了画面
	*/
	.form-complete__download-list dd {
		font-size: 12px;
		font-size: 1.2rem;
	}
	.form-complete__download-list dd input[type=image] {
		width: 12%;
	}
}

@media screen and (min-width: 940px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
	.sp {
    display: none;
  }
	.pc {
    display: inline;
  }

	#content {
		padding: 35px 0 75px;
		min-height: 76vh;
	}

	.topicpath {
    align-items: center;
    justify-content: flex-end;
    min-height: 50px;
	}
	.topicpath::before {
		width: 100vw;
	}

	#header .header_box {
		padding: 20px 0;
	}
	#footer {
		padding: 50px 0;
	}
	#footer .footer-Logo {
		font-size: 14px;
		font-size: 1.4rem;
	}
	#footer .footer-Logo > .flex {
		flex-wrap: nowrap;
	}

	.primaryTWrapper .primaryTitle {
		font-size: 24px;
		font-size: 2.4rem;
	}

	.sectionSecondary {
		display: flex;
		overflow-x: hidden;
	}
	.current-list {
		width: 280px;
	}
	.current-list .current-list-item {
		padding-bottom: 5rem;
	}
	.current-list .num::before {
		width: 50px;
		height: 50px;
	}
	.current-list .current-list-item:not(:last-of-type) .num::after {
		content: "・・・・・";
		display: inline-block;
		color: #999;
		position: absolute;
		letter-spacing: -.4em;
		left: 50%;
		bottom: -3.5rem;
		transform: translateX(-50%) rotate(90deg);
	}

	.brb-ttl,
	.form-content .error-text::before,
	.form-content .confirm-text::before,
	.form-content .checkbox-field,
	.form-content #customer dt,
	.form-content__shiryou #material dt,
	.form-content__shiryou #material .material-list li,
	.form-content__shiryou .material-notes,
	.form-complete__download-list dt,
	.form-complete__download-notes,
	.form-content__bottom dt {
		font-size: 18px;
		font-size: 1.8rem;
	}
	.form-content {
		width: calc(100% - 280px);
	}
	.form-content #customer {
		margin-top: 30px;
	}
	.form-content #customer dl {
		margin-bottom: 40px;
	}
	.form-content .privecy {
		height: 200px;
		padding: 4rem;
	}
	/* Let's get this party started */
	.form-content .privecy::-webkit-scrollbar {
		width: 3rem;
	}
	.form-content .checkbox-field label,
	.form-content .checkbox-field .checkbox-field-notes {
		margin-top: 40px;
	}
	.form-content .submit-btn-wrap {
		margin: 40px auto 0;
	}
	.form-content #selItem {
		display: flex;
		flex-wrap: wrap;
		padding-right: 4rem;
	}
	.form-content__input #selItem li:nth-last-of-type(-n+2) {
		margin-bottom: 0;
	}
	/*
		from　確認画面
	*/
	.form-content__confirm #selItem li {
		margin: 0 3rem 0 0;
	}
	/*
		from　完了画面
	*/
	.form-complete__download {
		min-height: 43vh;
	}
	.form-complete__download::before {
		border-right: 200px solid transparent;
		border-left: 200px solid transparent;
		border-top: 60px solid #fff;
	}
	.form-complete__download-in {
		padding: 100px 0;
	}
	.form-complete__download-notes {
		margin: 40px auto;
	}
	.form-complete__download-in .symbol-list-cc {
		padding: 0 100px;
	}
	.form-complete__download-list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.form-complete__download-list li {
		width: calc(50% - 20px);
		margin-bottom: 30px;
	}

	/*
		資料請求
	*/
	.form-content__shiryou #material input[type=checkbox] {
		margin-right: 20px;
	}
	.form-content__shiryou #material {
		padding: 40px 50px;
	}
	.form-content__shiryou #material .material-list li {
		padding: 0 25px;
	}

	.form-content__bottom {
		margin-top: 80px;
	}
	.form-content__bottom-in {
		display: flex;
		justify-content: space-between;
		padding: 80px 0;
		margin-bottom: -80px;
	}
	.form-content__bottom dl {
		width: calc(50% - 40px);
	}
}
