@charset "utf-8";

/*common*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  word-break: break-all;
}
html {
  height: 100%;
  overflow-y: scroll;
}
body {
  color: #333;
  font-family: "Noto Sans CJK JP" , "Source Han Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1;
}
ul {
  list-style: none;
}
a {
  color: #197ec4;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
img {
  border: 0;
  max-width: 100%;
}
address {
  font-style: normal;
}
p {
  line-height: 1.5;
}
table {
  border-collapse: collapse;
  width: 100%;
}


/*all*/
#lp {
  margin: 0 auto;
  max-width: 750px;
  min-width: 320px;
  width: 100%;
}
.lpcontBox {
  padding: 20px 16px;
}
.lpcontBox .lpcontTtl {
  padding: 20px;
  text-align: center;
}
.lpcontBox .lpcontTtl h2 {
  color: #2d5572;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/*headerTop*/
.headerTop {
  background: linear-gradient(90deg, #F6A534 0%, #FFBD64 100%);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 0 4px;
  justify-content: center;
  font-weight: bold;
  height: 48px;
  text-align: center;
}
.headerTop p {
  font-size: 18px;
  line-height: 1;
}
.headerTop p.headerTopSub {
  font-size: 12px;
  line-height: 1.2;
}
.headerTop p.headerTopSub span {
  font-size: 14px;
}
.headerTop p.headerTopMain {
  font-size: 24px;
}


/*headerMv*/
.headerMv {
  background: url(../img/img_header_bg.jpg) no-repeat center center;
  background-size: 224%;
  padding: 20px 30px;
  text-align: center;
}
@media screen and (min-width:600px) { 
  .headerMv {
    background-size: 150%;
  }
}
.headerMv .headerList {
  margin: 20px auto;
}
.headerMv .headerList ul {
  display: flex;
  gap: 0 16px;
  justify-content: center;
  text-align: center;
}
.headerMv .headerList li {
  background: #FFF;
  border-radius: 50%;
  color: #F39C24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  height: 100px;
  outline: 3px solid rgba(241, 181, 99, 1);
  outline-offset: -5px;
  width: 100px;
}
.headerMv .headerLogo {
  text-align: left;
}
.headerMv .headerBtn {
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
}
.headerMv .headerBtn img {
  height: auto;
  transition: transform .6s ease;
}
.headerMv .headerBtn:hover img {
  transform: scale(1.1);
}


/*problem*/
.lpcontProblem {
  background: url(../img/img_problem_bg.jpg) no-repeat center center;
  background-size: cover;
  padding-bottom: 100px;
  position: relative;
}
.lpcontProblem .lpcontTtl h2::before {
  bottom: 0;
  color: #000;
  content: "problem";
  display: block;
  font-size: 40px;
  left: 0;
  margin: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.lpcontProblem .problemList li {
  background: #FFF;
  border: 1px solid #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  margin: 0 auto;
  min-height: 100px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (min-width:600px) { 
  .lpcontProblem .problemList li {
    width: 80%;
  }
}
.lpcontProblem .problemList li:not(:last-child) {
  margin-bottom: 40px;
}
.lpcontProblem .problemList li.problem01 {
  padding-right: 110px;
}
.lpcontProblem .problemList li.problem02 {
  padding-left: 150px;
}
.lpcontProblem .problemList li.problem03 {
  padding-right: 100px;
}
@media screen and (min-width:600px) { 
  .lpcontProblem .problemList li br {
    display: none;
  }
}
.lpcontProblem .problemList li::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
}
.lpcontProblem .problemList li.problem01::before {
  background: url(../img/img_problem_list01.png) no-repeat 0 0;
  background-size: auto 120px;
  bottom: -6px;
  height: 120px;
  right: -10px;
  width: 120px;
}
.lpcontProblem .problemList li.problem02::before {
  background: url(../img/img_problem_list02.png) no-repeat 0 0;
  background-size: auto 120px;
  bottom: -4px;
  height: 120px;
  left: -8px;
  width: 142px;
}
.lpcontProblem .problemList li.problem03::before {
  background: url(../img/img_problem_list03.png) no-repeat 0 0;
  background-size: auto 120px;
  bottom: -2px;
  height: 120px;
  right: -12px;
  width: 74px;
}
.lpcontProblem .problemList li span {
  font-size: 18px;
  font-weight: bold;
}
.lpcontProblem .problemArrow {
  position: relative;
}
.lpcontProblem .problemArrow::after {
  background: url(../img/img_problem_arrow.png) no-repeat 0 0;
  background-size: 251px auto;
  bottom: -100px;
  content: "";
  display: block;
  height: 45px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 251px;
  z-index: 1;
}
.lpcontProblem::before {
  content: '';
  bottom: 0px;
  border-style: solid;
  border-color: transparent transparent transparent #E5F4FF;
  border-width: 80px 0px 0px 50vw;
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}
.lpcontProblem::after {
  border-style: solid;
  border-color: transparent transparent #E5F4FF transparent;
  border-width: 0px 0px 80px 50vw;
  bottom: 0px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 0px;
  width: 0;
}
@media screen and (min-width:750px) { 
  .lpcontProblem::before {
    border-width: 80px 0px 0px 375px;
  }
  .lpcontProblem::after {
    border-width: 0px 0px 80px 375px;
  }
}

/*diagnosis*/
.lpcontDiagnosis {
  background: #E5F4FF;
  padding: 20px 20px 40px 20px;
}
.lpcontDiagnosis .diagnosisWrap {
  background: #FFF;
  box-shadow: 0px 15px 15px 10px rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding: 20px 16px 40px 16px;
}
.lpcontDiagnosis .subTtl {
  color: #003356;
  display: inline-block;
  font-size: 14px;
  padding-bottom: 6px;
  position: relative;
}
.lpcontDiagnosis .subTtl::before {
  bottom: 6px;
  content: "/";
  font-size: 16px;
  font-weight: normal;
  left: -12px;
  position: absolute;
  transform: scale(-1, 1);
}
.lpcontDiagnosis .subTtl::after {
  bottom: 6px;
  content: "/";
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  right: -12px;
}
.lpcontDiagnosis .diagnosisWrap>.lpcontTtl h2::before {
  color: #000;
  content: "diagnosis";
  display: block;
  font-size: 40px;
  left: 0;
  margin: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: -24px;
  z-index: -1;
}
.lpcontDiagnosis .diagnosisForm {
  margin-top: 10px;
}
.lpcontDiagnosis .diagnosisQ {
  margin-bottom: 16px;
}
.lpcontDiagnosis .diagnosis_select + .diagnosisQ {
  margin-top: 30px;
}
.lpcontDiagnosis .diagnosisBox + .diagnosisBox {
  margin-top: 40px;
}
.lpcontDiagnosis .diagnosisTtl {
  color: #F3981C;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.lpcontDiagnosis .diagnosisQ {
  background: #FDF3E6;
  color: #003356;
  font-size: 20px;
  padding: 12px 8px;
}
.lpcontDiagnosis .diagnosisBtn {
  margin-top: 40px;
  text-align: center;
}
.lpcontDiagnosis .prefBox,
.lpcontDiagnosis .cityBox {
  border: 1px solid #D9D9D9;
  display: flex;
}
.lpcontDiagnosis .prefBox:not(:last-child),
.lpcontDiagnosis .cityBox:not(:last-child) {
  margin-bottom: 12px;
}
.lpcontDiagnosis .selectTtl {
  border-right: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}
.lpcontDiagnosis .selectTtl p {
  color: #003356;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.lpcontDiagnosis .selectCont {
  flex: 1;
}
.lpcontDiagnosis .selectCont select {
  background: #FFF;
  border: none;
  color: #333;
  font-family: "Noto Sans CJK JP" , "Source Han Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.lpcontDiagnosis .selectCont {
  position: relative;
}
.lpcontDiagnosis .selectCont::before {
  background: #D9D9D9;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  bottom: 0;
  content: "";
  height: 24px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 0;
  vertical-align: middle;
  width: 24px;
}
.lpcontDiagnosis .selectCont::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  height: 6px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 17px;
  top: 16px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  vertical-align: middle;
  width: 6px;
}
.lpcontDiagnosis .select02,
.lpcontDiagnosis .select03 {
  display: flex;
  padding: 0 10px;
}
.lpcontDiagnosis .inputBox {
  flex: 1;
  text-align: center;
}
.lpcontDiagnosis .inputBox input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.lpcontDiagnosis .inputBox label {
  background-color: #D9D9D9;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  padding: 1rem;
  transition: .5s;
  width: 100%;
}
.lpcontDiagnosis .inputBox:first-child label {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.lpcontDiagnosis .inputBox:last-child label {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.lpcontDiagnosis .inputBox input[type=radio]:checked+label {
  background-color: #F3981C;
}

/*comparison*/
.lpcontComparison {
  background: #FDF3E6;
  padding-right: 0;
  padding-bottom: 40px;
}
@media screen and (min-width:600px) { 
  .lpcontComparison {
    padding-right: 20px;
  }
}
.lpcontComparison .lpcontTtl h2::before {
  bottom: 0;
  color: #000;
  content: "comparison";
  display: block;
  font-size: 40px;
  left: 0;
  margin: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.lpcontComparison .comparisonTable {
  border: 1px solid #EFEFEF;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.lpcontComparison .comparisonTable table {
  background: #FFF;
  line-height: 1.2;
  table-layout: fixed;
  text-align: left;
}
.lpcontComparison .comparisonTable th,
.lpcontComparison .comparisonTable td {
  border: 1px solid #EFEFEF;
  font-size: 14px;
  padding: 16px 12px;
}
.lpcontComparison .comparisonTable th {
  background: #003356;
  border-left: none;
  color: #FFF;
  font-weight: bold;
  left: 0;
  position: sticky;
  text-align: center;
  top: 0;
  width: 90px;
}
.lpcontComparison .comparisonTable th::before {
  border-left: 1px solid #EFEFEF;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lpcontComparison .comparisonTable td {
  vertical-align: middle;
  width: 100px;
}


/*calusel*/
.lpcontCalusel img {
  margin: 0 auto;
  width: 100%;
}


/*column*/
.lpcontColumn .lpcontTtl h2::before {
  color: #000;
  content: "column";
  display: block;
  font-size: 40px;
  left: 0;
  margin: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: -24px;
  z-index: -1;
}
.lpcontColumn .columnWrap {
  background: #F4F7FF;
  margin-top: 20px;
  padding: 20px 16px;
}
.lpcontColumn .columnCatch {
  text-align: center;
}
.lpcontColumn .columnTxt {
  font-size: 14px;
  line-height: 1.4;
}
.lpcontColumn .columnTxt dl {
  margin-top: 32px;
}
.lpcontColumn .columnTxt dt {
  font-size: 20px;
  font-weight: bold;
}
.lpcontColumn .columnTxt dd {
  margin-top: 8px;
}
.lpcontColumn .columnList {
  font-size: 14px;
  line-height: 1.4;
}
.lpcontColumn .columnList .columnlistTtl {
  color: #F3981C;
  font-size: 20px;
  font-weight: bold;
  margin: 32px 0 8px 0;
}
.lpcontColumn .columnList dl {
  margin-top: 8px;
}
.lpcontColumn .columnList dt {
  font-size: 16px;
  font-weight: bold;
}
.lpcontColumn .columnList dd {
  margin-top: 4px;
}
.lpcontColumn .columnList dd li {
  padding-left: 1.5em;
  position: relative;
  text-indent: 0;
}
.lpcontColumn .columnList dd li:not(:last-child) {
  margin-bottom: 8px;
}
.lpcontColumn .columnList dd li::after {
  border-left: 2px solid #F3981C;
  border-bottom: 2px solid #F3981C;
  content: '';
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  top: .4em;
  transform: rotate(-45deg);
  width: 10px;
}


/*result*/
.lpcontResult .lpcontTtl h2 {
  color: #000;
  display: inline-block;
}
.lpcontResult .lpcontTtl h2::before {
  bottom: 0;
  content: "/";
  font-size: 25px;
  font-weight: normal;
  left: -20px;
  position: absolute;
  transform: scale(-1, 1);
}
.lpcontResult .lpcontTtl h2::after {
  bottom: 0;
  content: "/";
  font-size: 25px;
  font-weight: normal;
  position: absolute;
  right: -20px;
}
.lpcontResult .resultBox:not(:last-child) {
  margin-bottom: 30px;
}
.lpcontResult .resultTtl {
  background: #FDF3E6;
  padding: 16px 8px;
  text-align: center;
}
.lpcontResult .resultTtl h3 {
  background: #FDF3E6;
  color: #003356;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.lpcontResult .resultList {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.lpcontResult .resultName {
  flex: 1;
  font-size: 16px;
  line-height: 1.3;
  margin-right: 10px;
}
.lpcontResult .resultBtn {
  margin-left: auto;
  text-align: center;
  width: 140px;
}
.lpcontResult .resultBtn a {
  background: #F3981C;
  border-radius: 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.lpcontResult .resultBtn a span {
  padding-right: 20px;
  position: relative;
}
.lpcontResult .resultBtn a span::after {
  border-style: solid;
  border-color: transparent transparent transparent #FFF;
  border-width: 8px 0px 8px 10px;
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.lpcontResult .resultAllbtn {
  margin-top: 40px;
}
.lpcontResult .resultAllbtn a {
  background: #F3981C;
  border-radius: 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  padding: 12px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.lpcontResult .resultAllbtn a::before {
  background-color: #fff;
  border-radius: 50%;
  bottom: 0;
  content: '';
  height: 40px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  width: 40px;
}
.lpcontResult .resultAllbtn a::after {
  border-top: 10px solid transparent;
  border-right: 0 solid transparent;
  border-left: 16px solid #F3981C;
  border-bottom: 10px solid transparent;
  bottom: 0;
  box-sizing: border-box;
  content: '';
  height: 0;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  width: 0;
}
.lpcontResult .resultBackbtn {
  margin-top: 50px;
}
.lpcontResult .resultBackbtn a {
  background: #000;
  border-radius: 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto;
  padding: 12px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 60%;
}
.lpcontResult .resultBackbtn a span {
  padding-left: 30px;
  position: relative;
}
.lpcontResult .resultBackbtn a span::after {
  background: url(../img/img_result_back.png) no-repeat 0 0;
  background-size: 23px auto;
  bottom: 0;
  content: "";
  display: block;
  height: 23px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 23px;
}
.lpcontResult a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}


/*footer*/
#footer {
  padding: 20px;
  text-align: center;
}
#footer address a {
  color: #425b67;
  display: inline-block;
  font-size: 85%;
  line-height: 1;
  margin-top: 8px;
  text-decoration: underline;
}