@charset "UTF-8";
/*

inspection-data

*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
body.inspection-data {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

body.inspection-data .mv.lightblue {
  background-image: url("../../images/inspection-data/bg_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  body.inspection-data .mv.lightblue {
    background-image: url("../../images/inspection-data/bg_01_sp.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body.inspection-data .chap {
  position: relative;
  margin-bottom: 80px;
}

body.inspection-data .chap .wrapper .intro {
  margin-bottom: 40px;
  background-color: #1541a2;
}

body.inspection-data .chap .wrapper .intro .copy {
  position: relative;
  line-height: 1.7;
  padding: 20px;
  background-color: #1541a2;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 991px) {
  body.inspection-data .chap .wrapper .intro .copy {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper .intro .copy {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .intro .copy {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.inspection-data .chap .wrapper .intro .desc {
  background-color: #1541a2;
  margin: 0 25px;
  padding-bottom: 20px;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .intro .desc {
    margin: 0 10px;
  }
}

body.inspection-data .chap .wrapper .intro .desc ul {
  padding: 30px 35px 25px;
  background-color: #fff;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .intro .desc ul {
    padding: 10px;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .intro .desc ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.inspection-data .chap .wrapper .intro .desc ul li em {
  color: #ED1C24;
}

body.inspection-data .chap .wrapper .intro .desc ul li em.require {
  margin-left: 5px;
  padding: 5px 11px;
  border-radius: 5px;
  color: #fff;
  background-color: #ED1C24;
  line-height: initial;
  font-weight: 600;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .intro .desc ul li em.require {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
  }
}

body.inspection-data .chap .wrapper .flow {
  margin-bottom: 30px;
}

body.inspection-data .chap .wrapper .flow h2 {
  position: relative;
  margin-bottom: 40px;
  color: #1541a2;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper .flow h2 {
    margin-bottom: 40px;
  }
}

body.inspection-data .chap .wrapper .flow h2::after {
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 13px 0 13px;
  border-color: #1541a2 transparent transparent transparent;
}

body.inspection-data .chap .wrapper .flow .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper .flow .content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.inspection-data .chap .wrapper .flow .content .card {
  position: relative;
  width: 22%;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border: 1px solid #1541a2;
  background-color: #fff;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper .flow .content .card {
    width: 46%;
    min-height: 285px;
  }
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper .flow .content .card {
    min-height: 345px;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .flow .content .card {
    min-height: 280px;
  }
}

body.inspection-data .chap .wrapper .flow .content .card::before {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  content: "";
  background-color: rgba(21, 65, 162, 0.2);
  display: block;
  width: 100%;
  height: 100%;
  visibility: visible;
}

body.inspection-data .chap .wrapper .flow .content .card span {
  position: relative;
  display: block;
  color: #1541a2;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #1541a2;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .flow .content .card span {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.inspection-data .chap .wrapper .flow .content .card span::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 13px 0 13px;
  border-color: #1541a2 transparent transparent transparent;
}

body.inspection-data .chap .wrapper .flow .content .card span::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 13px 0 13px;
  border-color: #fff transparent transparent transparent;
}

body.inspection-data .chap .wrapper .flow .content .card h3 {
  margin: 30px 0 5px;
  color: #1541a2;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .flow .content .card h3 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.inspection-data .chap .wrapper .flow .content .card p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 16px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .flow .content .card p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table, body.inspection-data .chap .wrapper tbody {
    display: block;
  }
}

body.inspection-data .chap .wrapper table {
  width: 100%;
  margin-bottom: 40px;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table {
    display: block;
  }
}

body.inspection-data .chap .wrapper table tr {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr {
    display: block;
    width: 100%;
  }
}

body.inspection-data .chap .wrapper table tr > * {
  display: inline-block;
}

body.inspection-data .chap .wrapper table tr th {
  position: relative;
  width: 30%;
  text-indent: 1em;
  vertical-align: middle;
  margin: 25px 4% 25px 0;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr th {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr th {
    margin-bottom: 10px;
    padding-right: 40px;
  }
}

body.inspection-data .chap .wrapper table tr th > * {
  display: inline-block;
}

body.inspection-data .chap .wrapper table tr th span {
  display: block;
  width: 75%;
  margin-left: 1em;
  padding-right: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr th span {
    width: auto;
    padding-right: 3em;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr th span {
    width: auto;
    padding-right: 1em;
  }
}

body.inspection-data .chap .wrapper table tr th em {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  padding: 2px 11px;
  border-radius: 5px;
  color: #fff;
  line-height: initial;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr th em {
    margin-left: 20px;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr th em {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.inspection-data .chap .wrapper table tr th em.require {
  background: #ED1C24;
}

body.inspection-data .chap .wrapper table tr th em.optional {
  background-color: #0071bc;
}

body.inspection-data .chap .wrapper table tr td {
  width: 59%;
  margin: 25px 0;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr td {
    display: block;
    width: 100%;
    padding-left: 1em;
    margin: 0 0 25px;
  }
}

body.inspection-data .chap .wrapper table tr td .zip_wrap > * {
  display: inline-block;
}

body.inspection-data .chap .wrapper table tr td .zip_wrap input {
  width: 100px;
}

body.inspection-data .chap .wrapper table tr td .zip_wrap span.error {
  margin-left: 0;
}

body.inspection-data .chap .wrapper table tr td p {
  margin-bottom: 5px;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr td p {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.inspection-data .chap .wrapper table tr td .radio {
  display: block;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
}

body.inspection-data .chap .wrapper table tr td .radio * {
  color: #333;
}

body.inspection-data .chap .wrapper table tr td .radio > span {
  display: inline-block;
  margin-right: 13px;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper table tr td .radio > span:last-child {
    display: block;
  }
}

body.inspection-data .chap .wrapper table tr td p.text {
  display: block;
  margin: 5px 0 0;
}

body.inspection-data .chap .wrapper table tr td p.text input {
  width: 100%;
}

body.inspection-data .chap .wrapper table tr td select {
  width: 300px;
}

body.inspection-data .chap .wrapper table tr td select, body.inspection-data .chap .wrapper table tr td input {
  padding: 5px 10px;
  height: 36px;
}

body.inspection-data .chap .wrapper table tr td > input {
  width: 100%;
}

body.inspection-data .chap .wrapper table tr td span {
  color: #666;
}

body.inspection-data .chap .wrapper table tr td > span {
  width: auto;
  display: inline-block;
}

body.inspection-data .chap .wrapper table tr td textarea {
  width: 100%;
  padding: 5px 10px;
}

@media screen and (max-width: 991px) {
  body.inspection-data .chap .wrapper table tr td .mail {
    width: 90%;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr td .mail {
    width: 90%;
  }
}

body.inspection-data .chap .wrapper table tr td .mail > * {
  width: calc(100% - 5px);
}

body.inspection-data .chap .wrapper table tr td .mail + .mail {
  margin-top: 15px;
  position: relative;
}

body.inspection-data .chap .wrapper table tr td .mail + .mail > span {
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-left: 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr td .mail + .mail > span {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap > span, body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper table tr td .inspection-data_wrap > span, body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap {
    display: block;
    width: auto;
  }
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap > span input, body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap input {
  margin-left: -1.6em;
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap {
  margin-bottom: 10px;
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  background: -moz-linear-gradient(bottom, #fff 50%, #BDBDBD);
  background: -webkit-linear-gradient(bottom, #fff 50%, #BDBDBD);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#BDBDBD));
  background: -webkit-linear-gradient(top, #fff 50%, #BDBDBD);
  background: -o-linear-gradient(top, #fff 50%, #BDBDBD);
  background: linear-gradient(to bottom, #fff 50%, #BDBDBD);
  color: #4D4D4D;
  text-align: center;
  border: 1px solid #999;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 1199px) {
  body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a {
    font-size: 10px;
    font-size: 1rem;
    padding: 0 5px;
  }
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap a:hover {
  text-decoration: none;
  opacity: .7;
}

body.inspection-data .chap .wrapper table tr td .inspection-data_wrap .upload_wrap + .upload_wrap {
  margin-left: 10px;
}

body.inspection-data .chap .wrapper table tr td .qty input {
  width: 100px;
}

body.inspection-data .chap .wrapper table tr .error_dr {
  position: relative;
}

body.inspection-data .chap .wrapper table tr .error_dr span.error {
  position: absolute;
  top: 100%;
  left: 0;
  color: #ED1C24;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper table tr .error_dr span.error {
    margin-left: 1em;
  }
}

body.inspection-data .chap .wrapper .policy article {
  margin: 25px 0;
  padding: 15px 30px;
  height: 160px;
  overflow-y: scroll;
  border-top: 8px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 8px solid #ccc;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .policy article {
    padding: 15px;
  }
}

body.inspection-data .chap .wrapper .policy article h3 {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  color: #666;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .policy article h3 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.inspection-data .chap .wrapper .policy article ul li {
  position: relative;
  margin-left: 2em;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .policy article ul li {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.inspection-data .chap .wrapper .policy article ul li::before {
  position: absolute;
  top: 0;
  left: -2em;
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  color: #333;
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(1)::before {
  content: "01.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(2):before {
  content: "02.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(3):before {
  content: "03.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(4):before {
  content: "04.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(5):before {
  content: "05.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(6):before {
  content: "06.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(7):before {
  content: "07.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(8):before {
  content: "08.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(9):before {
  content: "09.";
}

body.inspection-data .chap .wrapper .policy article ul li:nth-child(10):before {
  content: "10.";
}

body.inspection-data .chap .wrapper .policy__agree {
  text-align: center;
}

body.inspection-data .chap .wrapper .policy__agree em.require {
  display: inline-block;
  padding: 2px 11px;
  border-radius: 5px;
  background: #ED1C24;
  color: #fff;
  line-height: initial;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .policy__agree em.require {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .policy__agree span {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.inspection-data .chap .wrapper .btn_radius {
  height: 80px;
  line-height: 80px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  body.inspection-data .chap .wrapper .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.inspection-data .chap .wrapper .btn_radius input {
  width: 540px;
  border-radius: 40px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  body.inspection-data .chap .wrapper .btn_radius input {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.inspection-data .chap .wrapper .btn_radius input::before {
  width: 12px;
  height: 12px;
}

body.inspection-data .modal {
  max-width: 700px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  body.inspection-data .modal {
    max-width: inherit;
    width: 100%;
  }
}

body.inspection-data .modal .wrapper_modal {
  width: 100%;
  margin: 0 auto;
}

body.inspection-data .modal .wrapper_modal h2 {
  height: 140px;
  line-height: 140px;
  margin-bottom: 35px;
  background-color: #060F5F;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body.inspection-data .modal .wrapper_modal h2 {
    height: 80px;
    line-height: 80px;
    margin-bottom: 25px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .modal .wrapper_modal h2 {
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.inspection-data .modal .wrapper_modal ul {
  width: 87%;
  margin: 0 auto;
}

body.inspection-data .modal .wrapper_modal ul li {
  position: relative;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  body.inspection-data .modal .wrapper_modal ul li {
    padding-bottom: 20px;
  }
}

body.inspection-data .modal .wrapper_modal ul li::before {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #060F5F;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.inspection-data .modal .wrapper_modal ul li::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.inspection-data .modal .wrapper_modal ul li:nth-child(1)::before {
  content: "1";
}

body.inspection-data .modal .wrapper_modal ul li:nth-child(2)::before {
  content: "2";
}

body.inspection-data .modal .wrapper_modal ul li:nth-child(3)::before {
  content: "3";
}

body.inspection-data .modal .wrapper_modal ul li:nth-child(4)::before {
  content: "4";
}

body.inspection-data .modal .wrapper_modal ul li:nth-child(5)::before {
  content: "5";
}

body.inspection-data .modal .wrapper_modal ul li p {
  margin-left: 3.5em;
  margin-bottom: 20px;
  padding-top: 5px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  body.inspection-data .modal .wrapper_modal ul li p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.inspection-data .modal .wrapper_modal ul li p {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 3em;
    padding-top: 3px;
    margin-bottom: 10px;
  }
}

body.inspection-data .modal .wrapper_modal ul li + li {
  padding-top: 40px;
  border-top: 1px solid #E3E3E3;
}

@media screen and (max-width: 767px) {
  body.inspection-data .modal .wrapper_modal ul li + li {
    padding-top: 20px;
  }
}

body.page-template-page-inspection-data-confirm .mv.blue {
  display: none;
}

body.page-template-page-inspection-data-confirm .inspection-data .title_blueline {
  display: none;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-confirm .inspection-data .title_blueline h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-confirm .inspection-data .title_blueline h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form table tbody tr th em {
  display: none;
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form table tbody tr td p {
  display: none;
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form table tbody tr td p.radio {
  font-size: 16px;
  font-size: 1.6rem;
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form table tbody tr td p.text {
  font-size: 16px;
  font-size: 1.6rem;
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form table tbody tr td .inspection-data_wrap .upload_wrap {
  display: none;
}

body.page-template-page-inspection-data-confirm .inspection-data .mw_wp_form_confirm form .policy {
  display: none;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius {
    margin: 20px 0 130px;
  }
}

@media screen and (max-width: 767px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius a {
  height: 60px;
  line-height: 60px;
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius > * {
  width: 45% !important;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius > * {
    width: 80% !important;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius > * {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius input {
  width: 100%;
}

@media screen and (max-width: 767px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius input {
    height: 60px;
    line-height: 60px;
  }
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius .btn_wrap {
  height: 100%;
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius .btn_wrap + .btn_wrap {
  margin-left: 5%;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-confirm .inspection-data .btn_radius .btn_wrap + .btn_wrap {
    margin-left: 0;
    margin-top: 20px;
  }
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius .btn_wrap.btn_back {
  display: inline-block;
}

body.page-template-page-inspection-data-confirm .inspection-data .btn_radius .btn_wrap.btn_back::before {
  content: "";
}

body.page-template-page-inspection-data-confirm .modal {
  display: none;
}

body.page-template-page-inspection-data-thanks .inspection-data .title_blueline {
  display: none;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-thanks .inspection-data .title_blueline h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-thanks .inspection-data .title_blueline h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

body.page-template-page-inspection-data-thanks .inspection-data .content {
  margin-bottom: 100px;
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_radius {
  height: 80px;
  line-height: 80px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  body.page-template-page-inspection-data-thanks .inspection-data .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-thanks .inspection-data .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a {
  width: 540px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a {
    font-size: 18px;
    font-size: 1.8rem;
    height: 50px;
    line-height: 50px;
  }
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a::before {
  width: 12px;
  height: 12px;
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_radius a:hover {
  background-color: #01275a;
  color: #fff;
  text-decoration: none;
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_back {
  display: none;
}

body.page-template-page-inspection-data-thanks .inspection-data .btn_back::before {
  content: none;
}

/*# sourceMappingURL=inspection-data.css.map */